HomeSort by relevance Sort by last modified time
    Searched refs:bytes_read (Results 101 - 125 of 232) sorted by null

1 2 3 45 6 7 8 910

  /external/pdfium/testing/
test_support.cpp 93 size_t bytes_read = fread(buffer.get(), 1, file_length, file); local
95 if (bytes_read != file_length) {
99 *retlen = bytes_read;
  /external/tinyalsa/
tinycap.c 192 unsigned int bytes_read = 0; local
228 bytes_read += size;
233 return pcm_bytes_to_frames(pcm, bytes_read);
  /external/chromium-trace/catapult/third_party/gsutil/gslib/tests/
test_daisy_chain_wrapper.py 74 bytes_read = 0
76 if bytes_read < start_byte:
77 bytes_read += len(write_value)
79 if end_byte and bytes_read >= end_byte:
84 bytes_read += len(write_value)
  /external/webrtc/webrtc/libjingle/xmpp/
xmppclient.cc 349 size_t bytes_read; local
357 if (!socket_->Read(bytes, sizeof(bytes), &bytes_read)) {
362 if (bytes_read == 0)
366 client_->SignalLogInput(bytes, static_cast<int>(bytes_read));
369 engine_->HandleInput(bytes, bytes_read);
  /external/libunwind/src/
elfxx.c 48 size_t bytes_read = 0; local
67 bytes_read += copy_bytes;
76 return bytes_read;
84 return nul_terminator - buffer + bytes_read;
89 bytes_read += sizeof(unw_word_t);
96 return bytes_read;
104 return nul_terminator - buffer + bytes_read;
108 bytes_read += left_over;
110 return bytes_read;
219 size_t bytes_read = elf_w (memory_read) local
    [all...]
  /external/webrtc/webrtc/base/
stream.cc 534 size_t* bytes_read, int* error) {
545 if (bytes_read) {
546 *bytes_read = bytes;
732 size_t offset, size_t* bytes_read) {
734 return ReadOffsetLocked(buffer, bytes, offset, bytes_read);
748 size_t* bytes_read, int* error) {
759 if (bytes_read) {
760 *bytes_read = copy;
855 size_t* bytes_read) {
868 if (bytes_read) {
    [all...]
stream.h 433 size_t* bytes_read,
515 size_t* bytes_read);
528 size_t* bytes_read,
545 size_t* bytes_read);
  /external/mesa3d/src/gallium/drivers/r600/
r600_shader.c 262 unsigned * bytes_read)
267 out |= bytes[(*bytes_read)++] << (8 * i);
273 unsigned bytes_read, struct r600_bytecode_alu * alu, unsigned src_idx)
277 sel0 = bytes[bytes_read++];
278 sel1 = bytes[bytes_read++];
280 alu->src[src_idx].chan = bytes[bytes_read++];
281 alu->src[src_idx].neg = bytes[bytes_read++];
282 alu->src[src_idx].abs = bytes[bytes_read++];
283 alu->src[src_idx].rel = bytes[bytes_read++];
284 alu->src[src_idx].kc_bank = bytes[bytes_read++]
519 unsigned bytes_read = 0; local
    [all...]
  /external/bison/src/
scan-gram.l 730 size_t bytes_read = fread (buf, 1, size, fp);
731 if (bytes_read)
733 char *w = memchr (buf, '\r', bytes_read);
737 char const *lim = buf + bytes_read;
766 return bytes_read;
  /external/libchrome/base/files/
file_util_posix.cc 392 ssize_t bytes_read = local
394 if (bytes_read <= 0)
396 total_read += bytes_read;
684 ssize_t bytes_read = HANDLE_EINTR(read(fd, data, max_size));
687 return bytes_read;
884 ssize_t bytes_read = infile.ReadAtCurrentPos(&buffer[0], buffer.size()); local
885 if (bytes_read < 0) {
889 if (bytes_read == 0)
895 &buffer[bytes_written_per_read], bytes_read - bytes_written_per_read);
901 } while (bytes_written_per_read < bytes_read);
    [all...]
  /hardware/qcom/media/msm8974/mm-video-legacy/vidc/vdec/test/
decoder_driver_test.c 1069 int bytes_read = 0; local
1088 bytes_read = fread(&dataptr[readOffset],1, 1,inputBufferFile);
1089 if( !bytes_read)
1169 int bytes_read=0; local
    [all...]
  /hardware/qcom/media/msm8974/mm-video-v4l2/vidc/vdec/test/
decoder_driver_test.c 1006 int bytes_read = 0; local
1098 int bytes_read=0; local
    [all...]
  /external/opencv3/3rdparty/libjpeg/
jdmarker.c 105 unsigned int bytes_read; /* data bytes read so far in marker */ member in struct:__anon20950
875 unsigned int bytes_read, data_length; local
904 marker->bytes_read = 0;
905 bytes_read = 0;
909 bytes_read = data_length = 0;
914 bytes_read = marker->bytes_read;
916 data = cur_marker->data + bytes_read;
919 while (bytes_read < data_length) {
921 marker->bytes_read = bytes_read
    [all...]
  /external/google-breakpad/src/testing/gtest/src/
gtest-port.cc 596 size_t bytes_read = 0; // # of bytes read so far
603 bytes_last_read = fread(buffer+bytes_read, 1, file_size-bytes_read, file);
604 bytes_read += bytes_last_read;
605 } while (bytes_last_read > 0 && bytes_read < file_size);
607 const String content(buffer, bytes_read);
  /external/gtest/src/
gtest-port.cc 641 size_t bytes_read = 0; // # of bytes read so far
648 bytes_last_read = fread(buffer+bytes_read, 1, file_size-bytes_read, file);
649 bytes_read += bytes_last_read;
650 } while (bytes_last_read > 0 && bytes_read < file_size);
652 const std::string content(buffer, bytes_read);
  /external/libchrome/base/process/
launch_posix.cc 625 ssize_t bytes_read = 1; // A lie to properly handle |max_output == 0| local
629 bytes_read = HANDLE_EINTR(read(pipe_fd[0], buffer,
631 if (bytes_read <= 0)
633 output->append(buffer, bytes_read);
634 output_buf_left -= static_cast<size_t>(bytes_read);
645 if (!output_buf_left && bytes_read > 0)
  /hardware/qcom/audio/msm8909/mm-audio/aenc-amrnb/qdsp6/test/
omx_amr_enc_test.c 954 size_t bytes_read=0; local
960 bytes_read = fread(pBufHdr->pBuffer, 1, pBufHdr->nAllocLen , inputBufferFile);
962 pBufHdr->nFilledLen = (OMX_U32)bytes_read;
969 if(bytes_read == 0)
978 total_pcm_bytes = (unsigned)(total_pcm_bytes + bytes_read);
981 return (int)bytes_read;;
    [all...]
  /ndk/sources/third_party/googletest/googletest/src/
gtest-port.cc 610 size_t bytes_read = 0; // # of bytes read so far
617 bytes_last_read = fread(buffer+bytes_read, 1, file_size-bytes_read, file);
618 bytes_read += bytes_last_read;
619 } while (bytes_last_read > 0 && bytes_read < file_size);
621 const std::string content(buffer, bytes_read);
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_posix.cc 191 bool ReadFromFile(fd_t fd, void *buff, uptr buff_size, uptr *bytes_read,
196 if (bytes_read)
197 *bytes_read = res;
  /external/e2fsprogs/lib/quota/
quotaio.c 178 unsigned int bytes_read = 0; local
187 err = ext2fs_file_read(e2_file, buf, size, &bytes_read);
193 return bytes_read;
  /external/zlib/src/contrib/iostream3/
zfstream.cc 197 int bytes_read = gzread(file, buffer, buffer_size); local
199 if (bytes_read <= 0)
206 this->setg(buffer, buffer, buffer + bytes_read);
  /external/e2fsprogs/resize/
resize2fs.h 95 unsigned long long bytes_read; member in struct:resource_track
  /hardware/libhardware/include/hardware/
nvram.h 279 * bytes_read - The number of bytes read. If NV_RESULT_SUCCESS is
287 uint8_t* buffer, uint64_t* bytes_read);
  /external/curl/docs/examples/
http2-upload.c 163 size_t bytes_read; /* count up */ member in struct:input
171 i->bytes_read += retcode;
  /external/fio/exp/
expression-parser.y 191 int lexer_input(char* buffer, unsigned int *bytes_read, int bytes_requested)
198 *bytes_read = bytes_requested;

Completed in 1255 milliseconds

1 2 3 45 6 7 8 910