HomeSort by relevance Sort by last modified time
    Searched refs:bytes_to_copy (Results 1 - 12 of 12) 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';
  /device/google/marlin/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';
  /system/bt/osi/src/
eager_reader.c 187 size_t bytes_to_copy = reader->current_buffer->length - reader->current_buffer->offset; local
188 if (bytes_to_copy > (max_size - bytes_consumed))
189 bytes_to_copy = max_size - bytes_consumed;
191 memcpy(&buffer[bytes_consumed], &reader->current_buffer->data[reader->current_buffer->offset], bytes_to_copy);
192 bytes_consumed += bytes_to_copy;
193 reader->current_buffer->offset += bytes_to_copy;
ringbuffer.c 97 const size_t bytes_to_copy = (offset + length > ringbuffer_size(rb)) ? ringbuffer_size(rb) - offset : length; local
99 for (size_t copied = 0; copied < bytes_to_copy; ++copied) {
105 return bytes_to_copy;
  /packages/apps/Gallery2/jni/filters/
geometry.c 26 size_t bytes_to_copy = sizeof(char) * width; local
30 memcpy(destination + temp - i, source + i, bytes_to_copy);
  /external/libpng/
pngrutil.c 3304 unsigned int bytes_to_copy, bytes_to_jump; local
    [all...]
  /external/opencv3/3rdparty/libpng/
pngrutil.c 3030 unsigned int bytes_to_copy, bytes_to_jump; local
    [all...]
  /external/pdfium/third_party/lpng_v163/
pngrutil.c 3242 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.c 2639 UINT32 bytes_to_copy; local
    [all...]
  /external/v8/src/
api.cc 6832 size_t bytes_to_copy = local
    [all...]

Completed in 286 milliseconds