HomeSort by relevance Sort by last modified time
    Searched defs:bzero (Results 1 - 15 of 15) sorted by null

  /bionic/libc/arch-arm/bionic/
memset.S 33 .global bzero
34 .type bzero, %function
44 bzero: label
  /bionic/libc/arch-x86/string/
bzero.S 1 /* $OpenBSD: bzero.S,v 1.3 2005/08/07 11:30:38 espie Exp $ */
9 ENTRY(bzero) function
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/X11/
Xfuncs.h 41 void bzero();
47 #define bzero(b,len) memset(b, 0, len) macro
57 #define bzero(b,len) memset(b, 0, (size_t)(len)) macro
70 #undef bzero macro
71 #define bzero(b,len) memset(b,0,len) macro
  /bionic/libc/arch-sh/bionic/
memset.S 35 #ifdef BZERO
46 #ifdef BZERO
47 ENTRY(bzero) function
59 #ifdef BZERO
83 #ifdef BZERO
136 #ifdef BZERO
148 #ifndef BZERO
183 #ifdef BZERO
196 #ifdef BZERO
252 #ifdef BZERO
    [all...]
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/bits/
string3.h 43 # undef bzero macro
97 __NTH (bzero (void *__dest, size_t __len)) function
  /external/ipsec-tools/src/racoon/missing/crypto/rijndael/
rijndael-api-fst.c 36 #define bzero(a, b) memset(a, 0, b) macro
88 bzero(cipher->IV, MAX_IV_SIZE);
rijndael-alg-fst.c 33 #define bzero(a, b) memset((a), 0, (b)) macro
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/lib/gcc/i686-linux/4.4.3/include/ssp/
string.h 53 #undef bzero macro
104 #define bzero(dest, len) ((void) \ macro
  /external/ipsec-tools/src/racoon/missing/crypto/sha2/
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(context->buffer, SHA512_BLOCK_LENGTH)
    [all...]
  /hardware/broadcom/wlan/bcm4329/src/include/
linux_osl.h 205 #define bzero(b, len) memset((b), '\0', (len)) macro
274 bzero((void*)skb->cb, OSL_PKTTAG_SZ);
292 bzero(((struct sk_buff*)pkt)->cb, OSL_PKTTAG_SZ);
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.0/lib/gcc/arm-eabi/4.4.0/plugin/include/
system.h 766 #undef bzero macro
769 #pragma GCC poison bcopy bzero bcmp rindex
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.3/lib/gcc/arm-eabi/4.4.3/plugin/include/
system.h 767 #undef bzero macro
770 #pragma GCC poison bcopy bzero bcmp rindex
  /external/netperf/
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/ping/
ping.c 67 #define bzero(b,sz) memset(b, 0, sz) macro
    [all...]
  /external/clearsilver/util/regex/
regex.c 75 /* When used in Emacs's lib-src, we need to get bzero and bcopy somehow.
79 #if !defined (bzero) && !defined (bcopy)
85 /* This is the normal way of making sure we have a bcopy and a bzero.
97 #ifndef bzero
98 #define bzero(s, n) memset ((s), 0, (n)) macro
139 bzero (re_syntax_table, sizeof re_syntax_table);
    [all...]

Completed in 347 milliseconds