/titanic_50/usr/src/cmd/sendmail/libsm/ |
H A D | strcasecmp.c | 76 const unsigned char *us2 = (const unsigned char *)s2; local 78 while (charmap[*us1] == charmap[*us2]) 83 ++us2; 85 return charmap[*us1] - charmap[*us2]; 97 register const unsigned char *us2 = (const unsigned char *)s2; local 101 if (cm[*us1] != cm[*us2++]) 102 return (cm[*us1] - cm[*--us2]);
|
/titanic_50/usr/src/lib/libc/port/locale/ |
H A D | strcasestr.c | 51 const uchar_t *us2 = (const uchar_t *)s2; in strcasestr_l() local 55 if (us2 == NULL || *us2 == '\0') in strcasestr_l() 58 c = cm[*us2]; in strcasestr_l() 62 while (cm[c = *++us2] == cm[*us1++] && c != '\0') in strcasestr_l() 67 us2 = (const uchar_t *)s2; in strcasestr_l() 68 c = cm[*us2]; in strcasestr_l()
|
H A D | strcasecmp.c | 49 const uchar_t *us2; in strcasecmp_l() local 61 us2 = (const uchar_t *)s2; in strcasecmp_l() 63 while (cm[*us1] == cm[*us2++]) in strcasecmp_l() 66 return (cm[*us1] - cm[*(us2 - 1)]); in strcasecmp_l()
|
H A D | strncasecmp.c | 49 const uchar_t *us2; in strncasecmp_l() local 61 us2 = (const uchar_t *)s2; in strncasecmp_l() 63 while (n != 0 && cm[*us1] == cm[*us2++]) { in strncasecmp_l() 68 return (n == 0 ? 0 : cm[*us1] - cm[*(us2 - 1)]); in strncasecmp_l()
|
/titanic_50/usr/src/lib/libresolv2/common/bsd/ |
H A D | strcasecmp.c | 97 *us2 = (const u_char *)s2; in strcasecmp() local 99 while (cm[*us1] == cm[*us2++]) in strcasecmp() 102 return (cm[*us1] - cm[*--us2]); in strcasecmp() 110 *us2 = (const u_char *)s2; in strncasecmp() local 113 if (cm[*us1] != cm[*us2++]) in strncasecmp() 114 return (cm[*us1] - cm[*--us2]); in strncasecmp()
|
/titanic_50/usr/src/uts/sparc/fpu/ |
H A D | fpu_simulator.c | 174 unpacked us1, us2, ud; /* Unpacked operands and result. */ in _fp_fpu_simulator() local 205 _fp_unpack(pfpsd, &us2, nrs2, fma_inst->sz); in _fp_fpu_simulator() 206 _fp_mul(pfpsd, &us1, &us2, &ust); in _fp_fpu_simulator() 217 _fp_unpack(pfpsd, &us2, nrs2, fma_inst->sz); in _fp_fpu_simulator() 218 _fp_mul(pfpsd, &us1, &us2, &ust); in _fp_fpu_simulator() 229 _fp_unpack(pfpsd, &us2, nrs2, fma_inst->sz); in _fp_fpu_simulator() 230 _fp_mul(pfpsd, &us1, &us2, &ust); in _fp_fpu_simulator() 244 _fp_unpack(pfpsd, &us2, nrs2, fma_inst->sz); in _fp_fpu_simulator() 245 _fp_mul(pfpsd, &us1, &us2, &ust); in _fp_fpu_simulator() 349 _fp_unpack(pfpsd, &us2, nrs2, inst.prec); in _fp_fpu_simulator() [all …]
|
/titanic_50/usr/src/lib/libc/port/gen/ |
H A D | ascii_strcasecmp.c | 51 const unsigned char *us2 = (const unsigned char *)s2; in ascii_strcasecmp() local 53 while (cm[*us1] == cm[*us2++]) in ascii_strcasecmp() 56 return (cm[*us1] - cm[*(us2 - 1)]); in ascii_strcasecmp()
|
H A D | ascii_strncasecmp.c | 51 const unsigned char *us2 = (const unsigned char *)s2; in ascii_strncasecmp() local 53 while (n != 0 && cm[*us1] == cm[*us2++]) { in ascii_strncasecmp() 58 return (n == 0 ? 0 : cm[*us1] - cm[*(us2 - 1)]); in ascii_strncasecmp()
|
/titanic_50/usr/src/common/util/ |
H A D | string.c | 436 const unsigned char *us2 = (const unsigned char *)s2; in strcasecmp() local 438 while (cm[*us1] == cm[*us2++]) in strcasecmp() 441 return (cm[*us1] - cm[*(us2 - 1)]); in strcasecmp() 449 const unsigned char *us2 = (const unsigned char *)s2; in strncasecmp() local 451 while (n != 0 && cm[*us1] == cm[*us2++]) { in strncasecmp() 456 return (n == 0 ? 0 : cm[*us1] - cm[*(us2 - 1)]); in strncasecmp()
|
/titanic_50/usr/src/uts/sun4/os/ |
H A D | visinstr.c | 87 uint_t us1, us2, usr; in vis_fpu_simulator() local 199 _fp_unpack_word(pfpsd, &us2, nrs2); in vis_fpu_simulator() 200 usr = ~(us1 | us2); in vis_fpu_simulator() 211 _fp_unpack_word(pfpsd, &us2, nrs2); in vis_fpu_simulator() 212 usr = (us1 & ~us2); in vis_fpu_simulator() 221 _fp_unpack_word(pfpsd, &us2, nrs2); in vis_fpu_simulator() 222 usr = ~us2; in vis_fpu_simulator() 233 _fp_unpack_word(pfpsd, &us2, nrs2); in vis_fpu_simulator() 234 usr = (~us1 & us2); in vis_fpu_simulator() 255 _fp_unpack_word(pfpsd, &us2, nrs2); in vis_fpu_simulator() [all …]
|
/titanic_50/usr/src/cmd/sendmail/src/ |
H A D | queue.c | 3514 const unsigned char *us2 = (const unsigned char *) b; local 3516 while (ShuffledAlphabet[*us1] == ShuffledAlphabet[*us2++]) 3521 return (ShuffledAlphabet[*us1] - ShuffledAlphabet[*--us2]);
|