Home
last modified time | relevance | path

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

/device/google/contexthub/firmware/lib/libc/
Dstrcasecmp.c80 const u_char *us1 = (const u_char *)s1; in strcasecmp() local
83 while (cm[*us1] == cm[*us2++]) in strcasecmp()
84 if (*us1++ == '\0') in strcasecmp()
86 return (cm[*us1] - cm[*--us2]); in strcasecmp()
94 const u_char *us1 = (const u_char *)s1; in strncasecmp() local
98 if (cm[*us1] != cm[*us2++]) in strncasecmp()
99 return (cm[*us1] - cm[*--us2]); in strncasecmp()
100 if (*us1++ == '\0') in strncasecmp()
/device/linaro/bootloader/arm-trusted-firmware/lib/stdlib/
Dstrcmp.c57 const unsigned char *us1 = (const unsigned char *)s1; in strcasecmp() local
60 while (tolower(*us1) == tolower(*us2)) { in strcasecmp()
61 if (*us1++ == '\0') in strcasecmp()
65 return tolower(*us1) - tolower(*us2); in strcasecmp()