Searched refs:us1 (Results 1 - 12 of 12) sorted by relevance

/illumos-gate/usr/src/lib/libc/port/gen/
H A Dascii_strcasecmp.c50 const unsigned char *us1 = (const unsigned char *)s1; local
53 while (cm[*us1] == cm[*us2++])
54 if (*us1++ == '\0')
56 return (cm[*us1] - cm[*(us2 - 1)]);
H A Dascii_strncasecmp.c50 const unsigned char *us1 = (const unsigned char *)s1; local
53 while (n != 0 && cm[*us1] == cm[*us2++]) {
54 if (*us1++ == '\0')
58 return (n == 0 ? 0 : cm[*us1] - cm[*(us2 - 1)]);
/illumos-gate/usr/src/cmd/sendmail/libsm/
H A Dstrcasecmp.c76 const unsigned char *us1 = (const unsigned char *)s1;
79 while (charmap[*us1] == charmap[*us2])
81 if (*us1 == '\0')
83 ++us1;
86 return charmap[*us1] - charmap[*us2];
97 register const unsigned char *us1 = (const unsigned char *)s1;
102 if (cm[*us1] != cm[*us2++])
103 return (cm[*us1] - cm[*--us2]);
104 if (*us1++ == '\0')
75 const unsigned char *us1 = (const unsigned char *)s1; local
96 register const unsigned char *us1 = (const unsigned char *)s1; local
/illumos-gate/usr/src/lib/libresolv2/common/bsd/
H A Dstrcasecmp.c96 *us1 = (const u_char *)s1, local
99 while (cm[*us1] == cm[*us2++])
100 if (*us1++ == '\0')
102 return (cm[*us1] - cm[*--us2]);
109 *us1 = (const u_char *)s1, local
113 if (cm[*us1] != cm[*us2++])
114 return (cm[*us1] - cm[*--us2]);
115 if (*us1++ == '\0')
/illumos-gate/usr/src/boot/lib/libstand/
H A Dstrcasecmp.c46 *us1 = (const u_char *)s1, local
49 while (tolower(*us1) == tolower(*us2++))
50 if (*us1++ == '\0')
52 return (tolower(*us1) - tolower(*--us2));
62 *us1 = (const u_char *)s1, local
66 if (tolower(*us1) != tolower(*us2++))
67 return (tolower(*us1) - tolower(*--us2));
68 if (*us1++ == '\0')
/illumos-gate/usr/src/lib/libc/port/locale/
H A Dstrcasestr.c50 const uchar_t *us1 = (const uchar_t *)s1; local
56 return ((char *)us1);
59 while (*us1 != '\0') {
60 if (c == cm[*us1++]) {
61 tptr = us1;
62 while (cm[c = *++us2] == cm[*us1++] && c != '\0')
66 us1 = tptr;
H A Dstrcasecmp.c48 const uchar_t *us1; local
60 us1 = (const uchar_t *)s1;
63 while (cm[*us1] == cm[*us2++])
64 if (*us1++ == '\0')
66 return (cm[*us1] - cm[*(us2 - 1)]);
H A Dstrncasecmp.c48 const uchar_t *us1; local
60 us1 = (const uchar_t *)s1;
63 while (n != 0 && cm[*us1] == cm[*us2++]) {
64 if (*us1++ == '\0')
68 return (n == 0 ? 0 : cm[*us1] - cm[*(us2 - 1)]);
/illumos-gate/usr/src/uts/sparc/fpu/
H A Dfpu_simulator.c174 unpacked us1, us2, ud; /* Unpacked operands and result. */ local
204 _fp_unpack(pfpsd, &us1, nrs1, fma_inst->sz);
206 _fp_mul(pfpsd, &us1, &us2, &ust);
216 _fp_unpack(pfpsd, &us1, nrs1, fma_inst->sz);
218 _fp_mul(pfpsd, &us1, &us2, &ust);
228 _fp_unpack(pfpsd, &us1, nrs1, fma_inst->sz);
230 _fp_mul(pfpsd, &us1, &us2, &ust);
243 _fp_unpack(pfpsd, &us1, nrs1, fma_inst->sz);
245 _fp_mul(pfpsd, &us1, &us2, &ust);
348 _fp_unpack(pfpsd, &us1, nrs
[all...]
/illumos-gate/usr/src/common/util/
H A Dstring.c444 const unsigned char *us1 = (const unsigned char *)s1; local
447 while (cm[*us1] == cm[*us2++])
448 if (*us1++ == '\0')
450 return (cm[*us1] - cm[*(us2 - 1)]);
457 const unsigned char *us1 = (const unsigned char *)s1; local
460 while (n != 0 && cm[*us1] == cm[*us2++]) {
461 if (*us1++ == '\0')
465 return (n == 0 ? 0 : cm[*us1] - cm[*(us2 - 1)]);
/illumos-gate/usr/src/uts/sun4/os/
H A Dvisinstr.c87 uint_t us1, us2, usr; local
198 _fp_unpack_word(pfpsd, &us1, nrs1);
200 usr = ~(us1 | us2);
210 _fp_unpack_word(pfpsd, &us1, nrs1);
212 usr = (us1 & ~us2);
232 _fp_unpack_word(pfpsd, &us1, nrs1);
234 usr = (~us1 & us2);
243 _fp_unpack_word(pfpsd, &us1, nrs1);
244 usr = ~us1;
254 _fp_unpack_word(pfpsd, &us1, nrs
920 ushort_t us1; local
[all...]
/illumos-gate/usr/src/cmd/sendmail/src/
H A Dqueue.c3513 const unsigned char *us1 = (const unsigned char *) a; local
3516 while (ShuffledAlphabet[*us1] == ShuffledAlphabet[*us2++])
3518 if (*us1++ == '\0')
3521 return (ShuffledAlphabet[*us1] - ShuffledAlphabet[*--us2]);

Completed in 139 milliseconds