Searched refs:FUNCTION_DELEGATE (Results 1 – 3 of 3) sorted by relevance
/bionic/libc/arch-x86/ |
D | static_function_dispatch.S | 31 #define FUNCTION_DELEGATE(name, impl) \ macro 36 FUNCTION_DELEGATE(memcmp, memcmp_generic) 37 FUNCTION_DELEGATE(memset, memset_generic) 38 FUNCTION_DELEGATE(__memset_chk, __memset_chk_generic) 39 FUNCTION_DELEGATE(memcpy, memmove_generic) 40 FUNCTION_DELEGATE(memmove, memmove_generic) 41 FUNCTION_DELEGATE(strcpy, strcpy_generic) 42 FUNCTION_DELEGATE(strncpy, strncpy_generic) 43 FUNCTION_DELEGATE(strlen, strlen_generic) 44 FUNCTION_DELEGATE(strcmp, strcmp_generic) [all …]
|
/bionic/libc/arch-arm/ |
D | static_function_dispatch.S | 31 #define FUNCTION_DELEGATE(name, impl) \ macro 36 FUNCTION_DELEGATE(memmove, memmove_generic) 37 FUNCTION_DELEGATE(memcpy, memmove_generic) 38 FUNCTION_DELEGATE(memset, memset_generic) 39 FUNCTION_DELEGATE(__memset_chk, __memset_chk_generic) 40 FUNCTION_DELEGATE(strcpy, strcpy_generic) 41 FUNCTION_DELEGATE(__strcpy_chk, __strcpy_chk_generic) 42 FUNCTION_DELEGATE(stpcpy, stpcpy_generic) 43 FUNCTION_DELEGATE(strcat, strcat_generic) 44 FUNCTION_DELEGATE(__strcat_chk, __strcat_chk_generic) [all …]
|
/bionic/libc/arch-arm64/ |
D | static_function_dispatch.S | 31 #define FUNCTION_DELEGATE(name, impl) \ macro 36 FUNCTION_DELEGATE(memchr, __memchr_aarch64_mte) 37 FUNCTION_DELEGATE(stpcpy, __stpcpy_aarch64_mte) 38 FUNCTION_DELEGATE(strchr, __strchr_aarch64_mte) 39 FUNCTION_DELEGATE(strchrnul, __strchrnul_aarch64_mte) 40 FUNCTION_DELEGATE(strcmp, __strcmp_aarch64_mte) 41 FUNCTION_DELEGATE(strcpy, __strcpy_aarch64_mte) 42 FUNCTION_DELEGATE(strlen, __strlen_aarch64_mte) 43 FUNCTION_DELEGATE(strrchr, __strrchr_aarch64_mte) 44 FUNCTION_DELEGATE(strncmp, __strncmp_aarch64_mte)
|