/bionic/libc/arch-x86/generic/string/ |
memcpy.S | 2 #define MEMCOPY
|
bcopy.S | 41 #if defined(MEMCOPY) 50 #if defined(MEMCOPY) || defined(MEMMOVE) 92 #if defined(MEMCOPY)
|
/external/jpeg/ |
jinclude.h | 62 #define MEMCOPY(dest,src,size) bcopy((const void *)(src), (void *)(dest), (size_t)(size)) 68 #define MEMCOPY(dest,src,size) memcpy((void *)(dest), (const void *)(src), (size_t)(size))
|
jutils.c | 96 /* On normal machines we can apply MEMCOPY() and MEMZERO() to sample arrays 106 #define FMEMCOPY(dest,src,size) MEMCOPY(dest,src,size)
|
rdswitch.c | 253 MEMCOPY(scanptr, scans, scanno * SIZEOF(jpeg_scan_info));
|
jcparam.c | 162 MEMCOPY((*htblptr)->bits, bits, SIZEOF((*htblptr)->bits)); 174 MEMCOPY((*htblptr)->huffval, val, nsymbols * SIZEOF(UINT8));
|
jcprepct.c | 295 MEMCOPY(fake_buffer + rgroup_height, true_buffer,
|
jctrans.c | 93 MEMCOPY((*qtblptr)->quantval,
|
jdinput.c | 258 MEMCOPY(qtbl, cinfo->quant_tbl_ptrs[qtblno], SIZEOF(JQUANT_TBL));
|
jdmaster.c | 294 MEMCOPY(table + (4 * (MAXJSAMPLE+1) - CENTERJSAMPLE),
|
/external/pdfium/core/src/fxcodec/libjpeg/ |
jinclude.h | 73 #define MEMCOPY(dest,src,size) bcopy((const void *)(src), (void *)(dest), (size_t)(size))
79 #define MEMCOPY(dest,src,size) FXSYS_memcpy32((void *)(dest), (const void *)(src), (size_t)(size))
|
fpdfapi_jutils.c | 91 /* On normal machines we can apply MEMCOPY() and MEMZERO() to sample arrays
101 #define FMEMCOPY(dest,src,size) MEMCOPY(dest,src,size)
|
fpdfapi_jcparam.c | 163 MEMCOPY((*htblptr)->bits, bits, SIZEOF((*htblptr)->bits));
175 MEMCOPY((*htblptr)->huffval, val, nsymbols * SIZEOF(UINT8));
|
fpdfapi_jcprepct.c | 296 MEMCOPY(fake_buffer + rgroup_height, true_buffer,
|
fpdfapi_jctrans.c | 94 MEMCOPY((*qtblptr)->quantval,
|
fpdfapi_jdinput.c | 241 MEMCOPY(qtbl, cinfo->quant_tbl_ptrs[qtblno], SIZEOF(JQUANT_TBL));
|
fpdfapi_jdmaster.c | 272 MEMCOPY(table + (4 * (MAXJSAMPLE+1) - CENTERJSAMPLE),
|
/external/qemu/distrib/jpeg-6b/ |
jinclude.h | 62 #define MEMCOPY(dest,src,size) bcopy((const void *)(src), (void *)(dest), (size_t)(size)) 68 #define MEMCOPY(dest,src,size) memcpy((void *)(dest), (const void *)(src), (size_t)(size))
|
jutils.c | 96 /* On normal machines we can apply MEMCOPY() and MEMZERO() to sample arrays 106 #define FMEMCOPY(dest,src,size) MEMCOPY(dest,src,size)
|
rdswitch.c | 253 MEMCOPY(scanptr, scans, scanno * SIZEOF(jpeg_scan_info));
|
jcparam.c | 162 MEMCOPY((*htblptr)->bits, bits, SIZEOF((*htblptr)->bits)); 174 MEMCOPY((*htblptr)->huffval, val, nsymbols * SIZEOF(UINT8));
|
jcprepct.c | 295 MEMCOPY(fake_buffer + rgroup_height, true_buffer,
|
jctrans.c | 93 MEMCOPY((*qtblptr)->quantval,
|
jdinput.c | 258 MEMCOPY(qtbl, cinfo->quant_tbl_ptrs[qtblno], SIZEOF(JQUANT_TBL));
|
/bionic/libc/upstream-openbsd/lib/libc/string/ |
bcopy.c | 50 #ifdef MEMCOPY 123 #if defined(MEMCOPY) || defined(MEMMOVE)
|