HomeSort by relevance Sort by last modified time
    Searched full:bcopy (Results 51 - 75 of 575) sorted by null

1 23 4 5 6 7 8 91011>>

  /prebuilts/ndk/r11/platforms/android-24/arch-x86_64/usr/include/
strings.h 47 #define bcopy(b1, b2, len) \ macro
52 #define bcopy(b1, b2, len) (void)(__builtin_memmove((b2), (b1), (len)))
  /device/linaro/bootloader/edk2/StdLib/Include/net/
radix.h 145 #define Bcopy(a, b, n) bcopy(((char *)(a)), ((char *)(b)), (unsigned)(n))
151 #define Bcopy(a, b, n) bcopy(((caddr_t)(a)), ((caddr_t)(b)), (unsigned)(n))
  /external/autotest/client/site_tests/hardware_MemoryThroughput/
control.memory_qual 21 tag='memory_qual', test='bcopy', warmup=100,
  /external/autotest/server/site_tests/sequences/
control.memory_qual 24 'tag': 'memory_qual', 'test': 'bcopy', 'warmup': 100,
control.memory_qual_quick 22 'tag': 'quick', 'test': 'bcopy', 'warmup': 10, 'num_iterations': 5,
  /external/libpcap/lbl/
os-ultrix4.h 24 void bcopy(const void *, void *, u_int);
  /external/llvm/test/Transforms/InstCombine/
2003-07-21-ExternalConstant.ll 21 declare void @bcopy(i8*, i8*, i32)
  /external/swiftshader/third_party/LLVM/test/Transforms/InstCombine/
2003-07-21-ExternalConstant.ll 21 declare void @bcopy(i8*, i8*, i32)
  /external/syslinux/gpxe/src/include/
strings.h 56 bcopy ( const void *src, void *dest, size_t n ) { function
  /external/tcpdump/lbl/
os-ultrix4.h 24 void bcopy(const void *, void *, u_int);
  /external/tcpdump/
print-http.c 43 "BCOPY",
  /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)
  /device/google/contexthub/firmware/lib/libc/
bcopy.c 51 * (the portable versions of) bcopy, memcpy, and memmove.
67 bcopy(const void *src0, void *dst0, size_t length)
  /device/linaro/bootloader/edk2/StdLib/Include/Ipf/machine/
loadfile_machdep.h 63 #define BCOPY(s, d, c) vpbcopy((s), LOADADDR(d), (c))
85 #define BCOPY(s, d, c) memcpy((void *)LOADADDR(d), (void *)(s), (c))
  /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/llvm/test/Transforms/IndVarSimplify/
casted-argument.ll 21 tail call void @bcopy(i8* %ge) nounwind
48 declare void @bcopy(i8* nocapture) nounwind
  /external/pdfium/third_party/libjpeg/
jinclude.h 63 * BSD doesn't have the mem() functions, but it does have bcopy()/bzero().
74 #define MEMCOPY(dest,src,size) bcopy((const void *)(src), (void *)(dest), (size_t)(size))
  /external/swiftshader/third_party/LLVM/test/Transforms/IndVarSimplify/
casted-argument.ll 21 tail call void @bcopy(i8* %ge) nounwind
48 declare void @bcopy(i8* nocapture) nounwind
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/bits/
string3.h 42 # undef bcopy macro
91 __NTH (bcopy (__const void *__restrict __src, void *__restrict __dest, 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
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/expat/
macconfig.h 18 /* Define to 1 if you have the `bcopy' function. */
  /external/syslinux/core/
bcopyxx.inc 20 ; 32-bit bcopy routine
22 ; This is the actual 32-bit portion of the bcopy and shuffle and boot
37 ; This is the protected-mode core of the "bcopy" routine.
190 ; can clobber any memory outside the bcopy special area.
203 ; this is handled inside the bcopy routine.
  /device/google/contexthub/firmware/os/algos/common/math/
mat.c 518 float bCopy[N];
519 bCopy[0] = b->x;
520 bCopy[1] = b->y;
521 bCopy[2] = b->z;
522 bCopy[3] = b->w;
527 float tmp = bCopy[k];
528 bCopy[k] = bCopy[pivot->elem[k]];
529 bCopy[pivot->elem[k]] = tmp;
532 _x[k] = bCopy[k]
    [all...]
  /external/ppp/pppd/
eap.c 494 BCOPY(clear + 1, dp, i);
697 BCOPY(str, outp, challen);
715 BCOPY(esp->es_challenge, outp, esp->es_challen);
717 BCOPY(esp->es_server.ea_name, outp, esp->es_server.ea_namelen);
727 BCOPY(esp->es_server.ea_name, outp, esp->es_server.ea_namelen);
733 BCOPY(ts->s.data, outp, ts->s.len);
740 BCOPY(ts->g.data, outp, ts->g.len);
746 BCOPY(ts->n.data, outp, ts->n.len);
757 BCOPY(ts->B.data, outp, ts->B.len);
767 BCOPY(t_serverresponse(ts), outp, SHA_DIGESTSIZE)
    [all...]

Completed in 741 milliseconds

1 23 4 5 6 7 8 91011>>