HomeSort by: relevance | last modified time | path
    Searched defs:us1 (Results 1 - 3 of 3) sorted by relevancy

  /src/common/lib/libc/string/
strcasecmp.c 62 const unsigned char *us1 = (const unsigned char *)s1, local in function:__weak_alias
68 while (tolower(*us1) == tolower(*us2++))
69 if (*us1++ == '\0')
71 return (tolower(*us1) - tolower(*--us2));
strncasecmp.c 67 const unsigned char *us1 = (const unsigned char *)s1, local in function:__weak_alias
71 if (tolower(*us1) != tolower(*us2++))
72 return (tolower(*us1) - tolower(*--us2));
73 if (*us1++ == '\0')
  /src/usr.bin/systat/
vmstat.c 425 } us, us1; local in function:show_vmstat_top
428 us1.uvmexp = uvm1;
440 PUTRATE(us, us1, uvmexp->swtch, GENSTATROW + 1, GENSTATCOL - 1, 7);
441 PUTRATE(us, us1, uvmexp->traps, GENSTATROW + 1, GENSTATCOL + 7, 6);
442 PUTRATE(us, us1, uvmexp->syscalls, GENSTATROW + 1, GENSTATCOL + 14, 6);
443 PUTRATE(us, us1, uvmexp->intrs, GENSTATROW + 1, GENSTATCOL + 21, 5);
444 PUTRATE(us, us1, uvmexp->softs, GENSTATROW + 1, GENSTATCOL + 27, 6);
445 PUTRATE(us, us1, uvmexp->faults, GENSTATROW + 1, GENSTATCOL + 34, 6);
466 PUTRATE(us, us1, uvmexp->pageins, PAGEROW + 2, PAGECOL + 5, 5);
467 PUTRATE(us, us1, uvmexp->pdpageouts, PAGEROW + 2, PAGECOL + 10, 5)
    [all...]

Completed in 14 milliseconds