HomeSort by relevance Sort by last modified time
    Searched defs:bcopy (Results 1 - 10 of 10) sorted by null

  /bionic/libc/arch-x86/string/
bcopy.S 1 /* $OpenBSD: bcopy.S,v 1.5 2005/08/07 11:30:38 espie Exp $ */
37 * (ov)bcopy (src,dst,cnt)
47 ENTRY(bcopy) function
  /bionic/libc/arch-sh/bionic/
memcpy.S 33 #if !defined(MEMCOPY) && !defined(MEMMOVE) && !defined(BCOPY)
52 #elif defined(BCOPY)
53 ENTRY(bcopy) function
  /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...]
rijndael-alg-fst.c 32 #define bcopy(a, b, c) memcpy((b), (a), (c)) macro
  /external/ipsec-tools/src/racoon/missing/crypto/sha2/
sha2.c 55 #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(data, context->buffer, len)
    [all...]
  /hardware/broadcom/wlan/bcm4329/src/include/
linux_osl.h 203 #define bcopy(src, dst, len) memcpy((dst), (src), (len)) macro
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.0/lib/gcc/arm-eabi/4.4.0/plugin/include/
system.h 765 #undef bcopy macro
769 #pragma GCC poison bcopy bzero bcmp rindex
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.3/lib/gcc/arm-eabi/4.4.3/plugin/include/
system.h 766 #undef bcopy macro
770 #pragma GCC poison bcopy bzero bcmp rindex
  /external/netperf/
netlib.h 593 /* if your system has bcopy and bzero, include it here, otherwise, we */
608 #define bcopy(s,d,h) memcpy((d),(s),(h)) macro
  /external/clearsilver/util/regex/
regex.c 75 /* When used in Emacs's lib-src, we need to get bzero and bcopy somehow.
79 #if !defined (bzero) && !defined (bcopy)
85 /* This is the normal way of making sure we have a bcopy and a bzero.
94 #ifndef bcopy
95 #define bcopy(s, d, n) memcpy ((d), (s), (n)) macro
267 bcopy (source, destination, osize), \
    [all...]

Completed in 152 milliseconds