MEMCOPY is only used within LibJPEG.
 
Symbols
loading...
Files
loading...

MEMCOPY macro

Syntax

#define MEMCOPY(dest,src,size) memcpy((void *)(dest), (const void *)(src), (size_t)(size))

Arguments

dest

src

size

References

LocationText
jinclude.h:70
#define MEMCOPY(dest,src,size) memcpy((void *)(dest), (const void *)(src), (size_t)(size))
jchuff.c:1371
MEMCOPY(htbl->bits, bits, SIZEOF(htbl->bits));
jcparam.c:179
MEMCOPY((*htblptr)->bits, bits, SIZEOF((*htblptr)->bits));
jcparam.c:191
MEMCOPY((*htblptr)->huffval, val, nsymbols * SIZEOF(UINT8));
jcprepct.c:298
MEMCOPY(fake_buffer + rgroup_height, true_buffer,
jctrans.c:98
MEMCOPY((*qtblptr)->quantval,
jdatadst.c:140
MEMCOPY(nextbuffer, dest->buffer, dest->bufsize);
jdinput.c:507
MEMCOPY(qtbl, cinfo->quant_tbl_ptrs[qtblno], SIZEOF(JQUANT_TBL));
jdmarker.c:482
MEMCOPY((*htblptr)->bits, bits, SIZEOF((*htblptr)->bits));
jdmarker.c:483
MEMCOPY((*htblptr)->huffval, huffval, SIZEOF((*htblptr)->huffval));
jdmaster.c:252
MEMCOPY(table + (4 * (MAXJSAMPLE+1) - CENTERJSAMPLE),
jutils.c:152
#define FMEMCOPY(dest,src,size) MEMCOPY(dest,src,size)