HomeSort by relevance Sort by last modified time
    Searched refs:bcopy (Results 1 - 25 of 95) sorted by null

1 2 3 4

  /toolchain/binutils/binutils-2.27/libiberty/
memcpy.c 19 void bcopy (const void*, void*, size_t);
24 bcopy(in, out, length);
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
  /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)
  /external/swiftshader/third_party/llvm-subzero/lib/Support/
regutils.h 53 /* for old systems with bcopy() but no memmove() */
55 #define memmove(d, s, c) bcopy(s, d, c)
  /external/libpcap/lbl/
os-ultrix4.h 24 void bcopy(const void *, void *, u_int);
  /external/tcpdump/lbl/
os-ultrix4.h 24 void bcopy(const void *, void *, u_int);
  /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
  /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)
  /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)))
  /device/linaro/bootloader/arm-trusted-firmware/include/lib/stdlib/
strings.h 43 void bcopy(const void *, void *, size_t); /* LEGACY */
  /device/linaro/bootloader/edk2/StdLib/BsdSocketLib/
map_v4v6.c 101 bcopy(src, tmp, INADDRSZ);
108 bcopy(tmp, (void*)p, INADDRSZ);
  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-plugin/
pr12365b.c 9 extern void bcopy (const void *, void *, size_t)
41 bcopy (y + 1, y + 2, 6);
  /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...]
  /external/libjpeg-turbo/
jinclude.h 54 * BSD doesn't have the mem() functions, but it does have bcopy()/bzero().
65 #define MEMCOPY(dest,src,size) bcopy((const void *)(src), (void *)(dest), (size_t)(size))
  /external/ltp/testcases/network/rpc/rpc-tirpc/tests_pack/rpc_suite/rpc/rpc_createdestroy_clnttcp_create/
rpc_clnttcp_create.c 64 bcopy(hp->h_addr, (caddr_t) & server_addr.sin_addr, hp->h_length);
rpc_clnttcp_create_limits.c 75 bcopy(hp->h_addr, (caddr_t) & server_addr.sin_addr, hp->h_length);
rpc_clnttcp_create_stress.c 68 bcopy(hp->h_addr, (caddr_t) & server_addr.sin_addr, hp->h_length);
  /external/syslinux/gpxe/src/include/
strings.h 56 bcopy ( const void *src, void *dest, 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}}
  /device/linaro/bootloader/edk2/StdLib/LibC/Uefi/
writev.c 131 bcopy(iov->iov_base, pBuf, iov->iov_len);
  /external/ltp/testcases/network/rpc/rpc-tirpc/tests_pack/rpc_suite/rpc/rpc_createdestroy_clntudp_bufcreate/
rpc_clntudp_bufcreate.c 68 bcopy(hp->h_addr, (caddr_t) & server_addr.sin_addr, hp->h_length);
rpc_clntudp_bufcreate_limits.c 79 bcopy(hp->h_addr, (caddr_t) & server_addr.sin_addr, hp->h_length);
  /external/ltp/testcases/network/rpc/rpc-tirpc/tests_pack/rpc_suite/rpc/rpc_createdestroy_clntudp_create/
rpc_clntudp_create.c 68 bcopy(hp->h_addr, (caddr_t) & server_addr.sin_addr, hp->h_length);

Completed in 656 milliseconds

1 2 3 4