Home
last modified time | relevance | path

Searched refs:s2 (Results 1 – 9 of 9) sorted by relevance

/rk3399_ARM-atf/lib/libc/
H A Dstrcmp.c46 strcmp(const char *s1, const char *s2) in strcmp() argument
48 while (*s1 == *s2++) in strcmp()
51 return (*(const unsigned char *)s1 - *(const unsigned char *)(s2 - 1)); in strcmp()
H A Dstrncmp.c40 strncmp(const char *s1, const char *s2, size_t n) in strncmp() argument
46 if (*s1 != *s2++) in strncmp()
48 *(const unsigned char *)(s2 - 1)); in strncmp()
H A Dmemcmp.c10 int memcmp(const void *s1, const void *s2, size_t len) in memcmp() argument
13 const unsigned char *d = s2; in memcmp()
/rk3399_ARM-atf/include/lib/libc/
H A Dstring_private.h15 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 Dzutil.c152 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 Dzutil.h218 int ZLIB_INTERNAL zmemcmp(const Bytef* s1, const Bytef* s2, uInt len);
/rk3399_ARM-atf/drivers/qti/accesscontrol/vmidmt/
H A Dvmidmt_hal.c930 uint32_t *s0, uint32_t *s1, uint32_t *s2) in vmidmt_hal_get_error_sec() argument
941 *s2 = VMIDMT_IN(p->base_addr, SGFSYNDR2); in vmidmt_hal_get_error_sec()
947 uint32_t *s2) in vmidmt_hal_get_error_nsec() argument
961 *s2 = VMIDMT_IN(p->base_addr, NSGFSYNDR2); 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()
1009 err->u_master_id = VMIDMT_INFC(s2, GFSYNDR2, AMID); in vmidmt_hal_get_error()
1011 err->u_avmid = VMIDMT_INFC(s2, GFSYNDR2, AVMID); in vmidmt_hal_get_error()
1013 err->u_atid = VMIDMT_INFC(s2, GFSYNDR2, ATID); in vmidmt_hal_get_error()
[all …]
/rk3399_ARM-atf/plat/qti/qtiseclib/inc/
H A Dqtiseclib_cb_interface.h19 int qtiseclib_cb_strcmp(const char *s1, const char *s2);
/rk3399_ARM-atf/plat/qti/qtiseclib/src/
H A Dqtiseclib_cb_interface.c32 int qtiseclib_cb_strcmp(const char *s1, const char *s2) in qtiseclib_cb_strcmp() argument
34 return strcmp(s1, s2); in qtiseclib_cb_strcmp()