HomeSort by relevance Sort by last modified time
    Searched defs:memcpy (Results 51 - 75 of 75) sorted by null

1 23

  /external/valgrind/drd/tests/
unit_bitmap.c 49 void* VG_(memcpy)(void *d, const void *s, SizeT sz) function
50 { return memcpy(d, s, sz); }
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vpx_mem/
vpx_mem.h 113 # define memcpy vpx_memcpy macro
159 # define vpx_memcpy memcpy
  /external/compiler-rt/lib/asan/
asan_win_dll_thunk.cc 386 INTERCEPT_LIBRARY_FUNCTION(memcpy); variable
  /external/wpa_supplicant_8/src/utils/
os.h 503 #define os_memcpy(d, s, n) memcpy((d), (s), (n))
631 #define memcpy OS_DO_NOT_USE_memcpy macro
  /toolchain/binutils/binutils-2.25/libiberty/
md5.c 35 # define memcpy(d, s, n) bcopy ((s), (d), (n)) macro
80 put things in a local (aligned) buffer first, then memcpy into RESBUF. */
91 memcpy (resbuf, buffer, 16);
115 memcpy (&ctx->buffer[bytes], fillbuf, pad);
118 Use memcpy to avoid aliasing problems. On most systems, this
121 memcpy (&ctx->buffer[bytes + pad], &swap_bytes, sizeof (swap_bytes));
123 memcpy (&ctx->buffer[bytes + pad + 4], &swap_bytes, sizeof (swap_bytes));
215 memcpy (&ctx->buffer[left_over], buffer, add);
222 memcpy (ctx->buffer, &ctx->buffer[(left_over + add) & ~63],
245 memcpy (ctx->buffer, buffer, 64)
    [all...]
regex.c 164 # ifndef memcpy
165 # define memcpy(d, s, n) (bcopy (s, d, n), (d)) macro
348 memcpy (destination, source, osize))
    [all...]
  /external/clang/test/Analysis/
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.
32 // memcpy()
41 #define memcpy(a,b,c) __memcpy_chk(a,b,c,(size_t)-1) macro
45 #define memcpy BUILTIN(memcpy) macro
46 void *memcpy(void *restrict s1, const void *restrict s2, size_t n);
55 memcpy(dst, src, 4); // no-warning
57 clang_analyzer_eval(memcpy(dst, src, 4) == dst); // expected-warning{{TRUE}}
68 memcpy(dst, src, 5); // expected-warning{{Memory copy function accesses out-of-bound array element}
    [all...]
  /hardware/intel/bootstub/
bootstub.c 65 static void *memcpy(void *dest, const void *src, size_t count) function
144 memcpy(&bp->hdr, sh, sizeof (struct setup_header));
166 memcpy(cmdline, (const void *)aosp->cmdline, cmdline_len);
167 memcpy(cmdline + cmdline_len, (const void *)aosp->extra_cmdline, extra_cmdline_len);
180 memcpy(cmdline, (const void *)CMDLINE_OFFSET, cmdline_len);
194 memcpy((u8*)bp->hdr.ramdisk_image, initramfs, bp->hdr.ramdisk_size);
331 memcpy((u8 *)vxe_fw_load_adrs, vxe_fw_image, vxe_fw_size);
341 memcpy((u8 *)imr, (u8 *)toc, tocsize);
426 memcpy((u8 *)xen_jump_adrs, xen_image, xen_size);
461 memcpy((u8 *)sps_load_adrs, sps_image, sps_size)
    [all...]
  /ndk/sources/host-tools/make-3.81/glob/
glob.c 167 # define memcpy(d, s, n) bcopy ((s), (d), (n)) macro
409 memcpy (onealt, pattern, begin - pattern);
467 memcpy (alt_start, p, next - p);
468 memcpy (&alt_start[next - p], rest, rest_len);
564 memcpy (drive_spec, pattern, dirlen);
580 memcpy (newp, pattern, dirlen);
709 memcpy (newp, home_dir, home_len);
710 memcpy (&newp[home_len], &dirname[1], dirlen);
732 memcpy (newp, dirname + 1, end_name - dirname);
783 memcpy (newp, home_dir, home_len)
    [all...]
  /external/libpcap/msdos/
pktdrvr.c 124 #define memcpy __memcpy__ macro
378 memcpy (&str, (void*)rp, sizeof(str));
458 memcpy ((void*)(realBase+pktTxBuf), eth, len);
463 memcpy (&pktTxBuf, eth, len);
592 memcpy (&pktStat, (void*)DOS_ADDR(reg.r_ds,reg.r_si), sizeof(pktStat));
629 memcpy (&initialStat, &pktStat, sizeof(initialStat));
663 memcpy (addr, (void*)(realBase+pktTemp), sizeof(*addr));
666 memcpy ((void*)addr, &pktTemp, sizeof(*addr));
685 memcpy ((void*)(realBase+pktTemp), addr, sizeof(*addr));
688 memcpy (&pktTemp, (void*)addr, sizeof(*addr));
    [all...]
  /external/valgrind/coregrind/
m_libcbase.c 624 void* VG_(memcpy) ( void *dest, const void *src, SizeT sz ) function
m_main.c 637 VG_(memcpy)(VG_(clo_error_markers)[m], startpos,
2846 void* memcpy(void *dest, const void *src, SizeT n) { function
3436 void* memcpy(void *dest, const void *src, SizeT n) { function
3522 void *memcpy(void *dest, const void *src, size_t n) { function
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/i386-linux-gnu/bits/
string.h 55 #define memcpy(dest, src, n) \ macro
580 : (char *) memcpy ((char *) (dest), \
839 ? (char *) memcpy ((char *) (dest), \
1003 (void) memcpy (__tmp, __src, __srclen);
    [all...]
  /external/valgrind/VEX/priv/
host_s390_defs.h 399 } memcpy; member in union:__anon24603::__anon24604
  /external/valgrind/coregrind/m_debuginfo/
minilzo-inl.c 2024 # undef memcpy macro
2025 # define memcpy macro
    [all...]
  /external/libvncserver/common/
minilzo.c 3141 # undef memcpy macro
3142 # define memcpy macro
    [all...]
  /external/pcre/dist/
pcre_internal.h 251 pcre_uchar type. Useful for memcpy and such operations, whose require the
372 #define memcpy(d,s,n) _memcpy(d,s,n) macro
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/config/i386/
i386.h 173 struct stringop_algs memcpy[2], memset[2]; member in struct:processor_costs
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
winnt.h 5841 #define memcpy macro
    [all...]
  /external/robolectric/v1/lib/main/
sqlite-jdbc-3.7.2.jar 
  /external/libgdx/backends/gdx-backend-moe/libs/
intel-moe-ios.jar 
  /prebuilts/tools/common/m2/repository/com/android/external/eclipse/swt/3.5.0/
swt-3.5.0.jar 
  /prebuilts/tools/darwin-x86/swt/
swt.jar 
  /prebuilts/devtools/tools/lib/
jython-standalone-2.5.3.jar 
  /prebuilts/tools/common/m2/repository/org/python/jython-standalone/2.5.3/
jython-standalone-2.5.3.jar 

Completed in 2412 milliseconds

1 23