HomeSort by relevance Sort by last modified time
    Searched defs:bcopy (Results 1 - 18 of 18) sorted by null

  /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)))
  /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
  /toolchain/binutils/binutils-2.27/libiberty/
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
  /device/linaro/bootloader/edk2/StdLib/Include/
string.h 21 bcopy(a,b,c) ( memcpy((void *)b, (const void *)a, (size_t)c))
468 // bcopy is is a void function with the src/dest arguments reversed, being used in socket lib
469 #define bcopy(a,b,c) ( memcpy((void *)b, (const void *)a, (size_t)c)) macro
  /external/syslinux/gpxe/src/include/
strings.h 56 bcopy ( const void *src, void *dest, size_t n ) { function
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/i386-linux-gnu/bits/
string3.h 42 # undef bcopy macro
90 __NTH (bcopy (__const void *__src, void *__dest, size_t __len)) function
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/x86_64-linux-gnu/bits/
string3.h 42 # undef bcopy macro
90 __NTH (bcopy (__const void *__src, void *__dest, size_t __len)) function
  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-plugin/
pr12365c.c 60 bcopy (const void *s, void *d, size_t n) function
  /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...]
rijndael-alg-fst.c 32 #define bcopy(a, b, c) memcpy((b), (a), (c)) macro
  /external/syslinux/gpxe/src/core/
stringextra.c 234 * bcopy - Copy one area of memory to another
240 * memcpy() is the standard, bcopy() is a legacy BSD function.
245 char * bcopy(const char * src, char * dest, int count) function
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/lib/gcc/x86_64-linux/4.8/include/ssp/
string.h 52 #undef bcopy macro
100 #define bcopy(src, dest, len) ((void) \ macro
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/include/ssp/
string.h 52 #undef bcopy macro
100 #define bcopy(src, dest, len) ((void) \ macro
  /bionic/libc/bionic/
ndk_cruft.cpp 247 #undef bcopy macro
248 void bcopy(const void* src, void* dst, size_t n) { function
  /external/clang/test/Analysis/
bstring.c 435 // bcopy()
438 #define bcopy BUILTIN(bcopy) macro
440 void bcopy(/*const*/ void *s1, void *s2, size_t n);
447 bcopy(src, dst, 4); // no-warning
458 bcopy(src, dst, 5); // expected-warning{{out-of-bound}}
465 bcopy(src, dst, 4); // expected-warning{{overflow}}
  /external/ipsec-tools/src/racoon/missing/crypto/sha2/
sha2.c 55 #define bcopy(a, b, c) memcpy((b), (a), (c)) macro
338 bcopy(sha256_initial_hash_value, context->state, SHA256_DIGEST_LENGTH);
536 bcopy(data, &context->buffer[usedspace], freespace);
543 bcopy(data, &context->buffer[usedspace], len);
559 bcopy(data, context->buffer, len);
620 bcopy(context->state, d, SHA256_DIGEST_LENGTH);
666 bcopy(sha512_initial_hash_value, context->state, SHA512_DIGEST_LENGTH);
858 bcopy(data, &context->buffer[usedspace], freespace);
865 bcopy(data, &context->buffer[usedspace], len);
881 bcopy(data, context->buffer, len)
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/
system.h 957 #undef bcopy macro
961 #pragma GCC poison bcopy bzero bcmp rindex
    [all...]
  /toolchain/binutils/binutils-2.27/gas/
as.h 136 #if !defined (memcpy) && !defined (bcopy)
137 #define bcopy(src,dest,size) memcpy (dest, src, size) macro

Completed in 685 milliseconds