Home
last modified time | relevance | path

Searched refs:cc_memset (Results 1 – 4 of 4) sorted by relevance

/xnu-11215.1.10/EXTERNAL_HEADERS/corecrypto/
H A Dcc_priv.h63 #define CC_MEMSET(D,V,L) cc_memset((D),(V),(L))
85 void *cc_memset(void *dst, int val, size_t num);
87 …#define cc_memset(dst, val, len) __builtin___memset_chk((dst), (val), (len), __builtin_object_size… macro
89 #define cc_memset(dst, val, len) memset((dst), (val), (len)) macro
H A Dcc_fault_canary.h27 #define CC_FAULT_CANARY_CLEAR(_name_) cc_memset(_name_, 0x00, CC_FAULT_CANARY_SIZE)
/xnu-11215.1.10/osfmk/corecrypto/
H A Dccdrbg_nisthmac.c164 cc_memset(drbg_ctx->key, 0, outlen); in init()
165 cc_memset(drbg_ctx->V, 1, outlen); in init()
H A Dcchmac_init.c75 cc_memset(cchmac_data(di, hc) + key_len, 0x5c, di->block_size - key_len); in cchmac_init()