Searched defs:us2 (Results 1 - 12 of 12) sorted by relevance

/illumos-gate/usr/src/boot/lib/libstand/
H A Dstrcasecmp.c47 *us2 = (const u_char *)s2; local
49 while (tolower(*us1) == tolower(*us2++))
52 return (tolower(*us1) - tolower(*--us2));
63 *us2 = (const u_char *)s2; local
66 if (tolower(*us1) != tolower(*us2++))
67 return (tolower(*us1) - tolower(*--us2));
/illumos-gate/usr/src/lib/libc/port/gen/
H A Dascii_strcasecmp.c51 const unsigned char *us2 = (const unsigned char *)s2; local
53 while (cm[*us1] == cm[*us2++])
56 return (cm[*us1] - cm[*(us2 - 1)]);
H A Dascii_strncasecmp.c51 const unsigned char *us2 = (const unsigned char *)s2; local
53 while (n != 0 && cm[*us1] == cm[*us2++]) {
58 return (n == 0 ? 0 : cm[*us1] - cm[*(us2 - 1)]);
/illumos-gate/usr/src/cmd/sendmail/libsm/
H A Dstrcasecmp.c77 const unsigned char *us2 = (const unsigned char *)s2;
79 while (charmap[*us1] == charmap[*us2])
84 ++us2;
86 return charmap[*us1] - charmap[*us2];
98 register const unsigned char *us2 = (const unsigned char *)s2;
102 if (cm[*us1] != cm[*us2++])
103 return (cm[*us1] - cm[*--us2]);
76 const unsigned char *us2 = (const unsigned char *)s2; local
97 register const unsigned char *us2 = (const unsigned char *)s2; local
/illumos-gate/usr/src/lib/libc/port/locale/
H A Dstrcasecmp.c49 const uchar_t *us2; local
61 us2 = (const uchar_t *)s2;
63 while (cm[*us1] == cm[*us2++])
66 return (cm[*us1] - cm[*(us2 - 1)]);
H A Dstrcasestr.c51 const uchar_t *us2 = (const uchar_t *)s2; local
55 if (us2 == NULL || *us2 == '\0')
58 c = cm[*us2];
62 while (cm[c = *++us2] == cm[*us1++] && c != '\0')
67 us2 = (const uchar_t *)s2;
68 c = cm[*us2];
H A Dstrncasecmp.c49 const uchar_t *us2; local
61 us2 = (const uchar_t *)s2;
63 while (n != 0 && cm[*us1] == cm[*us2++]) {
68 return (n == 0 ? 0 : cm[*us1] - cm[*(us2 - 1)]);
/illumos-gate/usr/src/lib/libresolv2/common/bsd/
H A Dstrcasecmp.c97 *us2 = (const u_char *)s2; local
99 while (cm[*us1] == cm[*us2++])
102 return (cm[*us1] - cm[*--us2]);
110 *us2 = (const u_char *)s2; local
113 if (cm[*us1] != cm[*us2++])
114 return (cm[*us1] - cm[*--us2]);
/illumos-gate/usr/src/uts/sparc/fpu/
H A Dfpu_simulator.c174 unpacked us1, us2, ud; /* Unpacked operands and result. */ local
205 _fp_unpack(pfpsd, &us2, nrs2, fma_inst->sz);
206 _fp_mul(pfpsd, &us1, &us2, &ust);
217 _fp_unpack(pfpsd, &us2, nrs2, fma_inst->sz);
218 _fp_mul(pfpsd, &us1, &us2, &ust);
229 _fp_unpack(pfpsd, &us2, nrs2, fma_inst->sz);
230 _fp_mul(pfpsd, &us1, &us2, &ust);
244 _fp_unpack(pfpsd, &us2, nrs2, fma_inst->sz);
245 _fp_mul(pfpsd, &us1, &us2, &ust);
349 _fp_unpack(pfpsd, &us2, nrs
[all...]
/illumos-gate/usr/src/uts/sun4/os/
H A Dvisinstr.c87 uint_t us1, us2, usr; local
199 _fp_unpack_word(pfpsd, &us2, nrs2);
200 usr = ~(us1 | us2);
211 _fp_unpack_word(pfpsd, &us2, nrs2);
212 usr = (us1 & ~us2);
221 _fp_unpack_word(pfpsd, &us2, nrs2);
222 usr = ~us2;
233 _fp_unpack_word(pfpsd, &us2, nrs2);
234 usr = (~us1 & us2);
255 _fp_unpack_word(pfpsd, &us2, nrs
[all...]
/illumos-gate/usr/src/common/util/
H A Dstring.c445 const unsigned char *us2 = (const unsigned char *)s2; local
447 while (cm[*us1] == cm[*us2++])
450 return (cm[*us1] - cm[*(us2 - 1)]);
458 const unsigned char *us2 = (const unsigned char *)s2; local
460 while (n != 0 && cm[*us1] == cm[*us2++]) {
465 return (n == 0 ? 0 : cm[*us1] - cm[*(us2 - 1)]);
/illumos-gate/usr/src/cmd/sendmail/src/
H A Dqueue.c3514 const unsigned char *us2 = (const unsigned char *) b; local
3516 while (ShuffledAlphabet[*us1] == ShuffledAlphabet[*us2++])
3521 return (ShuffledAlphabet[*us1] - ShuffledAlphabet[*--us2]);

Completed in 111 milliseconds