| /external/opencv3/3rdparty/libjpeg/ |
| jdmarker.c | 105 unsigned int bytes_read; /* data bytes read so far in marker */ member in struct:__anon20346 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/pdfium/third_party/libjpeg/ |
| fpdfapi_jdmarker.c | 103 unsigned int bytes_read; /* data bytes read so far in marker */ member in struct:__anon21615 777 unsigned int bytes_read, data_length; local 806 marker->bytes_read = 0; 807 bytes_read = 0; 811 bytes_read = data_length = 0; 816 bytes_read = marker->bytes_read; 818 data = cur_marker->data + bytes_read; 821 while (bytes_read < data_length) { 823 marker->bytes_read = bytes_read [all...] |
| /external/protobuf/gtest/src/ |
| gtest-death-test.cc | 374 int bytes_read; local 381 bytes_read = posix::Read(read_fd(), &flag, 1); 382 } while (bytes_read == -1 && errno == EINTR); 384 if (bytes_read == 0) { 386 } else if (bytes_read == 1) { [all...] |
| /external/vulkan-validation-layers/tests/gtest-1.7.0/src/ |
| gtest-death-test.cc | 427 int bytes_read; local 434 bytes_read = posix::Read(read_fd(), &flag, 1); 435 } while (bytes_read == -1 && errno == EINTR); 437 if (bytes_read == 0) { 439 } else if (bytes_read == 1) { [all...] |
| /frameworks/av/media/libmedia/ |
| MediaProfiles.cpp | 875 int bytes_read = ::fread(buff, 1, BUFF_SIZE, fp); local 876 if (bytes_read < 0) { 883 CHECK(::XML_ParseBuffer(parser, bytes_read, bytes_read == 0)); 885 if (bytes_read == 0) break; // done parsing the xml file [all...] |
| /frameworks/native/cmds/atrace/ |
| atrace.cpp | 829 ssize_t bytes_read = read(traceFD, trace_data, 4096); local 830 if (bytes_read > 0) { 831 write(STDOUT_FILENO, trace_data, bytes_read); 836 bytes_read, errno, strerror(errno)); [all...] |
| /frameworks/native/cmds/dumpstate/ |
| dumpstate.cpp | 608 ssize_t bytes_read = TEMP_FAILURE_RETRY(read(fd, buffer.data(), sizeof(buffer))); local 609 if (bytes_read == 0) { 611 } else if (bytes_read == -1) { 615 err = zip_writer->WriteBytes(buffer.data(), bytes_read); 1073 ssize_t bytes_read = TEMP_FAILURE_RETRY(read(fd.get(), buffer.data(), buffer.size())); local [all...] |
| utils.cpp | 450 ssize_t bytes_read = TEMP_FAILURE_RETRY(read(fd, buffer, sizeof(buffer))); local 451 if (bytes_read > 0) { 452 fwrite(buffer, bytes_read, 1, stdout); 453 newline = (buffer[bytes_read-1] == '\n'); 455 if (bytes_read == -1) { 492 ssize_t bytes_read = TEMP_FAILURE_RETRY(read(fd, buffer, sizeof(buffer))); local 493 if (bytes_read == -1) { 497 if (bytes_read == 0) { [all...] |
| /hardware/intel/common/libmix/mix_audio/src/ |
| mixaudio.c | 1032 gint bytes_read; local [all...] |
| /ndk/sources/third_party/googletest/googletest/src/ |
| gtest-death-test.cc | 427 int bytes_read; local 434 bytes_read = posix::Read(read_fd(), &flag, 1); 435 } while (bytes_read == -1 && errno == EINTR); 437 if (bytes_read == 0) { 439 } else if (bytes_read == 1) { [all...] |
| /system/core/libbacktrace/ |
| backtrace_test.cpp | 995 size_t bytes_read = backtrace->Read(read_addr, data, 2 * pagesize); local 996 ASSERT_EQ(pagesize, bytes_read); 1001 bytes_read = backtrace->Read(read_addr + i, data, 2 * sizeof(word_t)); 1002 ASSERT_EQ(2 * sizeof(word_t), bytes_read); 1012 bytes_read = backtrace->Read(read_addr + i, data, j); 1013 ASSERT_EQ(j, bytes_read); 1092 size_t bytes_read = backtrace->Read(reinterpret_cast<uintptr_t>(&g_ready), local 1095 ASSERT_EQ(sizeof(uintptr_t), bytes_read); local 1101 ASSERT_EQ(sizeof(uintptr_t), bytes_read); local [all...] |
| /system/extras/perfprofd/quipper/ |
| perf_reader.cc | 312 int bytes_read = AlignSize(sizeof(sample->raw_size) + sample->raw_size, local 314 array += bytes_read / sizeof(uint64_t); [all...] |
| /system/update_engine/common/ |
| utils.cc | 208 size_t bytes_read = 0; local 210 while (bytes_read < count) { 211 ssize_t rc = HANDLE_EINTR(read(fd, c_buf + bytes_read, count - bytes_read)); 217 *out_bytes_read = bytes_read; 227 bytes_read += rc; 230 *out_bytes_read = bytes_read; 288 ssize_t bytes_read = 0; local 289 while (bytes_read < static_cast<ssize_t>(count)) { 290 ssize_t rc = pread(fd, c_buf + bytes_read, count - bytes_read 307 ssize_t bytes_read = 0; local 1201 ssize_t bytes_read = 0; local [all...] |
| /system/update_engine/payload_consumer/ |
| delta_performer.cc | 998 ssize_t bytes_read = 0; local 1108 ssize_t bytes_read = 0; local [all...] |
| /external/ImageMagick/MagickCore/ |
| nt-base.c | 2335 bytes_read, local [all...] |
| /external/dbus/dbus/ |
| dbus-sysdeps-unix.c | 281 int bytes_read; 318 bytes_read = recvmsg(fd, &m, 0 324 if (bytes_read < 0) 376 _dbus_string_set_length (buffer, start + bytes_read); 379 if (bytes_read > 0) 380 _dbus_verbose_bytes_of_string (buffer, start, bytes_read); 383 return bytes_read; 585 int bytes_read; local 603 bytes_read = read (fd, data, count); 605 if (bytes_read < 0 1697 int bytes_read; local [all...] |
| dbus-sysdeps-win.c | 189 int bytes_read; local 208 bytes_read = recv (fd, data, count, 0); 210 if (bytes_read == SOCKET_ERROR) 214 bytes_read = -1; 217 _dbus_verbose ("recv: = %d\n", bytes_read); 219 if (bytes_read < 0) 233 _dbus_string_set_length (buffer, start + bytes_read); 236 if (bytes_read > 0) 237 _dbus_verbose_bytes_of_string (buffer, start, bytes_read); 240 return bytes_read; 1684 int bytes_read = 0; local [all...] |
| /external/e2fsprogs/e2fsck/ |
| e2fsck.h | 148 unsigned long long bytes_read; member in struct:resource_track
|
| /external/google-breakpad/src/processor/ |
| minidump.cc | 4433 std::streamsize bytes_read = stream_->gcount(); local [all...] |
| /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/pdfium/core/src/fxge/ge/ |
| fx_ge_fontmap.cpp | 716 FX_DWORD bytes_read = local 718 return (bytes_read == size) ? GetNameFromTT(buffer_ptr, 6) : CFX_ByteString(); [all...] |
| /external/webrtc/webrtc/modules/audio_processing/test/ |
| audio_processing_unittest.cc | 1829 size_t bytes_read = 0; local [all...] |
| /hardware/qcom/media/msm8996/videopp/src/ |
| omx_vdpp.cpp | 301 int error_code = 0,rc=0,bytes_read = 0,bytes_written = 0; local [all...] |
| /hardware/qcom/media/msmcobalt/videopp/src/ |
| omx_vdpp.cpp | 301 int error_code = 0,rc=0,bytes_read = 0,bytes_written = 0; local [all...] |
| /system/core/adb/ |
| commandline.cpp | 1097 ssize_t bytes_read = adb_read(fd.fd(), cur, bytes_left); local [all...] |