Searched refs:FUNCTION_DELEGATE (Results 1 – 5 of 5) 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-arm64/ |
D | static_function_dispatch.S | 31 #define FUNCTION_DELEGATE(name, impl) \ macro 36 FUNCTION_DELEGATE(memchr, __memchr_aarch64_mte) 37 FUNCTION_DELEGATE(memcmp, __memcmp_aarch64) 38 FUNCTION_DELEGATE(memcpy, __memcpy_aarch64) 39 FUNCTION_DELEGATE(memmove, __memmove_aarch64) 40 FUNCTION_DELEGATE(memrchr, __memrchr_aarch64) 41 FUNCTION_DELEGATE(memset, __memset_aarch64) 42 FUNCTION_DELEGATE(stpcpy, __stpcpy_aarch64) 43 FUNCTION_DELEGATE(strchr, __strchr_aarch64_mte) 44 FUNCTION_DELEGATE(strchrnul, __strchrnul_aarch64_mte) [all …]
|
/bionic/libc/arch-riscv64/ |
D | static_function_dispatch.S | 31 #define FUNCTION_DELEGATE(name, impl) \ macro 37 FUNCTION_DELEGATE(memchr, memchr_gc) 38 FUNCTION_DELEGATE(memcmp, memcmp_gc) 39 FUNCTION_DELEGATE(memcpy, memcpy_gc) 40 FUNCTION_DELEGATE(memmove, memmove_gc) 41 FUNCTION_DELEGATE(memset, memset_gc) 42 FUNCTION_DELEGATE(stpcpy, stpcpy_gc) 43 FUNCTION_DELEGATE(strcat, strcat_gc) 44 FUNCTION_DELEGATE(strchr, strchr_gc) 45 FUNCTION_DELEGATE(strcmp, strcmp_gc) [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-x86_64/ |
D | static_function_dispatch.S | 31 #define FUNCTION_DELEGATE(name, impl) \ macro 36 FUNCTION_DELEGATE(memset, memset_generic) 37 FUNCTION_DELEGATE(__memset_chk, __memset_chk_generic)
|