/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-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!
|
/bionic/libc/arch-arm/cortex-a15/bionic/ |
memset.S | 34 * Optimized memset() for ARM. 36 * memset() returns its first argument. 71 // Fall through to memset... 75 ENTRY(memset) function 89 // r0 and r1 contain the memset value 196 END(memset) 200 .string "memset buffer overflow"
|
/bionic/libc/arch-arm/cortex-a9/bionic/ |
memset.S | 70 // Fall through to memset... 74 /* memset() returns its first argument. */ 75 ENTRY(memset) function 78 # The neon memset only wins for less than 132. 120 END(memset) 204 .string "memset buffer overflow"
|
/bionic/libc/arch-arm/generic/bionic/ |
memset.S | 33 * Optimized memset() for ARM. 35 * memset() returns its first argument. 59 // Fall through to memset... 62 ENTRY(memset) function 129 END(memset) 133 .string "memset buffer overflow"
|
/bionic/libc/arch-arm/krait/bionic/ |
memset.S | 71 // Fall through to memset... 75 /* memset() returns its first argument. */ 76 ENTRY(memset) function 115 END(memset) 119 .string "memset buffer overflow"
|
/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
|
/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); 143 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/libvpx/libvpx/vpx_mem/ |
vpx_mem.h | 115 # define memset vpx_memset macro 160 # define vpx_memset memset
|
/external/valgrind/main/coregrind/m_demangle/ |
vg_libciface.h | 52 #define memset(_ss,_cc,_sz) VG_(memset)((_ss),(_cc),(_sz)) macro
|
/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
|
/external/chromium_org/chrome/installer/mini_installer/ |
mini_installer.cc | 825 // VC Express editions don't come with the memset CRT obj file and linking to 827 // simply implement memset. 835 #pragma function(memset) 836 void* memset(void* dest, int c, size_t count) { function 837 // Simplistic 32-bit memset C implementation which assumes properly aligned
|