| /rk3399_ARM-atf/lib/libc/ |
| H A D | strcmp.c | 46 strcmp(const char *s1, const char *s2) in strcmp() argument 48 while (*s1 == *s2++) in strcmp() 49 if (*s1++ == '\0') in strcmp() 51 return (*(const unsigned char *)s1 - *(const unsigned char *)(s2 - 1)); in strcmp()
|
| H A D | strncmp.c | 40 strncmp(const char *s1, const char *s2, size_t n) in strncmp() argument 46 if (*s1 != *s2++) in strncmp() 47 return (*(const unsigned char *)s1 - in strncmp() 49 if (*s1++ == '\0') in strncmp()
|
| H A D | memcmp.c | 10 int memcmp(const void *s1, const void *s2, size_t len) in memcmp() argument 12 const unsigned char *s = s1; in memcmp()
|
| /rk3399_ARM-atf/include/lib/libc/ |
| H A D | string_private.h | 15 int memcmp(const void *s1, const void *s2, size_t len); 16 int strcmp(const char *s1, const char *s2); 17 int strncmp(const char *s1, const char *s2, size_t n);
|
| /rk3399_ARM-atf/lib/zlib/ |
| H A D | zutil.c | 152 int ZLIB_INTERNAL zmemcmp(const Bytef* s1, const Bytef* s2, uInt len) { in zmemcmp() argument 156 if (s1[j] != s2[j]) return 2*(s1[j] > s2[j])-1; in zmemcmp()
|
| H A D | zutil.h | 218 int ZLIB_INTERNAL zmemcmp(const Bytef* s1, const Bytef* s2, uInt len);
|
| /rk3399_ARM-atf/plat/intel/soc/common/lib/sha/ |
| H A D | sha.h | 46 #define s1(x) (ror64(x, 19) ^ ror64(x, 61) ^ (x >> 6)) macro 72 W[I & 15] += s1(W[(I-2) & 15]) + W[(I-7) & 15] + s0(W[(I-15) & 15]); in BLEND_OP()
|
| /rk3399_ARM-atf/plat/qti/qtiseclib/inc/ |
| H A D | qtiseclib_cb_interface.h | 19 int qtiseclib_cb_strcmp(const char *s1, const char *s2);
|
| /rk3399_ARM-atf/drivers/qti/accesscontrol/vmidmt/ |
| H A D | vmidmt_hal.c | 930 uint32_t *s0, uint32_t *s1, uint32_t *s2) in vmidmt_hal_get_error_sec() argument 940 *s1 = VMIDMT_IN(p->base_addr, SGFSYNDR1); in vmidmt_hal_get_error_sec() 946 uint32_t *sr, uint32_t *s0, uint32_t *s1, in vmidmt_hal_get_error_nsec() argument 959 *s1 = VMIDMT_IN(p->base_addr, NSGFSYNDR1); in vmidmt_hal_get_error_nsec() 967 uint32_t s0, s1, s2, sr; in vmidmt_hal_get_error() local 975 vmidmt_hal_get_error_sec(p, err, &sr, &s0, &s1, &s2); in vmidmt_hal_get_error() 977 vmidmt_hal_get_error_nsec(p, err, &sr, &s0, &s1, &s2); in vmidmt_hal_get_error() 1007 err->u_ssd_index = VMIDMT_INFC(s1, GFSYNDR1, SSD_INDEX); in vmidmt_hal_get_error() 1019 err->u_sid = VMIDMT_INFC(s1, GFSYNDR1, SID); in vmidmt_hal_get_error()
|
| /rk3399_ARM-atf/plat/qti/qtiseclib/src/ |
| H A D | qtiseclib_cb_interface.c | 32 int qtiseclib_cb_strcmp(const char *s1, const char *s2) in qtiseclib_cb_strcmp() argument 34 return strcmp(s1, s2); in qtiseclib_cb_strcmp()
|