/device/google/contexthub/firmware/lib/libc/ |
memcpy.c | 5 #include "bcopy.c"
|
memmove.c | 5 #include "bcopy.c"
|
/toolchain/binutils/binutils-2.25/libiberty/ |
memmove.c | 1 /* Wrapper to implement ANSI C's memmove using BSD's bcopy. */ 19 void bcopy (const void*, void*, size_t); 24 bcopy (s2, s1, n);
|
bcopy.c | 0 /* bcopy -- copy memory regions of arbitary length 3 @deftypefn Supplemental void bcopy (char *@var{in}, char *@var{out}, int @var{length}) 6 @var{out}. The use of @code{bcopy} is deprecated in new programs. 15 bcopy (const void *src, void *dest, size_t len) function
|
memcpy.c | 19 void bcopy (const void*, void*, size_t); 24 bcopy(in, out, length);
|
/external/syslinux/core/ |
bcopy32.inc | 17 ;; 32-bit bcopy routine for real mode 21 ; 32-bit bcopy routine for real mode 35 ; bcopy: 39 ; ESI - source pointer (-1 means do bzero rather than bcopy) 47 bcopy: jecxz .ret 63 ; this is handled inside the bcopy routine.
|
common.inc | 8 %include "bcopy32.inc" ; 32-bit bcopy
|
/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.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
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-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/autotest/client/site_tests/hardware_MemoryThroughput/ |
control | 21 job.run_test('hardware_MemoryThroughput', test='bcopy', warmup=100,
|
control.cache_copy_1thread | 20 job.run_test('hardware_MemoryThroughput', test='bcopy', warmup=100,
|
control.copy_1thread_full_range | 20 job.run_test('hardware_MemoryThroughput', test='bcopy', warmup=100,
|
control.copy_2thread_full_range | 20 job.run_test('hardware_MemoryThroughput', test='bcopy', warmup=100,
|
hardware_MemoryThroughput.py | 28 test: string containing either rd, rdwr, cp, bzero, or bcopy 71 def run_once(self, test='bcopy', warmup=100, num_iterations=20,
|
/external/swiftshader/third_party/PowerVR_SDK/Tools/ |
PVRTMemoryFileSystem.h | 26 @param[in] bCopy Name and data should be copied? 28 CPVRTMemoryFileSystem(const char* pszFilename, const void* pBuffer, size_t Size, bool bCopy = false); 35 @param[in] bCopy Name and data should be copied? 39 static void RegisterMemoryFile(const char* pszFilename, const void* pBuffer, size_t Size, bool bCopy = false);
|
PVRTResourceFile.cpp | 250 CPVRTMemoryFileSystem::CPVRTMemoryFileSystem(const char* pszFilename, const void* pBuffer, size_t Size, bool bCopy) 252 RegisterMemoryFile(pszFilename, pBuffer, Size, bCopy); 260 @Input bCopy Name and data should be copied? 264 void CPVRTMemoryFileSystem::RegisterMemoryFile(const char* pszFilename, const void* pBuffer, size_t Size, bool bCopy) 277 if (bCopy) 288 s_pFileInfo[s_i32NumFiles].bAllocated = bCopy;
|
/bionic/libc/include/ |
strings.h | 50 #define bcopy(b1, b2, len) (void)(__builtin___memmove_chk((b2), (b1), (len), __bos0(b2))) macro 53 #define bcopy(b1, b2, len) (void)(__builtin_memmove((b2), (b1), (len)))
|
/development/ndk/platforms/android-21/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)
|
/external/swiftshader/third_party/LLVM/lib/Support/ |
regutils.h | 50 /* for old systems with bcopy() but no memmove() */ 52 #define memmove(d, s, c) bcopy(s, d, c)
|
/prebuilts/ndk/r10/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/r10/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/r10/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/r10/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)))
|