Home
last modified time | relevance | path

Searched refs:us2 (Results 1 – 2 of 2) sorted by relevance

/device/google/contexthub/firmware/lib/libc/
Dstrcasecmp.c81 const u_char *us2 = (const u_char *)s2; in strcasecmp() local
83 while (cm[*us1] == cm[*us2++]) in strcasecmp()
86 return (cm[*us1] - cm[*--us2]); in strcasecmp()
95 const u_char *us2 = (const u_char *)s2; in strncasecmp() local
98 if (cm[*us1] != cm[*us2++]) in strncasecmp()
99 return (cm[*us1] - cm[*--us2]); in strncasecmp()
/device/linaro/bootloader/arm-trusted-firmware/lib/stdlib/
Dstrcmp.c58 const unsigned char *us2 = (const unsigned char *)s2; in strcasecmp() local
60 while (tolower(*us1) == tolower(*us2)) { in strcasecmp()
63 us2++; in strcasecmp()
65 return tolower(*us1) - tolower(*us2); in strcasecmp()