/bionic/libc/arch-x86/generic/string/ |
memcpy.S | 3 #include "bcopy.S"
|
memmove.S | 3 #include "bcopy.S"
|
bcopy.S | 1 /* $OpenBSD: bcopy.S,v 1.5 2005/08/07 11:30:38 espie Exp $ */ 37 * (ov)bcopy (src,dst,cnt) 46 ENTRY(bcopy) function 97 END(bcopy)
|
/bionic/libc/bionic/ |
memcpy.cpp | 33 // Our unoptimized memcpy just calls the best bcopy available. 36 bcopy(src, dst, n);
|
memmove.c | 30 #include "upstream-openbsd/lib/libc/string/bcopy.c"
|
/external/ipsec-tools/src/racoon/missing/crypto/rijndael/ |
rijndael-api-fst.c | 35 #define bcopy(a, b, c) memcpy(b, a, c) macro 61 bcopy(keyMaterial, key->keyMaterial, keyLen/8); 86 bcopy(IV, cipher->IV, MAX_IV_SIZE); 120 bcopy(cipher->IV, block, 16); 121 bcopy(input, iv, 16); 136 bcopy(outBuffer, block, 16); 137 bcopy(input, iv, 16); 156 bcopy(cipher->IV, iv, 16); 233 bcopy(input, block, 16 - padLen); 297 bcopy(cipher->IV, iv, 16); [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/X11/ |
Xfuncs.h | 36 void bcopy(); 42 void bcopy(); 64 # define bcopy(b1,b2,len) memmove(b2, b1, (size_t)(len)) macro
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/X11/ |
Xfuncs.h | 36 void bcopy(); 42 void bcopy(); 64 # define bcopy(b1,b2,len) memmove(b2, b1, (size_t)(len)) macro
|
/external/chromium_org/third_party/expat/files/lib/ |
amigaconfig.h | 7 /* Define to 1 if you have the `bcopy' function. */
|
/bionic/libc/include/ |
strings.h | 47 #define bcopy(b1, b2, len) \ macro 52 #define bcopy(b1, b2, len) (void)(__builtin_memmove((b2), (b1), (len)))
|
/development/ndk/platforms/android-L/include/ |
strings.h | 47 #define bcopy(b1, b2, len) \ macro 52 #define bcopy(b1, b2, len) (void)(__builtin_memmove((b2), (b1), (len)))
|
/external/llvm/lib/Support/ |
regutils.h | 53 /* for old systems with bcopy() but no memmove() */ 55 #define memmove(d, s, c) bcopy(s, d, c)
|
/ndk/sources/host-tools/ndk-stack/regex/ |
utils.h | 52 /* for old systems with bcopy() but no memmove() */ 54 #define memmove(d, s, c) bcopy(s, d, c)
|
/prebuilts/ndk/9/platforms/android-21/arch-arm/usr/include/ |
strings.h | 47 #define bcopy(b1, b2, len) \ macro 52 #define bcopy(b1, b2, len) (void)(__builtin_memmove((b2), (b1), (len)))
|
/prebuilts/ndk/9/platforms/android-21/arch-arm64/usr/include/ |
strings.h | 47 #define bcopy(b1, b2, len) \ macro 52 #define bcopy(b1, b2, len) (void)(__builtin_memmove((b2), (b1), (len)))
|
/prebuilts/ndk/9/platforms/android-21/arch-mips/usr/include/ |
strings.h | 47 #define bcopy(b1, b2, len) \ macro 52 #define bcopy(b1, b2, len) (void)(__builtin_memmove((b2), (b1), (len)))
|
/prebuilts/ndk/9/platforms/android-21/arch-mips64/usr/include/ |
strings.h | 47 #define bcopy(b1, b2, len) \ macro 52 #define bcopy(b1, b2, len) (void)(__builtin_memmove((b2), (b1), (len)))
|
/prebuilts/ndk/9/platforms/android-21/arch-x86/usr/include/ |
strings.h | 47 #define bcopy(b1, b2, len) \ macro 52 #define bcopy(b1, b2, len) (void)(__builtin_memmove((b2), (b1), (len)))
|
/prebuilts/ndk/9/platforms/android-21/arch-x86_64/usr/include/ |
strings.h | 47 #define bcopy(b1, b2, len) \ macro 52 #define bcopy(b1, b2, len) (void)(__builtin_memmove((b2), (b1), (len)))
|
/bionic/libc/arch-x86/atom/string/ |
ssse3-bcopy-atom.S | 32 #define MEMCPY bcopy
|
/bionic/libc/arch-x86/silvermont/string/ |
sse2-bcopy-slm.S | 32 #define MEMMOVE bcopy
|
/external/chromium_org/third_party/libjpeg_turbo/ |
jconfig.h | 37 /* Define if you have BSD-like bzero and bcopy */
|
jinclude.h | 51 * BSD doesn't have the mem() functions, but it does have bcopy()/bzero(). 62 #define MEMCOPY(dest,src,size) bcopy((const void *)(src), (void *)(dest), (size_t)(size))
|
/external/llvm/test/Transforms/InstCombine/ |
2003-07-21-ExternalConstant.ll | 21 declare void @bcopy(i8*, i8*, i32)
|
/bionic/libc/upstream-netbsd/lib/libc/regex/ |
utils.h | 88 /* for old systems with bcopy() but no memmove() */ 90 #define memmove(d, s, c) bcopy(s, d, c)
|