/src/usr.bin/make/unit-tests/ |
var-op-assign.mk | 71 VAR(spaces in parentheses)= () 72 VAR{spaces in braces}= {} 78 VARNAME_PAREN= VAR(spaces in parentheses) 79 VARNAME_BRACES= VAR{spaces in braces}
|
opt-debug-errors.mk | 8 all: fail-spaces 14 # XXX: The debug output folds the spaces, showing '3 spaces' instead of 15 # the correct '3 spaces'. 16 fail-spaces: 17 echo '3 spaces'; false 19 # XXX: The debug output folds the spaces, showing 'echo \ indented' instead 35 # of the lines, usually at column 73. All spaces before the continuation 37 # irrelevant. Having these spaces collapsed makes sense to show the command
|
opt-debug-errors-jobs.mk | 8 all: fail-spaces 15 fail-spaces: 16 echo '3 spaces'; false 31 # of the lines, usually at column 73. All spaces before the continuation
|
/src/sys/netinet/ |
accf_http.c | 269 int i, cc, spaces, inspaces; local in function:soparsehttpvers 276 inspaces = spaces = 0; 285 spaces++; 294 if (spaces != 2) {
|
/src/sys/arch/aarch64/aarch64/ |
db_interface.c | 562 const char *spaces[4] = { " ", " ", " ", " " }; variable in typeref:typename:const char * [4] 563 const char *spc = spaces[level]; 618 pr("%sL%d[%3d] has %d L%d entries\n", spaces[level - 1],
|
/src/sbin/cgdconfig/ |
params.c | 69 static void spaces(FILE *, int); 895 spaces(FILE *f, int len) function in typeref:typename:void 906 spaces(f, ts); 953 spaces(f, ts); 961 spaces(f, ts); 1047 int ts = 0; /* tabstop of 0 spaces */
|
/src/lib/libc/citrus/modules/ |
citrus_utf7.c | 147 static const char spaces[] = " \t\r\n"; variable in typeref:typename:const char[] 552 FILL(spaces, EI_SPACE);
|
/src/usr.bin/rpcinfo/ |
rpcinfo.c | 159 static const char *spaces(size_t); 1075 spaces((TABSTOP * (1 + flen / TABSTOP)) 1078 fieldbuf, spaces(cnt = ((TABSTOP * (1 + flen / TABSTOP)) 1130 spaces((TABSTOP * (1 + flen / TABSTOP)) 1133 fieldbuf, spaces(cnt = ((TABSTOP * (1 + flen / TABSTOP)) 1202 spaces((TABSTOP * (1 + flen / TABSTOP)) 1206 spaces(cnt = ((TABSTOP * (1 + flen / TABSTOP)) 1711 spaces(size_t howmany) function in typeref:typename:const char * 1713 static const char space_array[] = /* 64 spaces */
|
/src/usr.bin/crunch/crunchgen/ |
crunchgen.c | 1132 int len, spaces; local in function:status 1138 spaces = lastlen - len; 1139 if (spaces < 1) 1140 spaces = 1; 1142 fprintf(stderr, " [%s]%*.*s\r", str, spaces, spaces, " ");
|
/src/usr.sbin/sysinst/ |
label.c | 2079 size_t num_freespace, spaces, ndx; local in function:getpartoff 2089 /* upper bound on the number of free spaces, plus some slope */ 2096 spaces = parts->pscheme->get_free_spaces(parts, freespace, 2108 if (spaces > 1) { 2110 maxspace = minspace + spaces -1; 2113 } else if (spaces == 1) { 2125 for (ndx = 0; ndx < spaces; ndx++) { 2151 if (spaces)
|
mbr.c | 2576 size_t spaces = 0; local in function:mbr_get_free_spaces 2583 for ( ; from < parts->dp.disk_size && spaces < max_num_result; ) { 2599 result[spaces].start = start; 2600 result[spaces].size = size; 2601 spaces++; 2608 return spaces;
|