Searched defs:spaces (Results 1 - 14 of 14) sorted by relevance

/illumos-gate/usr/src/lib/libcurses/screen/
H A Dslk_clear.c54 char * spaces = " "; local
67 (long) spaces), 1);
/illumos-gate/usr/src/cmd/expand/
H A Dunexpand.c124 int spaces = 0; /* spaces to convert to tab */ local
134 spaces++;
150 spaces = 0;
161 * tab stop. if spaces, then write out a tab.
163 if (spaces > 0) {
164 (void) putchar(((spaces > 1) ? '\t' : ' '));
165 spaces = 0;
171 while (spaces-- > 0)
173 spaces
[all...]
/illumos-gate/usr/src/cmd/lp/filter/postscript/dpost/
H A Ddpost.h115 * is the total width of the string, and spaces is the number of space characters
128 int spaces; /* number of space characters */ member in struct:__anon796
/illumos-gate/usr/src/cmd/mdb/common/modules/genunix/
H A Ddist.c202 char ats[NCHARS + 1], spaces[NCHARS + 1]; local
217 (void) memset(spaces, ' ', NCHARS - nats);
218 spaces[NCHARS - nats] = 0;
224 mdb_printf("%*s |%s%s %lld\n", width, range, ats, spaces, count);
/illumos-gate/usr/src/lib/libdtrace_jni/java/src/org/opensolaris/os/dtrace/
H A DScalarRecord.java263 s = (spaces(width - len) + s);
269 spaces(int n) method in class:ScalarRecord
301 * @param indent number of spaces to indent each line of the
313 String leftMargin = spaces(indent);
/illumos-gate/usr/src/cmd/print/printmgr/com/sun/admin/pm/server/
H A DValid.java40 static String spaces = "\t "; field in class:Valid
136 return (validString(pn, badmetas + spaces + "/#:,"));
171 return (validString(pn, badmetas + spaces + "/#:,"));
284 return (validString(d, baddestmetas + spaces));
310 return (validString(s, badmetas + spaces + "#,:"));
338 if (!validString(u[i], badmetas + spaces)) {
369 if (!validString(u, badmetas + spaces)) {
/illumos-gate/usr/src/cmd/lp/filter/postscript/postprint/
H A Dpostprint.c73 * selected by column. Used when tabs and spaces can be sufficiently well
85 * is more intelligent, especially about tabs, spaces, and backspacing, and as a
160 static void spaces(int);
641 spaces(ch);
650 spaces(ch);
765 spaces(int ch) function
769 int i; /* final distance - in spaces */
773 * Counts consecutive spaces, tabs, and backspaces and figures out where the next
775 * to output the required number of spaces. The choice is between using procedure
778 * consecutive spaces
[all...]
/illumos-gate/usr/src/lib/libtecla/common/
H A Dcplmatch.c66 * Set the default number of spaces place between columns when listing
108 /* spaces, and any special characters and spaces in */
890 * spaces etc..
1147 * If another column follows the current one, pad to its start with spaces.
1151 * The following constant string of spaces is used to pad the output.
1153 static const char spaces[] = " "; local
1154 static const int nspace = sizeof(spaces) - 1;
1156 * Pad to the next column, using as few sub-strings of the spaces[]
1162 if(write_fn(data, spaces
[all...]
H A Dexpand.c96 * Set the default number of spaces place between columns when listing
1416 * If another column follows the current one, pad to its start with spaces.
1420 * The following constant string of spaces is used to pad the output.
1422 static const char spaces[] = " "; local
1423 static const int nspace = sizeof(spaces) - 1;
1425 * Pad to the next column, using as few sub-strings of the spaces[]
1431 if(write_fn(data, spaces + nspace - n, n) != n)
/illumos-gate/usr/src/lib/libcmd/common/
H A Djoin.c36 "output. By default, a field is delimited by one or more spaces "
37 "and tabs with leading spaces and/or tabs ignored. The \b-t\b option "
140 int spaces; member in struct:File_s
309 fp->spaces = 0;
355 fp->spaces = 1;
418 /* eliminate leading spaces */
419 if (fp->spaces)
487 if (cp && fp->spaces)
491 /*eliminate leading spaces */
/illumos-gate/usr/src/cmd/sendmail/src/
H A Dheaders.c1333 /* skip over leading spaces but preserve them */
1474 /* back up over the ':' and any spaces */
1553 /* back up over the '<' and any spaces */
2013 int opos, omax, spaces; local
2037 spaces = 0;
2040 ++spaces;
2043 if (spaces > 0)
2048 ** Restrict number of spaces to half the length of buffer
2053 if (spaces > sizeof(obuf) / 2)
2054 spaces
[all...]
/illumos-gate/usr/src/lib/libsqlite/src/
H A Dprintf.c222 static char spaces[] = " "; local
223 #define etSPACESIZE (sizeof(spaces)-1)
614 (*func)(arg,spaces,etSPACESIZE);
617 if( nspace>0 ) (*func)(arg,spaces,nspace);
630 (*func)(arg,spaces,etSPACESIZE);
633 if( nspace>0 ) (*func)(arg,spaces,nspace);
/illumos-gate/usr/src/cmd/rpcinfo/
H A Drpcinfo.c88 static char *spaces();
1145 spaces((int)((TABSTOP * (1 + flen / TABSTOP))
1148 fieldbuf, spaces(cnt = ((TABSTOP * (1 + flen / TABSTOP))
1199 spaces((int)((TABSTOP * (1 + flen / TABSTOP))
1202 fieldbuf, spaces(cnt = ((TABSTOP * (1 + flen / TABSTOP))
1266 spaces((int)((TABSTOP * (1 + flen / TABSTOP))
1269 fieldbuf, spaces(cnt =
1821 spaces(howmany) function
1824 static char space_array[] = /* 64 spaces */
/illumos-gate/usr/src/lib/libdtrace/common/
H A Ddt_consume.c589 const char *spaces = " "; local
618 return (dt_printf(dtp, fp, "%s %-9lld\n", spaces + i,
630 const char *spaces = " "; local
632 assert(strlen(ats) == len && strlen(spaces) == len);
652 spaces + depth, (long long)val / normal));
659 return (dt_printf(dtp, fp, "%s%s| %-9lld\n", spaces + depth,
672 spaces = &spaces[len];
678 return (dt_printf(dtp, fp, "%s%s|%*s %-9lld\n", spaces + depth,
682 ats + len - depth, spaces
[all...]

Completed in 124 milliseconds