Home
last modified time | relevance | path

Searched refs:bcopy (Results 1 - 25 of 35) sorted by relevance

12

/third_party/lame/mpglib/
H A Dmpg123.h35 # define memcpy(d, s, n) bcopy ((s), (d), (n))
36 # define memmove(d, s, n) bcopy ((s), (d), (n))
H A Ddecode_i386.c46 # 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 Dmachine.h40 # 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 Dbcopy.c5 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 Dregutils.h53 /* 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 Dregutils.h53 /* 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 Dstrings.h17 void bcopy (const void *, void *, size_t);
/third_party/musl/porting/liteos_m/user/include/
H A Dstrings.h17 void bcopy (const void *, void *, size_t);
/third_party/musl/porting/liteos_m_iccarm/kernel/include/
H A Dstrings.h17 void bcopy (const void *, void *, size_t);
/third_party/musl/porting/liteos_a/kernel/include/
H A Dstrings.h17 void bcopy (const void *, void *, size_t);
/third_party/musl/porting/uniproton/kernel/include/
H A Dstrings.h17 void bcopy (const void *, void *, size_t);
/third_party/musl/include/
H A Dstrings.h18 void bcopy (const void *, void *, size_t);
/third_party/lame/frontend/
H A Dconsole.c15 # define memcpy(d, s, n) bcopy ((s), (d), (n))
16 # define memmove(d, s, n) bcopy ((s), (d), (n))
H A Dmain.c43 # define memcpy(d, s, n) bcopy ((s), (d), (n))
44 # define memmove(d, s, n) bcopy ((s), (d), (n))
H A Drtp.c62 # define memcpy(d, s, n) bcopy ((s), (d), (n))
63 # define memmove(d, s, n) bcopy ((s), (d), (n))
H A Dgpkplotting.c39 # 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 Dsanei_jinclude.h51 * 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 Dstring_bcopy_test.cpp17 * @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 Djinclude.h54 * 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 Drpc_clntudp_bufcreate.c69 bcopy(hp->h_addr, (caddr_t) & server_addr.sin_addr, hp->h_length); in main()
H A Drpc_clntudp_bufcreate_limits.c80 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 Drpc_clntudp_create_stress.c73 bcopy(hp->h_addr, (caddr_t) & server_addr.sin_addr, hp->h_length); in main()
H A Drpc_clntudp_create.c69 bcopy(hp->h_addr, (caddr_t) & server_addr.sin_addr, hp->h_length); in main()
/third_party/pcre2/pcre2/src/
H A Dpcre2_string_utils.c57 /* 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 Dffi_common.h40 # define memcpy(d, s, n) bcopy((s), (d), (n))

Completed in 7 milliseconds

12