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

/external/libpng/
H A Dpngrutil.c3306 unsigned int bytes_to_copy, bytes_to_jump; local
3334 bytes_to_copy = (1<<((6-pass)>>1)) * pixel_depth;
3337 if (bytes_to_copy > row_width)
3338 bytes_to_copy = (unsigned int)/*SAFE*/row_width;
3342 bytes_to_copy = pixel_depth;
3348 * depending on the value of 'bytes_to_copy'. Special case the low
3355 switch (bytes_to_copy)
3412 * wide bytes_to_copy either - use the memcpy there.
3414 if (bytes_to_copy < 16 /*else use memcpy*/ &&
3417 bytes_to_copy
[all...]
/external/pdfium/third_party/libpng16/
H A Dpngrutil.c3304 unsigned int bytes_to_copy, bytes_to_jump; local
3332 bytes_to_copy = (1<<((6-pass)>>1)) * pixel_depth;
3335 if (bytes_to_copy > row_width)
3336 bytes_to_copy = (unsigned int)/*SAFE*/row_width;
3340 bytes_to_copy = pixel_depth;
3346 * depending on the value of 'bytes_to_copy'. Special case the low
3353 switch (bytes_to_copy)
3410 * wide bytes_to_copy either - use the memcpy there.
3412 if (bytes_to_copy < 16 /*else use memcpy*/ &&
3415 bytes_to_copy
[all...]
/external/skia/third_party/libpng/
H A Dpngrutil.c3304 unsigned int bytes_to_copy, bytes_to_jump; local
3332 bytes_to_copy = (1<<((6-pass)>>1)) * pixel_depth;
3335 if (bytes_to_copy > row_width)
3336 bytes_to_copy = (unsigned int)/*SAFE*/row_width;
3340 bytes_to_copy = pixel_depth;
3346 * depending on the value of 'bytes_to_copy'. Special case the low
3353 switch (bytes_to_copy)
3410 * wide bytes_to_copy either - use the memcpy there.
3412 if (bytes_to_copy < 16 /*else use memcpy*/ &&
3415 bytes_to_copy
[all...]
/external/webrtc/webrtc/modules/video_coding/codecs/vp8/
H A Dvp8_impl.cc1229 const uint32_t bytes_to_copy = input_image._length; local
1230 if (last_keyframe_._size < bytes_to_copy) {
1242 last_keyframe_._size = bytes_to_copy;
1246 memcpy(last_keyframe_._buffer, input_image._buffer, bytes_to_copy);
1247 last_keyframe_._length = bytes_to_copy;
/external/v8/src/
H A Dapi.cc7692 size_t bytes_to_copy = local
7694 if (bytes_to_copy) {
7705 memcpy(dest, source + byte_offset, bytes_to_copy);
7707 return bytes_to_copy;

Completed in 157 milliseconds