Home
last modified time | relevance | path

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

/external/skia/third_party/libpng/
Dpngrutil.c3304 unsigned int bytes_to_copy, bytes_to_jump; in png_combine_row() local
3332 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 …]
/external/libpng/
Dpngrutil.c3306 unsigned int bytes_to_copy, bytes_to_jump; in png_combine_row() local
3334 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 …]
/external/pdfium/third_party/libpng16/
Dpngrutil.c3304 unsigned int bytes_to_copy, bytes_to_jump; in png_combine_row() local
3332 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 …]
/external/webrtc/webrtc/modules/video_coding/codecs/vp8/
Dvp8_impl.cc1229 const uint32_t bytes_to_copy = input_image._length; in Decode() local
1230 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()
/external/v8/src/
Dapi.cc7446 size_t bytes_to_copy = in CopyContents() local
7448 if (bytes_to_copy) { in CopyContents()
7459 memcpy(dest, source + byte_offset, bytes_to_copy); in CopyContents()
7461 return bytes_to_copy; in CopyContents()