HomeSort by: relevance | last modified time | path
    Searched defs:bytes_read (Results 1 - 25 of 124) sorted by relevancy

1 2 3 4 5

  /src/sys/arch/ia64/stand/common/
load_elf64.c 55 ssize_t bytes_read; local
  /src/external/bsd/libarchive/dist/libarchive/test/
test_compat_solaris_pax_sparse.c 38 size_t bytes_read; local
78 archive_read_data_block(a, &buff, &bytes_read, &offset)) {
80 assert((offset >= 0 && offset + bytes_read <= 131072) ||
81 (offset >= 393216 && offset + bytes_read <= 393216+131072) ||
82 (offset >= 786432 && offset + bytes_read <= 786432+32775));
83 if (offset == 0 && bytes_read >= 1024*8) {
87 } else if (offset + bytes_read == 819207 && bytes_read >= 7) {
89 last += bytes_read - 7;
119 size_t bytes_read; local
    [all...]
test_read_format_zip.c 33 la_ssize_t fsize, bytes_read; local
43 bytes_read = archive_read_data(a, buf, fsize);
44 if(bytes_read != fsize) {
45 assertEqualInt(bytes_read, fsize);
64 la_ssize_t bytes_read; local
71 bytes_read = archive_read_data(a, buf, block_size);
72 if(bytes_read == ARCHIVE_RETRY)
74 else if(bytes_read == 0)
76 else if(bytes_read < 0) {
86 computed_crc = bitcrc32(computed_crc, buf, bytes_read);
    [all...]
  /src/external/mit/libcbor/dist/examples/
streaming_parser.c 48 size_t bytes_read = 0; local
50 while (bytes_read < length) {
51 decode_result = cbor_stream_decode(buffer + bytes_read, length - bytes_read,
53 bytes_read += decode_result.read;
  /src/external/gpl3/gdb.old/dist/gdb/dwarf2/
comp-unit-head.c 43 unsigned int bytes_read; local
47 cu_header->set_length (read_initial_length (abfd, info_ptr, &bytes_read));
48 cu_header->initial_length_size = bytes_read;
49 cu_header->offset_size = (bytes_read == 4) ? 4 : 8;
50 info_ptr += bytes_read;
109 = (sect_offset) cu_header->read_offset (abfd, info_ptr, &bytes_read);
110 info_ptr += bytes_read;
134 type_offset = cu_header->read_offset (abfd, info_ptr, &bytes_read);
135 info_ptr += bytes_read;
204 unsigned int *bytes_read) cons
    [all...]
abbrev.c 90 unsigned int bytes_read; local
93 &bytes_read);
96 abbrev_ptr += bytes_read;
106 &bytes_read);
107 abbrev_ptr += bytes_read;
129 &bytes_read);
130 abbrev_ptr += bytes_read;
133 &bytes_read);
134 abbrev_ptr += bytes_read;
138 &bytes_read);
    [all...]
aranges.c 66 unsigned int bytes_read; local
69 &bytes_read);
70 addr += bytes_read;
73 const bool dwarf5_is_dwarf64 = bytes_read != 4;
82 plongest (bytes_read + entry_length),
  /src/external/gpl3/gdb/dist/gdb/dwarf2/
unit-head.c 40 unsigned int bytes_read; local
44 header->set_length (read_initial_length (abfd, info_ptr, &bytes_read));
45 header->initial_length_size = bytes_read;
46 header->offset_size = (bytes_read == 4) ? 4 : 8;
47 info_ptr += bytes_read;
106 = (sect_offset) header->read_offset (abfd, info_ptr, &bytes_read);
107 info_ptr += bytes_read;
132 type_offset = header->read_offset (abfd, info_ptr, &bytes_read);
133 info_ptr += bytes_read;
194 unsigned int *bytes_read) cons
    [all...]
abbrev.c 90 unsigned int bytes_read; local
93 &bytes_read);
96 abbrev_ptr += bytes_read;
106 &bytes_read);
107 abbrev_ptr += bytes_read;
129 &bytes_read);
130 abbrev_ptr += bytes_read;
133 &bytes_read);
134 abbrev_ptr += bytes_read;
138 &bytes_read);
    [all...]
aranges.c 67 unsigned int bytes_read; local
70 &bytes_read);
71 addr += bytes_read;
74 const bool dwarf5_is_dwarf64 = bytes_read != 4;
83 plongest (bytes_read + entry_length),
  /src/external/bsd/libarchive/dist/libarchive_fe/
line_reader.c 94 size_t bytes_wanted, bytes_read, new_buff_size; local
147 bytes_read = fread(lr->buff_end, 1, bytes_wanted, lr->f);
148 lr->buff_end += bytes_read;
  /src/common/dist/zlib/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);
  /src/external/apache2/llvm/dist/llvm/lib/Support/
DataExtractor.cpp 206 unsigned bytes_read; local
208 Decoder(Bytes.data() + *OffsetPtr, &bytes_read, Bytes.end(), &error);
217 *OffsetPtr += bytes_read;
  /src/external/bsd/libarchive/dist/libarchive/
archive_read_open_fd.c 118 ssize_t bytes_read; local
122 bytes_read = read(mine->fd, mine->buffer, mine->block_size);
123 if (bytes_read < 0) {
129 return (bytes_read);
archive_read_open_file.c 115 size_t bytes_read; local
118 bytes_read = fread(mine->buffer, 1, mine->block_size, mine->f);
119 if (bytes_read < mine->block_size && ferror(mine->f)) {
122 return (bytes_read);
  /src/external/gpl3/binutils/dist/zlib/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);
  /src/external/gpl3/binutils.old/dist/zlib/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);
  /src/external/gpl3/gdb/dist/zlib/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);
  /src/external/gpl3/gdb.old/dist/gdb/nat/
netbsd-nat.c 264 size_t bytes_read = 0; local
271 io.piod_offs = (void *)(offset + bytes_read);
272 io.piod_addr = readbuf + bytes_read;
280 bytes_read += io.piod_len;
281 io.piod_len = len - bytes_read;
283 while (bytes_read < len);
287 *xfered_len = bytes_read;
  /src/external/gpl3/gdb.old/dist/zlib/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);
  /src/external/lgpl2/userspace-rcu/dist/src/
compat-smp.h 140 ssize_t bytes_read = 0; local
154 bytes_read = read(fd, buf + total_bytes_read,
157 if (bytes_read < 0) {
165 total_bytes_read += bytes_read;
167 } while (max_bytes > total_bytes_read && bytes_read != 0);
  /src/external/mit/libuv/dist/test/
test-ipc-heavy-traffic-deadlock-bug.c 47 static size_t bytes_read; variable
98 bytes_read += nread;
104 if (bytes_read >= XFER_SIZE) {
117 bytes_read = 0;
130 ASSERT_EQ(bytes_read, XFER_SIZE);
test-tcp-try-write.c 37 static int bytes_read; variable
85 bytes_read += nread;
130 ASSERT_EQ(bytes_read, bytes_written);
  /src/external/gpl3/gdb/dist/gdb/nat/
netbsd-nat.c 264 size_t bytes_read = 0; local
271 io.piod_offs = (void *)(offset + bytes_read);
272 io.piod_addr = readbuf + bytes_read;
280 bytes_read += io.piod_len;
281 io.piod_len = len - bytes_read;
283 while (bytes_read < len);
287 *xfered_len = bytes_read;
  /src/tests/lib/libc/sys/
t_ptrace_lwp_wait.h 83 size_t bytes_read; local
216 bytes_read = 0;
221 io.piod_addr = (char *)&tcb + bytes_read;
227 bytes_read += io.piod_len;
228 io.piod_len = sizeof(tcb) - bytes_read;
229 } while (bytes_read < sizeof(tcb));

Completed in 45 milliseconds

1 2 3 4 5