HomeSort by relevance Sort by last modified time
    Searched refs:bytes_to_copy (Results 1 - 14 of 14) sorted by null

  /device/huawei/angler/power/
metadata-parser.c 41 unsigned int bytes_to_copy; local
53 bytes_to_copy = MIN((attribute_value_delim - attribute_string),
56 bytes_to_copy);
57 attribute[bytes_to_copy] = '\0';
59 bytes_to_copy = MIN(strlen(attribute_string) - strlen(attribute) - 1,
62 bytes_to_copy);
63 value[bytes_to_copy] = '\0';
  /device/lge/bullhead/power/
metadata-parser.c 41 unsigned int bytes_to_copy; local
53 bytes_to_copy = MIN((attribute_value_delim - attribute_string),
56 bytes_to_copy);
57 attribute[bytes_to_copy] = '\0';
59 bytes_to_copy = MIN(strlen(attribute_string) - strlen(attribute) - 1,
62 bytes_to_copy);
63 value[bytes_to_copy] = '\0';
  /frameworks/base/tools/aapt2/io/
Util.cpp 86 const size_t bytes_to_copy = in_len < out_len ? in_len : out_len; local
87 memcpy(out_buffer, in_buffer, bytes_to_copy);
88 out->BackUp(out_len - bytes_to_copy);
89 in->BackUp(in_len - bytes_to_copy);
  /device/google/wahoo/power/
metadata-parser.c 41 unsigned int bytes_to_copy; local
55 bytes_to_copy = MIN(attribute_len + 1, attribute_size);
57 strlcpy(attribute, attribute_string, bytes_to_copy);
  /device/google/marlin/power/
metadata-parser.c 41 unsigned int bytes_to_copy; local
55 bytes_to_copy = MIN(attribute_len + 1, attribute_size);
57 strlcpy(attribute, attribute_string, bytes_to_copy);
  /system/bt/osi/src/
ringbuffer.cc 94 const size_t bytes_to_copy = (offset + length > ringbuffer_size(rb)) local
98 for (size_t copied = 0; copied < bytes_to_copy; ++copied) {
103 return bytes_to_copy;
  /system/nfc/src/adaptation/
ringbuffer.cc 94 const size_t bytes_to_copy = (offset + length > ringbuffer_size(rb)) local
98 for (size_t copied = 0; copied < bytes_to_copy; ++copied) {
103 return bytes_to_copy;
  /packages/apps/Gallery2/jni/filters/
geometry.c 29 size_t bytes_to_copy = sizeof(char) * width; local
33 memcpy(destination + temp - i, source + i, bytes_to_copy);
  /external/libpng/
pngrutil.c 3306 unsigned int bytes_to_copy, bytes_to_jump; local
    [all...]
  /external/pdfium/third_party/libpng16/
pngrutil.c 3304 unsigned int bytes_to_copy, bytes_to_jump; local
    [all...]
  /external/skia/third_party/libpng/
pngrutil.c 3304 unsigned int bytes_to_copy, bytes_to_jump; local
    [all...]
  /external/webrtc/webrtc/modules/video_coding/codecs/vp8/
vp8_impl.cc 1229 const uint32_t bytes_to_copy = input_image._length; local
    [all...]
  /system/bt/bta/dm/
bta_dm_act.cc 2421 uint32_t bytes_to_copy; local
    [all...]
  /external/v8/src/
api.cc 7692 size_t bytes_to_copy = local
    [all...]

Completed in 804 milliseconds