Searched refs:bytes_to_copy (Results 1 – 5 of 5) sorted by relevance
3304 unsigned int bytes_to_copy, bytes_to_jump; in png_combine_row() local3332 bytes_to_copy = (1<<((6-pass)>>1)) * pixel_depth; in png_combine_row()3335 if (bytes_to_copy > row_width) in png_combine_row()3336 bytes_to_copy = (unsigned int)/*SAFE*/row_width; in png_combine_row()3340 bytes_to_copy = pixel_depth; in png_combine_row()3353 switch (bytes_to_copy) in png_combine_row()3412 if (bytes_to_copy < 16 /*else use memcpy*/ && in png_combine_row()3415 bytes_to_copy % (sizeof (png_uint_16)) == 0 && in png_combine_row()3423 bytes_to_copy % (sizeof (png_uint_32)) == 0 && in png_combine_row()3429 size_t skip = (bytes_to_jump-bytes_to_copy) / in png_combine_row()[all …]
3306 unsigned int bytes_to_copy, bytes_to_jump; in png_combine_row() local3334 bytes_to_copy = (1<<((6-pass)>>1)) * pixel_depth; in png_combine_row()3337 if (bytes_to_copy > row_width) in png_combine_row()3338 bytes_to_copy = (unsigned int)/*SAFE*/row_width; in png_combine_row()3342 bytes_to_copy = pixel_depth; in png_combine_row()3355 switch (bytes_to_copy) in png_combine_row()3414 if (bytes_to_copy < 16 /*else use memcpy*/ && in png_combine_row()3417 bytes_to_copy % (sizeof (png_uint_16)) == 0 && in png_combine_row()3425 bytes_to_copy % (sizeof (png_uint_32)) == 0 && in png_combine_row()3431 size_t skip = (bytes_to_jump-bytes_to_copy) / in png_combine_row()[all …]
1229 const uint32_t bytes_to_copy = input_image._length; in Decode() local1230 if (last_keyframe_._size < bytes_to_copy) { in Decode()1242 last_keyframe_._size = bytes_to_copy; in Decode()1246 memcpy(last_keyframe_._buffer, input_image._buffer, bytes_to_copy); in Decode()1247 last_keyframe_._length = bytes_to_copy; in Decode()
7446 size_t bytes_to_copy = in CopyContents() local7448 if (bytes_to_copy) { in CopyContents()7459 memcpy(dest, source + byte_offset, bytes_to_copy); in CopyContents()7461 return bytes_to_copy; in CopyContents()