HomeSort by: relevance | last modified time | path
    Searched defs:sep (Results 1 - 25 of 113) sorted by relevancy

1 2 3 4 5

  /src/sys/arch/sparc/sparc/
cache_print.h 54 const char *sep = ""; local in function:cache_printf_backend
58 printf("%s%dK instruction (%d b/l)", sep,
60 sep = ", ";
63 printf("%s%dK data (%d b/l)", sep,
  /src/sys/nfs/
nfs_bootstatic.c 124 char *sep; local in function:nfs_bootstatic
126 sep = strchr(nd->nd_root.ndm_host, ':');
128 sep - nd->nd_root.ndm_host+1);
  /src/sys/arch/ews4800mips/stand/common/
cmd.c 73 int i, argc, sep; local in function:cmd_exec
97 sep = 0;
101 sep = 1;
102 } else if (sep) {
103 sep = 0;
  /src/usr.sbin/cpuctl/arch/
sparc64.c 51 const char *sep; local in function:identifycpu
91 sep = "";
93 printf("%s%ldK instruction (%ld b/l)", sep,
96 sep = ", ";
99 printf("%s%ldK data (%ld b/l)", sep,
102 sep = ", ";
106 printf("%s%ldK external (%ld b/l)", sep,
  /src/lib/libc/gen/
humanize_number.c 50 const char *prefixes, *sep; local in function:humanize_number
115 sep = "";
117 sep = " ";
173 sign * bytes, sep, SCALE2PREFIX(0), suffix);
192 sep, SCALE2PREFIX(i), suffix);
196 sep, SCALE2PREFIX(i), suffix);
fstab.c 71 nextfld(char **str, const char *sep)
76 _DIAGASSERT(sep != NULL);
78 while ((ret = stresep(str, sep, '\\')) != NULL && *ret == '\0')
91 static const char sep[] = ":\n"; local in function:fstabscan
104 _fs_fstab.fs_spec = nextfld(&lp, sep);
107 _fs_fstab.fs_file = nextfld(&lp, sep);
108 _fs_fstab.fs_type = nextfld(&lp, sep);
117 if ((cp = nextfld(&lp, sep)) != NULL) {
119 if ((cp = nextfld(&lp, sep)) != NULL) {
  /src/sbin/ttyflags/
ttyflags.c 165 int fd, flags, rval, st, sep; local in function:change_ttyflags
170 sep = flags = rval = 0;
178 sep++;
182 if (sep++)
188 if (sep++)
194 if (sep++)
200 if (sep++)
  /src/sys/miscfs/procfs/
procfs_status.c 99 const char *sep; local in function:procfs_status_netbsd
155 sep = "";
157 ps += snprintf(ps, sizeof(psbuf) - (ps - psbuf), "%sctty", sep);
158 sep = ",";
161 ps += snprintf(ps, sizeof(psbuf) - (ps - psbuf), "%ssldr", sep);
162 sep = ",";
164 if (*sep != ',')
  /src/lib/libc/db/mpool/
mpool.c 490 const char *sep; local in function:mpool_stat
508 sep = "";
511 (void)fprintf(stderr, "%s%d", sep, bp->pgno);
517 sep = "\n";
520 sep = ", ";
  /src/sbin/nvmectl/
humanize_bignum.c 105 const char *prefixes, *sep; local in function:humanize_bignum
163 sep = "";
165 sep = " ";
248 sep, SCALE2PREFIX(i), suffix);
264 p1, sep, SCALE2PREFIX(i), suffix);
  /src/sbin/wsconsctl/
wsconsctl.c 79 const char *sep, *file; local in function:main
91 sep = "=";
115 sep = NULL;
182 pr_field(field_tab + i, sep);
230 pr_field(field_tab + i, sep);
  /src/sys/arch/arm/arm/
db_trace.c 180 const char *sep; local in function:db_stack_trace_print
209 sep = "\n\t";
213 sep, r, *rp--);
214 sep = (frame - rp) % 4 == 2 ?
  /src/usr.bin/shuffle/
shuffle.c 166 char sep = '\n'; local in function:main
171 sep = '\0';
216 putc(sep, stdout);
  /src/usr.bin/systat/
swap.c 163 struct swapent *sep; local in function:showswap
168 for (sep = swap_devices, i = 0; i < nswap; i++, sep++) {
169 p = strrchr(sep->se_path, '/');
170 p = p ? p+1 : sep->se_path;
175 mvwprintw(wnd, i + 1, col, "%*d", hlen, sep->se_nblks / blk_div);
178 xsize = sep->se_nblks;
179 used = sep->se_inuse;
  /src/usr.bin/who/
utmpentry.c 166 struct utmpentry *sep = ep; local in function:endutentries
168 free(sep);
  /src/sbin/swapctl/
swaplist.c 59 struct swapent *sep, *fsep; local in function:list_swap
73 fsep = sep = (struct swapent *)malloc(nswap * sizeof(*sep));
74 if (sep == NULL)
76 rnswap = swapctl(SWAP_STATS, (void *)sep, nswap);
114 for (i = rnswap; i-- > 0; sep++)
115 if ((size_t)pathmax < (l = strlen(sep->se_path)))
117 sep = fsep;
123 for (; rnswap-- > 0; sep++) {
124 if (pflag && sep->se_priority != pri
    [all...]
  /src/sys/arch/i386/stand/pxeboot/
main.c 255 char *sep; local in function:command_consdev
258 sep = strchr(arg, ',');
259 if (sep != NULL)
260 *sep++ = '\0';
266 if (sep != NULL) {
270 speed = atoi(sep);
  /src/bin/ps/
keyword.c 232 const char *sep; local in function:showkey
235 sep = "";
240 sep = "\n";
242 (void)printf("%s%s", sep, p);
243 sep = " ";
  /src/lib/libc/db/btree/
bt_debug.c 86 const char *sep; local in function:__bt_dump
98 (void)fprintf(tracefp, "%s%s", sep, name); \
99 sep = ", "; \
102 sep = " flags (";
130 const char *sep; local in function:__bt_dmpage
142 (void)fprintf(tracefp, "%s%s", sep, name); \
143 sep = ", "; \
146 sep = " (";
207 const char *sep; local in function:__bt_dpage
215 (void)fprintf(tracefp, "%s%s", sep, name);
    [all...]
  /src/lib/libpam/modules/pam_login_access/
login_access.c 43 static char sep[] = ", \t"; /* list-element separator */ variable in typeref:typename:char[]
147 for (tok = strtok(list, sep); tok != 0; tok = strtok((char *) 0, sep)) {
156 while ((tok = strtok((char *) 0, sep)) && strcasecmp(tok, "EXCEPT"))
  /src/lib/librefuse/
refuse_opt.c 185 const char *sep = strpbrk(templ, "= "); local in function:match_templ
187 if (sep != NULL && (sep[1] == '\0' || sep[1] == '%')) {
189 (size_t)(sep[0] == '=' ? sep - templ + 1 : sep - templ);
193 *sep_idx = (ssize_t)(sep - templ);
  /src/lib/libusbhid/
usage.c 214 const char *sep; local in function:hid_parse_usage_in_page
221 sep = strchr(name, ':');
222 if (sep == NULL)
224 len = sep - name;
233 sep++;
236 if (sscanf(sep, fmtcheck(
240 } else if (strcmp(pages[k].page_contents[j].name, sep) == 0)
  /src/libexec/getNAME/
getNAME.c 490 const char *sep; local in function:split
501 for (sep = "", dp = line; dp && *dp; dp = cp, sep = "\n") {
512 (void)printf("%s%s\t", sep, dp);
  /src/sbin/restore/
utilities.c 414 const char *sep = ""; local in function:writemtree
424 sep=",";
427 fprintf(Mtreefile, "%suchg", sep);
428 sep=",";
431 fprintf(Mtreefile, "%suappnd", sep);
432 sep=",";
435 fprintf(Mtreefile, "%sopaque", sep);
436 sep=",";
439 fprintf(Mtreefile, "%sarch", sep);
440 sep=","
    [all...]
  /src/sys/arch/hpc/stand/hpcboot/
file_http.cpp 133 TCHAR sep[] = TEXT(":/"); local in function:HttpFile::setRoot
135 TCHAR *token = wcstok(server, sep);
136 for (int i = 0; i < 3 && token; i++, token = wcstok(0, sep)) {
332 char sep[] = " :\r\n"; local in function:HttpFile::_parse_header
333 char *token = libsa::strtok(buf, sep);
338 token = libsa::strtok(0, sep);
343 token = libsa::strtok(0, sep);

Completed in 24 milliseconds

1 2 3 4 5