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

1 2

  /bionic/libc/arch-arm/bionic/
memset.S 33 * Optimized memset() for ARM.
35 * memset() returns its first argument.
45 // Fall through to memset...
48 ENTRY(memset) function
128 * Optimized memset() for ARM.
130 * memset() returns its first argument.
200 END(memset)
  /bionic/libc/arch-arm/cortex-a15/bionic/
memset.S 33 * Optimized memset() for ARM.
35 * memset() returns its first argument.
43 // Fall through to memset...
46 ENTRY(memset) function
106 END(memset)
  /bionic/libc/arch-arm/cortex-a9/bionic/
memset.S 44 /* memset() returns its first argument. */
45 ENTRY(memset) function
46 # The neon memset only wins for less than 132.
152 END(memset)
  /bionic/libc/arch-arm/generic/bionic/
memset.S 32 * Optimized memset() for ARM.
34 * memset() returns its first argument.
42 ENTRY(memset) function
109 END(memset)
  /bionic/libc/arch-arm/krait/bionic/
memset.S 45 /* memset() returns its first argument. */
46 ENTRY(memset) function
81 END(memset)
  /bionic/libc/arch-x86/string/
memset.S 1 /* $OpenBSD: memset.S,v 1.3 2005/08/07 11:30:38 espie Exp $ */
9 ENTRY(memset) function
56 END(memset)
  /bionic/libc/bionic/
memset.c 31 void* memset(void* dst, int c, size_t n) function
  /external/clang/test/Frontend/
macros.c 9 #define memset(x,y,z) ({ stuff(x,y,z); x; }) macro
12 memset(a,b,c); // No warning!
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/bits/
string3.h 24 "memset used with constant zero length parameter; this could be due to transposed parameters");
32 # undef memset macro
78 __NTH (memset (void *__dest, int __ch, size_t __len)) function
string2.h 100 # define memset(s, c, n) \ macro
107 : memset (s, c, n))))
182 # define memset(s, c, n) \ macro
185 : memset (s, c, n)))
189 /* GCC < 3.0 optimizes memset(s, 0, n) but not bzero(s, n).
192 if it decides to call the library function, it calls memset
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/bits/
string3.h 24 "memset used with constant zero length parameter; this could be due to transposed parameters");
32 # undef memset macro
78 __NTH (memset (void *__dest, int __ch, size_t __len)) function
string2.h 100 # define memset(s, c, n) \ macro
107 : memset (s, c, n))))
182 # define memset(s, c, n) \ macro
185 : memset (s, c, n)))
189 /* GCC < 3.0 optimizes memset(s, 0, n) but not bzero(s, n).
192 if it decides to call the library function, it calls memset
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/bits/
string3.h 24 "memset used with constant zero length parameter; this could be due to transposed parameters");
32 # undef memset macro
78 __NTH (memset (void *__dest, int __ch, size_t __len)) function
  /bionic/libc/include/
string.h 43 extern void* memset(void *, int, size_t);
138 void *memset (void *s, int c, size_t n) { function
  /external/grub/netboot/
linux-asm-string.h 3 * All except memcpy, memmove, memset and memcmp removed.
172 * memset(x,0,y) is a reasonably common thing to do, so we want to fill
249 #define memset(s, c, count) \ macro
  /external/valgrind/main/drd/tests/
unit_vc.c 35 void* VG_(memset)(void *s, Int c, SizeT sz) function
36 { return memset(s, c, sz); }
unit_bitmap.c 47 void* VG_(memset)(void *s, Int c, SizeT sz) function
48 { return memset(s, c, sz); }
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/lib/gcc/i686-linux/4.4.3/include/ssp/
string.h 45 #undef memset macro
90 #define memset(dest, ch, len) \ macro
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/lib/gcc/i686-linux/4.6.x-google/include/ssp/
string.h 45 #undef memset macro
90 #define memset(dest, ch, len) \ 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 45 #undef memset macro
90 #define memset(dest, ch, len) \ macro
  /external/e2fsprogs/e2fsck/
mtrace.h 84 #ifndef memset
85 #define memset(s, zero, n) bzero ((s), (n)) macro
  /external/kernel-headers/original/asm-x86/
string_32.h 176 * memset(x,0,y) is a reasonably common thing to do, so we want to fill
260 #define memset(s, c, count) \ macro
  /external/valgrind/main/coregrind/m_demangle/
vg_libciface.h 52 #define memset(_ss,_cc,_sz) VG_(memset)((_ss),(_cc),(_sz)) macro
  /external/libvpx/libvpx/vpx_mem/
vpx_mem.h 121 # define memset vpx_memset macro
166 # define vpx_memset memset
  /external/wpa_supplicant_8/src/utils/
os.h 436 #define os_memset(s, c, n) memset(s, c, n)
516 #define memset OS_DO_NOT_USE_memset macro

Completed in 280 milliseconds

1 2