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

1 2

  /bionic/libc/arch-mips/bionic/
bzero.S 31 * void bzero(void *s, size_t n);
33 .type bzero, @function
34 .global bzero
36 .ent bzero
38 bzero: label
44 .end bzero
  /bionic/libc/arch-arm/bionic/
memset.S 42 ENTRY(bzero) function
46 END(bzero)
  /bionic/libc/arch-arm/cortex-a15/bionic/
memset.S 40 ENTRY(bzero) function
44 END(bzero)
  /bionic/libc/arch-arm/cortex-a9/bionic/
memset.S 39 ENTRY(bzero) function
42 END(bzero)
  /bionic/libc/arch-arm/generic/bionic/
memset.S 37 ENTRY(bzero) function
40 END(bzero)
  /bionic/libc/arch-arm/krait/bionic/
memset.S 40 ENTRY(bzero) function
43 END(bzero)
  /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
44 END(bzero)
  /bionic/libc/include/
strings.h 47 void bzero(void *, size_t);
55 void bzero (void *s, size_t n) { function
  /ndk/sources/cxx-stl/llvm-libc++/test/utilities/meta/meta.trans/meta.trans.sign/
make_signed.pass.cpp 20 bzero, enumerator in enum:BigEnum
make_unsigned.pass.cpp 20 bzero, enumerator in enum:BigEnum
  /prebuilts/gcc/linux-x86/host/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
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/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
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/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
  /prebuilts/gcc/linux-x86/host/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
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/bits/
string3.h 43 # undef bzero macro
97 __NTH (bzero (void *__dest, size_t __len)) function
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/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
  /prebuilts/gcc/linux-x86/host/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
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/lib/gcc/i686-linux/4.6.x-google/include/ssp/
string.h 53 #undef bzero macro
104 #define bzero(dest, len) ((void) \ macro
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/lib/gcc/x86_64-linux/4.6.x-google/include/ssp/
string.h 53 #undef bzero macro
104 #define bzero(dest, len) ((void) \ macro
  /ndk/sources/host-tools/make-3.81/
make.h 253 # ifndef bzero
254 # define bzero(s, n) memset ((s), 0, (n)) macro
270 # ifndef bzero
271 extern void bzero PARAMS ((char *, int));
  /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...]
  /external/webkit/Source/WebCore/platform/graphics/android/layers/
LayerAndroid.h 41 // 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
  /prebuilts/gcc/darwin-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/
system.h 873 #undef bzero macro
876 #pragma GCC poison bcopy bzero bcmp rindex

Completed in 1021 milliseconds

1 2