HomeSort by relevance Sort by last modified time
    Searched refs:memcpy (Results 1 - 25 of 2779) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /bionic/libc/arch-x86/string/
memcpy_wrapper.S 35 # define MEMCPY memcpy
41 # include "memcpy.S"
  /bootable/bootloader/legacy/libc/
memcpy.c 29 void *memcpy(void *_dst, const void *_src, unsigned len) function
  /external/clang/test/Analysis/
exercise-ps.c 21 memcpy((&x[1]), (buf), 1); // expected-warning{{implicitly declaring C library function 'memcpy' with type 'void *(void *, const void *}} \
22 // expected-note{{please include the header <string.h> or explicitly provide a declaration for 'memcpy'}}
bstring.c 11 // path, such as memcpy and __memcpy_chk, or memcmp and bcmp. If VARIANT is
19 // declared carefully! See memcpy() for an example.
30 // memcpy()
39 #define memcpy(a,b,c) __memcpy_chk(a,b,c,(size_t)-1) macro
43 #define memcpy BUILTIN(memcpy) macro
44 void *memcpy(void *restrict s1, const void *restrict s2, size_t n);
53 memcpy(dst, src, 4); // no-warning
55 if (memcpy(dst, src, 4) != dst) {
67 memcpy(dst, src, 5); // expected-warning{{Memory copy function accesses out-of-bound array element}
    [all...]
  /external/netcat/data/
rservice.c 37 memcpy (p, argv[1], x); /* first arg plus another null */
45 memcpy (p, argv[2], x); /* second arg plus null */
54 memcpy (p, q, x); /* the command, plus final null */
59 memcpy (p, "\n", 1); /* and a newline, so it goes */
  /external/e2fsprogs/intl/
os2compat.c 61 memcpy (_nlos2_libdir, root, sl);
62 memcpy (_nlos2_libdir + sl, LIBDIR, strlen (LIBDIR) + 1);
75 memcpy (_nlos2_localealiaspath, root, sl);
76 memcpy (_nlos2_localealiaspath + sl, LOCALE_ALIAS_PATH, strlen (LOCALE_ALIAS_PATH) + 1);
89 memcpy (_nlos2_localedir, root, sl);
90 memcpy (_nlos2_localedir + sl, LOCALEDIR, strlen (LOCALEDIR) + 1);
  /external/openssl/crypto/des/
cbc3_enc.c 75 memcpy(niv1,output[off],sizeof(DES_cblock));
81 memcpy(niv2,output[off],sizeof(DES_cblock));
86 memcpy(niv2,input[off],sizeof(DES_cblock));
92 memcpy(niv1,output[off],sizeof(DES_cblock));
96 memcpy(*iv1,niv1,sizeof(DES_cblock));
97 memcpy(*iv2,niv2,sizeof(DES_cblock));
  /external/clang/test/SemaCXX/
warn-memset-bad-sizeof.cpp 5 extern "C" void *memcpy(void *s1, const void *s2, unsigned n);
22 memcpy(&dest, &source, sizeof(dest));
50 memcpy(&s, 0, sizeof(&s)); // \
51 // expected-warning {{argument to 'sizeof' in 'memcpy' call is the same expression as the destination}}
52 memcpy(0, &s, sizeof(&s)); // \
53 // expected-warning {{argument to 'sizeof' in 'memcpy' call is the same expression as the source}}
76 memcpy(&foo, &const_foo, sizeof(Foo));
77 memcpy((void*)&s, 0, sizeof(&s));
78 memcpy(0, (void*)&s, sizeof(&s));
80 memcpy(&cptr, buffer, sizeof(cptr))
    [all...]
  /external/chromium/chrome/browser/sessions/
session_command.cc 20 memcpy(contents(), pickle.data(), pickle.size());
26 memcpy(dest, &(contents_[0]), count);
  /external/openssl/crypto/rsa/
rsa_none.c 80 memcpy(to,from,(unsigned int)flen);
95 memcpy(to+tlen-flen,from,flen);
  /external/webrtc/src/common_audio/signal_processing_library/main/source/
resample_48khz.c 41 memcpy(tmpmem + 8, state->S_48_32, 8 * sizeof(WebRtc_Word32));
42 memcpy(state->S_48_32, tmpmem + 488, 8 * sizeof(WebRtc_Word32));
79 memcpy(tmpmem + 8, state->S_32_24, 8 * sizeof(WebRtc_Word32));
80 memcpy(state->S_32_24, tmpmem + 328, 8 * sizeof(WebRtc_Word32));
123 memcpy(tmpmem + 8, state->S_24_16, 8 * sizeof(WebRtc_Word32));
124 memcpy(state->S_24_16, tmpmem + 248, 8 * sizeof(WebRtc_Word32));
162 memcpy(tmpmem + 256, state->S_16_12, 8 * sizeof(WebRtc_Word32));
163 memcpy(state->S_16_12, tmpmem + 416, 8 * sizeof(WebRtc_Word32));
  /frameworks/compile/libbcc/runtime/test/Unit/
clear_cache_test.c 45 memcpy(execution_buffer, (void *)(uintptr_t)&func1, 128);
52 memcpy(execution_buffer, (void *)(uintptr_t)&func2, 128);
enable_execute_stack_test.c 43 memcpy(execution_buffer, (void *)(uintptr_t)&func1, 128);
50 memcpy(execution_buffer, (void *)(uintptr_t)&func2, 128);
  /hardware/qcom/media/mm-video/vidc/vdec/src/
frameparser.cpp 83 memcpy (start_code,MPEG4_start_code,4);
84 memcpy (mask_code,MPEG4_mask_code,4);
87 memcpy (start_code,H263_start_code,4);
88 memcpy (mask_code,H263_mask_code,4);
91 memcpy (start_code,H264_start_code,4);
92 memcpy (mask_code,H264_mask_code,4);
95 memcpy (start_code,VC1_AP_start_code,4);
96 memcpy (mask_code,VC1_AP_mask_code,4);
155 memcpy (pdest,start_code,4);
184 memcpy (pdest,start_code,1)
    [all...]
  /bionic/libc/kernel/common/linux/
vt_buffer.h 18 #define scr_memcpyw(d, s, c) memcpy(d, s, c)
  /bionic/libc/string/
memmove.c 35 /* We can use the optimized memcpy if the destination is below the
39 return memcpy(dst, src, n);
strdup.c 47 (void)memcpy(copy, str, siz);
strndup.c 40 memcpy(copy, s, n);
strxfrm.c 45 memcpy(s1, s2, n);
  /bionic/libc/wchar/
wmemcpy.c 43 return (wchar_t *)memcpy(d, s, n * sizeof(wchar_t));
  /development/ndk/platforms/android-3/include/linux/
vt_buffer.h 18 #define scr_memcpyw(d, s, c) memcpy(d, s, c)
  /external/chromium/testing/gtest/samples/
sample2.cc 44 memcpy(clone, a_c_string, len + 1);
  /external/dhcpcd/
duid.c 77 memcpy(p, &type, 2);
80 memcpy(p, &hw, 2);
86 memcpy(p, &ul, 4);
89 memcpy(p, iface->hwaddr, iface->hwlen);
  /external/gtest/samples/
sample2.cc 44 memcpy(clone, c_string, len + 1);
  /external/oprofile/libutil/
op_libiberty.c 34 memcpy(output, input, copy_size);

Completed in 1665 milliseconds

1 2 3 4 5 6 7 8 91011>>