Searched defs:bzero (Results 1 - 7 of 7) sorted by relevance

/external/ipsec-tools/src/racoon/missing/crypto/rijndael/
H A Drijndael-alg-fst.c33 #define bzero(a, b) memset((a), 0, (b)) macro
H A Drijndael-api-fst.c36 #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 Dsha2.c56 #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/webkit/Source/WebCore/platform/graphics/android/layers/
H A DLayerAndroid.h41 // http://www.opengroup.org/onlinepubs/000095399/functions/bzero.html
42 // For maximum portability, it is recommended to replace the function call to bzero() as follows:
43 #define bzero(b, len) (memset((b), '\0', (len)), (void) 0) macro
/external/netperf/
H A Dnetlib.h593 /* if your system has bcopy and bzero, include it here, otherwise, we */
612 #define bzero(p,h) memset((p),0,(h)) macro
/external/ping/
H A Dping.c69 #define bzero(b,sz) memset(b, 0, sz) macro
1837 bzero((char *)&whereto, sizeof(whereto));
1997 bzero(rspace, sizeof(rspace));
2009 bzero(rspace, sizeof(rspace));
2031 bzero(rspace, sizeof(rspace));
/external/valgrind/main/coregrind/
H A Dm_main.c2875 void bzero(void *s, SizeT n);
2876 void bzero(void *s, SizeT n) { function

Completed in 312 milliseconds