Home
last modified time | relevance | path

Searched refs:bytes_to_copy (Results 1 – 3 of 3) sorted by relevance

/external/pdfium/samples/fx_lpng/lpng_v163/
Dfx_pngrutil.c3242 unsigned int bytes_to_copy, bytes_to_jump; in png_combine_row() local
3270 bytes_to_copy = (1<<((6-pass)>>1)) * pixel_depth; in png_combine_row()
3273 if (bytes_to_copy > row_width) in png_combine_row()
3274 bytes_to_copy = row_width; in png_combine_row()
3278 bytes_to_copy = pixel_depth; in png_combine_row()
3291 switch (bytes_to_copy) in png_combine_row()
3350 if (bytes_to_copy < 16 /*else use memcpy*/ && in png_combine_row()
3353 bytes_to_copy % (sizeof (png_uint_16)) == 0 && in png_combine_row()
3361 bytes_to_copy % (sizeof (png_uint_32)) == 0 && in png_combine_row()
3367 size_t skip = (bytes_to_jump-bytes_to_copy) / in png_combine_row()
[all …]
/external/libpng/
Dpngrutil.c3279 unsigned int bytes_to_copy, bytes_to_jump; in png_combine_row() local
3307 bytes_to_copy = (1<<((6-pass)>>1)) * pixel_depth; in png_combine_row()
3310 if (bytes_to_copy > row_width) in png_combine_row()
3311 bytes_to_copy = (unsigned int)/*SAFE*/row_width; in png_combine_row()
3315 bytes_to_copy = pixel_depth; in png_combine_row()
3328 switch (bytes_to_copy) in png_combine_row()
3387 if (bytes_to_copy < 16 /*else use memcpy*/ && in png_combine_row()
3390 bytes_to_copy % (sizeof (png_uint_16)) == 0 && in png_combine_row()
3398 bytes_to_copy % (sizeof (png_uint_32)) == 0 && in png_combine_row()
3404 size_t skip = (bytes_to_jump-bytes_to_copy) / in png_combine_row()
[all …]
/external/lldb/source/Plugins/Process/MacOSX-Kernel/
DCommunicationKDP.cpp1339 const uint32_t bytes_to_copy = std::min<uint32_t>(src_len, dst_len); in SendRequestReadRegisters() local
1340 const void *src = reply_packet.GetData(&offset, bytes_to_copy); in SendRequestReadRegisters()
1343 ::memcpy (dst, src, bytes_to_copy); in SendRequestReadRegisters()