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

12

/external/llvm/lib/Support/
H A Dregutils.h50 /* for old systems with bcopy() but no memmove() */
52 #define memmove(d, s, c) bcopy(s, d, c)
/external/libpcap/lbl/
H A Dos-ultrix4.h26 void bcopy(const void *, void *, u_int);
H A Dos-sunos4.h58 void bcopy(const void *, void *, u_int);
/external/tcpdump/lbl/
H A Dos-ultrix4.h26 void bcopy(const void *, void *, u_int);
H A Dos-sunos4.h58 void bcopy(const void *, void *, u_int);
/external/expat/vms/
H A Dexpat_config.h25 /* Define if you have the bcopy function. */
47 #define memmove(d,s,l) bcopy((s),(d),(l))
/external/ipsec-tools/src/racoon/missing/crypto/rijndael/
H A Drijndael-api-fst.c35 #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(ciphe
[all...]
/external/jpeg/
H A Djinclude.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))
/external/qemu/distrib/jpeg-6b/
H A Djinclude.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))
/external/clang/test/Analysis/
H A Dbstring.c396 // bcopy()
399 #define bcopy BUILTIN(bcopy) macro
401 void bcopy(/*const*/ void *s1, void *s2, size_t n);
408 bcopy(src, dst, 4); // no-warning
419 bcopy(src, dst, 5); // expected-warning{{out-of-bound}}
426 bcopy(src, dst, 4); // expected-warning{{overflow}}
H A Dtaint-generic.c30 void bcopy(void *s1, void *s2, size_t n);
145 bcopy(buf1, dst, ts); // expected-warning {{Untrusted data is used to specify the buffer size}}
/external/libffi/include/
H A Dffi_common.h44 # define memcpy(d, s, n) bcopy ((s), (d), (n))
/external/qemu/slirp/
H A Dip_input.c575 bcopy((caddr_t)(cp + off), (caddr_t)&ipaddr.sin_addr,
590 bcopy((caddr_t)&(IA_SIN(ia)->sin_addr),
610 bcopy((caddr_t)(&ip->ip_dst), (caddr_t)&ipaddr.sin_addr,
622 bcopy((caddr_t)&(IA_SIN(ia)->sin_addr),
652 bcopy((caddr_t)&IA_SIN(ia)->sin_addr,
661 bcopy((caddr_t)sin, (caddr_t)&ipaddr.sin_addr,
672 bcopy((caddr_t)&ntime, (caddr_t)cp + ipt->ipt_ptr - 1,
H A Dslirp.h98 #define memmove(x, y, z) bcopy(y, x, z)
/external/qemu/slirp-android/
H A Dip_input.c575 bcopy((caddr_t)(cp + off), (caddr_t)&ipaddr.sin_addr,
590 bcopy((caddr_t)&(IA_SIN(ia)->sin_addr),
610 bcopy((caddr_t)(&ip->ip_dst), (caddr_t)&ipaddr.sin_addr,
622 bcopy((caddr_t)&(IA_SIN(ia)->sin_addr),
652 bcopy((caddr_t)&IA_SIN(ia)->sin_addr,
661 bcopy((caddr_t)sin, (caddr_t)&ipaddr.sin_addr,
672 bcopy((caddr_t)&ntime, (caddr_t)cp + ipt->ipt_ptr - 1,
H A Dslirp.h90 #define memmove(x, y, z) bcopy(y, x, z)
/external/ipsec-tools/src/racoon/missing/crypto/sha2/
H A Dsha2.c55 #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(dat
[all...]
/external/e2fsprogs/e2fsck/
H A Dmtrace.h88 #define memcpy(d, s, n) bcopy ((s), (d), (n))
/external/compiler-rt/lib/interception/mach_override/
H A Dmach_override.c584 bcopy( kIslandTemplate, island->instructions, sizeof( kIslandTemplate ) );
615 bcopy( kIslandTemplate, island->instructions, sizeof( kIslandTemplate ) );
619 bcopy (instructions, island->instructions + kInstructions, kOriginalInstructionsSize);
638 bcopy( kIslandTemplate, island->instructions, sizeof( kIslandTemplate ) );
642 bcopy (instructions, island->instructions, kOriginalInstructionsSize);
819 bcopy(code, originalInstructions, totalEaten);
894 bcopy(originalFunction, instructionsToFix, code_size);
/external/kernel-headers/original/linux/
H A Dmroute6.h57 #define IF_COPY(f, t) bcopy(f, t, sizeof(*(f)))
/external/netperf/
H A Dnetserver.c255 bcopy((char *)&temp_rate,
258 bcopy((char *)&lib_num_loc_cpus,
/external/qemu/distrib/sdl-1.2.15/include/
H A DSDL_stdinc.h317 #define SDL_memcpy(d, s, n) bcopy((s), (d), (n))
376 #define SDL_memmove(d, s, n) bcopy((s), (d), (n))
/external/qemu/distrib/sdl-1.2.15/src/cdrom/bsdi/
H A DSDL_syscdrom.c107 bcopy(cdb, suc.suc_cdb, cdblen);
132 bcopy(&suc, sus, sizeof (struct scsi_user_cdb));
/external/libppp/src/
H A Diface.c414 bcopy(iface->addr + n + 1, iface->addr + n,
469 bcopy(iface->addr + n + 1, iface->addr + n,
503 bcopy(iface->addr, iface->addr + 1, iface->addrs * sizeof *iface->addr);
533 bcopy(iface->addr + n + 1, iface->addr + n,
/external/openssh/openbsd-compat/
H A Dport-tun.c218 bcopy(buf, ptr + sizeof(u_int32_t), len);

Completed in 487 milliseconds

12