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

  /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);
  /external/perfetto/tools/trace_to_text/
trace_to_text.cc 51 size_t bytes_to_copy = 0; local
54 bytes_to_copy = std::min(length, static_cast<size_t>(size));
55 memcpy(data, str, bytes_to_copy);
56 length -= bytes_to_copy;
57 str += bytes_to_copy;
59 output->BackUp(size - static_cast<int>(bytes_to_copy));
  /external/tensorflow/tensorflow/core/lib/io/snappy/
snappy_outputbuffer.cc 120 size_t bytes_to_copy = std::min(length, avail_out_); local
121 memcpy(next_out_, data, bytes_to_copy);
122 data += bytes_to_copy;
123 next_out_ += bytes_to_copy;
124 avail_out_ -= bytes_to_copy;
125 length -= bytes_to_copy;
  /external/tensorflow/tensorflow/core/lib/io/
buffered_inputstream.cc 111 const int64 bytes_to_copy = local
113 result->insert(result->size(), buf_, pos_, bytes_to_copy);
114 pos_ += bytes_to_copy;
inputbuffer.cc 104 const int64 bytes_to_copy = local
107 memcpy(result + *bytes_read, pos_, bytes_to_copy);
108 pos_ += bytes_to_copy;
109 *bytes_read += bytes_to_copy;
  /external/puffin/src/
puffin_stream.cc 298 auto bytes_to_copy = local
302 bytes_to_copy);
305 skip_bytes_ += bytes_to_copy;
306 bytes_read += bytes_to_copy;
  /external/tensorflow/tensorflow/core/platform/cloud/
http_request_fake.h 133 size_t bytes_to_copy = variable
135 memcpy(direct_result_buffer_, response_.data(), bytes_to_copy);
136 direct_result_bytes_transferred_ += bytes_to_copy;
ram_file_block_cache.cc 207 size_t bytes_to_copy = end - begin; local
208 memcpy(&buffer[total_bytes_transferred], &*begin, bytes_to_copy);
209 total_bytes_transferred += bytes_to_copy;
curl_http_request.cc 334 size_t bytes_to_copy = local
336 memcpy(&state->buffer_[state->bytes_transferred_], ptr, bytes_to_copy);
337 state->bytes_transferred_ += bytes_to_copy;
343 return bytes_to_copy;
364 const size_t bytes_to_copy = size * nmemb; local
367 reinterpret_cast<const char*>(ptr) + bytes_to_copy);
369 return bytes_to_copy;
377 const size_t bytes_to_copy = std::min( local
380 bytes_to_copy);
381 that->post_body_read_ += bytes_to_copy;
    [all...]
  /external/adhd/cras/src/server/
cras_loopback_iodev.c 57 unsigned int frames_to_copy, bytes_to_copy; local
71 bytes_to_copy = frames_to_copy * frame_bytes;
72 memcpy(buf_write_pointer(sbuf), frames, bytes_to_copy); local
73 buf_increment_write(sbuf, bytes_to_copy);
  /external/libaom/libaom/examples/
lightfield_bitstream_parsing.c 308 size_t bytes_to_copy = local
311 unsigned char *frame_hdr_buf = (unsigned char *)malloc(bytes_to_copy);
315 memcpy(frame_hdr_buf, frame, bytes_to_copy);
325 if (!aom_video_writer_write_frame(writer, frame_hdr_buf, bytes_to_copy,
  /external/webrtc/webrtc/modules/video_coding/codecs/vp8/
vp8_impl.cc 1229 const uint32_t bytes_to_copy = input_image._length; local
    [all...]
  /external/libpng/
pngrutil.c 3427 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/tensorflow/tensorflow/core/util/
example_proto_fast_parsing.cc 178 const uint32 bytes_to_copy = local
182 if (!stream.ReadRaw(float_list->data() + initial_size, bytes_to_copy))
    [all...]
  /external/v8/src/
api.cc 7718 size_t bytes_to_copy = local
    [all...]

Completed in 1267 milliseconds