Searched refs:SECUREC_MEMSET_FUNC_OPT (Results 1 - 5 of 5) sorted by relevance
/third_party/bounds_checking_function/src/ |
H A D | securecutil.h | 223 #define SECUREC_MEMSET_FUNC_OPT memset_opt macro 226 #define SECUREC_MEMSET_FUNC_OPT memset macro 254 (void)SECUREC_MEMSET_FUNC_OPT(dest, value, count); \ 259 void *(* const volatile fn_)(void *s_, int c_, size_t n_) = SECUREC_MEMSET_FUNC_OPT; \ 263 #define SECUREC_MEMSET_PREVENT_DSE(dest, value, count) (void)SECUREC_MEMSET_FUNC_OPT((dest), (value), (count))
|
H A D | memmove_s.c | 95 (void)SECUREC_MEMSET_FUNC_OPT(dest, 0, destMax); in memmove_s() 101 (void)SECUREC_MEMSET_FUNC_OPT(dest, 0, destMax); in memmove_s()
|
H A D | memcpy_s.c | 454 (void)SECUREC_MEMSET_FUNC_OPT(dest, 0, destMax); in SecMemcpyError() 460 (void)SECUREC_MEMSET_FUNC_OPT(dest, 0, destMax); in SecMemcpyError() 465 (void)SECUREC_MEMSET_FUNC_OPT(dest, 0, destMax); in SecMemcpyError()
|
H A D | wmemmove_s.c | 63 (void)SECUREC_MEMSET_FUNC_OPT(dest, 0, destMax * sizeof(wchar_t)); in wmemmove_s()
|
H A D | wmemcpy_s.c | 64 (void)SECUREC_MEMSET_FUNC_OPT(dest, 0, destMax * sizeof(wchar_t)); in wmemcpy_s()
|
Completed in 3 milliseconds