/third_party/lame/mpglib/ |
H A D | mpg123.h | 35 # define memcpy(d, s, n) bcopy ((s), (d), (n)) 36 # define memmove(d, s, n) bcopy ((s), (d), (n))
|
H A D | decode_i386.c | 46 # define memcpy(d, s, n) bcopy ((s), (d), (n)) 47 # define memmove(d, s, n) bcopy ((s), (d), (n))
|
/third_party/lame/libmp3lame/ |
H A D | machine.h | 40 # define memcpy(d, s, n) bcopy ((s), (d), (n)) 41 # define memmove(d, s, n) bcopy ((s), (d), (n))
|
/third_party/musl/src/string/ |
H A D | bcopy.c | 5 void bcopy(const void *s1, void *s2, size_t n) in bcopy() function
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/lib/Support/ |
H A D | regutils.h | 53 /* for old systems with bcopy() but no memmove() */ 55 #define memmove(d, s, c) bcopy(s, d, c)
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/ |
H A D | regutils.h | 53 /* for old systems with bcopy() but no memmove() */ 55 #define memmove(d, s, c) bcopy(s, d, c)
|
/third_party/musl/porting/liteos_m/kernel/include/ |
H A D | strings.h | 17 void bcopy (const void *, void *, size_t);
|
/third_party/musl/porting/liteos_m/user/include/ |
H A D | strings.h | 17 void bcopy (const void *, void *, size_t);
|
/third_party/musl/porting/liteos_m_iccarm/kernel/include/ |
H A D | strings.h | 17 void bcopy (const void *, void *, size_t);
|
/third_party/musl/porting/liteos_a/kernel/include/ |
H A D | strings.h | 17 void bcopy (const void *, void *, size_t);
|
/third_party/musl/porting/uniproton/kernel/include/ |
H A D | strings.h | 17 void bcopy (const void *, void *, size_t);
|
/third_party/musl/include/ |
H A D | strings.h | 18 void bcopy (const void *, void *, size_t);
|
/third_party/lame/frontend/ |
H A D | console.c | 15 # define memcpy(d, s, n) bcopy ((s), (d), (n)) 16 # define memmove(d, s, n) bcopy ((s), (d), (n))
|
H A D | main.c | 43 # define memcpy(d, s, n) bcopy ((s), (d), (n)) 44 # define memmove(d, s, n) bcopy ((s), (d), (n))
|
H A D | rtp.c | 62 # define memcpy(d, s, n) bcopy ((s), (d), (n)) 63 # define memmove(d, s, n) bcopy ((s), (d), (n))
|
H A D | gpkplotting.c | 39 # define memcpy(d, s, n) bcopy ((s), (d), (n)) 40 # define memmove(d, s, n) bcopy ((s), (d), (n))
|
/third_party/backends/include/sane/ |
H A D | sanei_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))
|
/third_party/musl/libc-test/src/functionalext/supplement/string/string_gtest/ |
H A D | string_bcopy_test.cpp | 17 * @tc.desc: Verify bcopy functionality is normal 31 bcopy(srcChar, srcChar + pos, obj); in HWTEST_F()
|
/third_party/skia/third_party/externals/libjpeg-turbo/ |
H A D | jinclude.h | 54 * BSD doesn't have the mem() functions, but it does have bcopy()/bzero(). 67 bcopy((const void *)(src), (void *)(dest), (size_t)(size))
|
/third_party/ltp/testcases/network/rpc/rpc-tirpc/tests_pack/rpc_suite/rpc/rpc_createdestroy_clntudp_bufcreate/ |
H A D | rpc_clntudp_bufcreate.c | 69 bcopy(hp->h_addr, (caddr_t) & server_addr.sin_addr, hp->h_length); in main()
|
H A D | rpc_clntudp_bufcreate_limits.c | 80 bcopy(hp->h_addr, (caddr_t) & server_addr.sin_addr, hp->h_length); in main()
|
/third_party/ltp/testcases/network/rpc/rpc-tirpc/tests_pack/rpc_suite/rpc/rpc_createdestroy_clntudp_create/ |
H A D | rpc_clntudp_create_stress.c | 73 bcopy(hp->h_addr, (caddr_t) & server_addr.sin_addr, hp->h_length); in main()
|
H A D | rpc_clntudp_create.c | 69 bcopy(hp->h_addr, (caddr_t) & server_addr.sin_addr, hp->h_length); in main()
|
/third_party/pcre2/pcre2/src/ |
H A D | pcre2_string_utils.c | 57 /* This function can make use of bcopy() if it is available. Otherwise do it by 59 bcopy(). */ 66 bcopy(s, d, n); in memmove()
|
/third_party/python/Modules/_ctypes/libffi_osx/include/ |
H A D | ffi_common.h | 40 # define memcpy(d, s, n) bcopy((s), (d), (n))
|