Searched defs:bzero (Results 1 - 9 of 9) sorted by relevance
/external/clang/test/Sema/ |
H A D | builtins-gnu-mode.c | 12 int bzero; variable
|
/external/chromium_org/skia/config/ |
H A D | SkUserConfig.h | 192 // Skia uses this deprecated bzero function to fill zeros into a string. 193 #define bzero(str, len) memset(str, 0, len) macro
|
/external/ipsec-tools/src/racoon/missing/crypto/rijndael/ |
H A D | rijndael-alg-fst.c | 33 #define bzero(a, b) memset((a), 0, (b)) macro
|
H A D | rijndael-api-fst.c | 36 #define bzero(a, b) memset(a, 0, b) macro 88 bzero(cipher->IV, MAX_IV_SIZE);
|
/external/ipsec-tools/src/racoon/missing/crypto/sha2/ |
H A D | sha2.c | 56 #define bzero(a, b) memset((a), 0, (b)) macro 339 bzero(context->buffer, SHA256_BLOCK_LENGTH); 586 bzero(&context->buffer[usedspace], SHA256_SHORT_BLOCK_LENGTH - usedspace); 589 bzero(&context->buffer[usedspace], SHA256_BLOCK_LENGTH - usedspace); 595 bzero(context->buffer, SHA256_SHORT_BLOCK_LENGTH); 599 bzero(context->buffer, SHA256_SHORT_BLOCK_LENGTH); 625 bzero(context, sizeof(*context)); 646 bzero(context, sizeof(*context)); 648 bzero(digest, SHA256_DIGEST_LENGTH); 667 bzero(contex [all...] |
/external/netperf/ |
H A D | netlib.h | 593 /* if your system has bcopy and bzero, include it here, otherwise, we */ 612 #define bzero(p,h) memset((p),0,(h)) macro
|
/external/valgrind/main/coregrind/ |
H A D | m_main.c | 3180 void bzero(void *s, SizeT n); 3181 void bzero(void *s, SizeT n) { function
|
/external/chromium_org/third_party/usrsctp/usrsctplib/netinet/ |
H A D | sctp_os_userspace.h | 220 #define bzero(buf, len) memset(buf, 0, len) macro
|
/external/llvm/include/llvm/Target/ |
H A D | TargetLibraryInfo.h | 157 /// void bzero(void *s, size_t n); 158 bzero, enumerator in enum:llvm::LibFunc::Func
|
Completed in 250 milliseconds