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

  /src/external/ibm-public/postfix/dist/src/util/
strcasecmp.c 46 const unsigned char *us1 = (const unsigned char *) s1; local
49 while (tolower(*us1) == tolower(*us2++))
50 if (*us1++ == '\0')
52 return (tolower(*us1) - tolower(*--us2));
58 const unsigned char *us1 = (const unsigned char *) s1; local
62 if (tolower(*us1) != tolower(*us2++))
63 return (tolower(*us1) - tolower(*--us2));
64 if (*us1++ == '\0')
  /src/external/bsd/libbind/dist/bsd/
strcasecmp.c 98 *us1 = (const u_char *)s1, local
101 while (cm[*us1] == cm[*us2++])
102 if (*us1++ == '\0')
104 return (cm[*us1] - cm[*--us2]);
111 *us1 = (const u_char *)s1, local
115 if (cm[*us1] != cm[*us2++])
116 return (cm[*us1] - cm[*--us2]);
117 if (*us1++ == '\0')
  /src/common/lib/libc/string/
strcasecmp.c 62 const unsigned char *us1 = (const unsigned char *)s1, local
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
71 if (tolower(*us1) != tolower(*us2++))
72 return (tolower(*us1) - tolower(*--us2));
73 if (*us1++ == '\0')
  /src/external/bsd/file/dist/src/
strcasestr.c 52 const unsigned char *us1 = (const unsigned char *)s1, local
56 if (tolower(*us1) != tolower(*us2++))
57 return tolower(*us1) - tolower(*--us2);
58 if (*us1++ == '\0')
  /src/external/bsd/tcpdump/dist/
ascii_strcasecmp.c 67 *us1 = (const unsigned char *)s1, local
70 while (cm[*us1] == cm[*us2++])
71 if (*us1++ == '\0')
73 return(cm[*us1] - cm[*--us2]);
80 *us1 = (const unsigned char *)s1, local
93 if (cm[*us1] != cm[*us2++]) {
99 if (*us1++ == '\0') {
109 return(cm[*us1] - cm[*--us2]);
  /src/usr.bin/systat/
vmstat.c 425 } us, us1; local
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...]
  /src/crypto/external/bsd/heimdal/dist/lib/asn1/
check-der.c 1012 heim_universal_string us1 = { 1, NULL } , us2 = { 0, NULL }; local
1013 us1.data = &data;
1014 ret = der_heim_universal_string_cmp(&us1, &us2);
1021 heim_universal_string us1 = { 1, NULL } , us2 = { 1, NULL }; local
1022 us1.data = &data;
1024 ret = der_heim_universal_string_cmp(&us1, &us2);
  /src/external/bsd/libpcap/dist/
pcap.c 3220 *us1 = (const u_char *)s1, local
3223 while (cm[*us1] == cm[*us2++])
3224 if (*us1++ == '\0')
3226 return (cm[*us1] - cm[*--us2]);
  /src/usr.bin/telnet/
commands.c 1559 env_help(const char *us1, char *us2)

Completed in 209 milliseconds