| /xsrc/external/mit/brotli/dist/c/enc/ |
| utf8_util.c | 75 size_t bytes_read = local 77 i += bytes_read; 78 if (symbol < 0x110000) size_utf8 += bytes_read;
|
| /xsrc/external/mit/libFS/dist/src/ |
| FSlibInt.c | 236 register long bytes_read; local 246 while ((bytes_read = _FSTransRead(svr->trans_conn, data, (int) size)) 249 if (bytes_read > 0) { 250 size -= bytes_read; 251 data += bytes_read; 257 else if (bytes_read == 0) { 261 } else { /* bytes_read is less than 0; presumably -1 */ 281 register long bytes_read; local 299 while ((bytes_read = readv(svr->trans_conn->fd, iov, 2)) != size) { 301 if (bytes_read > 0) 608 register long bytes_read = (n > SCRATCHSIZE) ? SCRATCHSIZE : n; local [all...] |
| /xsrc/external/mit/MesaLib/dist/src/util/ |
| os_memory_fd.c | 74 int bytes_read = read(fd, &header, sizeof(header)); local 75 if(bytes_read != sizeof(header))
|
| /xsrc/external/mit/MesaLib/dist/src/intel/compiler/ |
| brw_nir_lower_mem_access_bit_sizes.c | 91 const unsigned bytes_read = num_components * (bit_size / 8); local 106 const unsigned load_comps32 = DIV_ROUND_UP(bytes_read + load_offset, 4); 123 while (load_offset < bytes_read) { 124 const unsigned bytes_left = bytes_read - load_offset;
|
| brw_vec4.cpp | 705 unsigned bytes_read = inst->src[2].ud; local 706 assert(bytes_read % 4 == 0); 707 unsigned vec4s_read = DIV_ROUND_UP(bytes_read, 16);
|
| /xsrc/external/mit/libXfont/dist/src/fc/ |
| fsio.c | 150 long bytes_read; local 168 bytes_read =_FontTransRead(conn->trans_conn, 171 if (bytes_read > 0) { 172 conn->inBuf.insert += bytes_read; 177 if (bytes_read == 0 || ETEST ())
|
| /xsrc/external/mit/libXfont2/dist/src/fc/ |
| fsio.c | 146 long bytes_read; local 164 bytes_read =_FontTransRead(conn->trans_conn, 167 if (bytes_read > 0) { 168 conn->inBuf.insert += bytes_read; 173 if (bytes_read == 0 || ETEST ())
|
| /xsrc/external/mit/MesaLib.old/dist/src/intel/compiler/ |
| brw_nir_lower_mem_access_bit_sizes.c | 85 const unsigned bytes_read = num_components * (bit_size / 8); local 97 const unsigned load_comps32 = DIV_ROUND_UP(bytes_read + load_offset, 4); 121 while (load_offset < bytes_read) { 122 const unsigned bytes_left = bytes_read - load_offset;
|
| brw_vec4.cpp | 704 unsigned bytes_read = inst->src[2].ud; 705 assert(bytes_read % 4 == 0); 706 unsigned vec4s_read = DIV_ROUND_UP(bytes_read, 16);
|
| /xsrc/external/mit/MesaLib/dist/src/intel/ds/ |
| intel_pps_driver.cc | 303 ssize_t bytes_read = 0; 304 while ((bytes_read = perf->read_oa_stream(metric_buffer.data() + total_bytes_read, 307 total_bytes_read += std::max(ssize_t(0), bytes_read);
|
| /xsrc/external/mit/libpciaccess/dist/src/ |
| linux_sysfs.c | 81 pciaddr_t * bytes_read ); 434 pciaddr_t * bytes_read ) 442 if ( bytes_read != NULL ) { 443 *bytes_read = 0; 482 if ( bytes_read != NULL ) { 483 *bytes_read = size - temp_size; 779 int fd, bytes_read; local 793 bytes_read = read(fd, reply, 1); 794 if (bytes_read != 1)
|
| common_interface.c | 485 * \param bytes_read Location to store the actual number of bytes read. This 499 pciaddr_t * bytes_read ) 508 (bytes_read == NULL) 509 ? & scratch : bytes_read ); 571 * \param bytes_read Location to store the actual number of bytes written.
|
| pciaccess_private.h | 72 pciaddr_t size, pciaddr_t * bytes_read );
|
| x86_pci.c | 943 pciaddr_t offset, pciaddr_t size, pciaddr_t *bytes_read) 947 *bytes_read = 0; 960 *bytes_read += toread; 967 pciaddr_t offset, pciaddr_t size, pciaddr_t *bytes_read) 971 *bytes_read = 0; 984 *bytes_read += toread;
|
| freebsd_pci.c | 191 pciaddr_t * bytes_read ) 200 *bytes_read = 0; 219 *bytes_read += toread;
|
| hurd_pci.c | 368 * at `offset'. Write the amount on read bytes in `bytes_read'. 372 pciaddr_t offset, pciaddr_t size, pciaddr_t *bytes_read) 377 *bytes_read = 0; 392 *bytes_read += toread;
|
| netbsd_pci.c | 210 pciaddr_t offset, pciaddr_t size, pciaddr_t *bytes_read) 214 *bytes_read = 0; 233 *bytes_read += toread;
|
| openbsd_pci.c | 254 pciaddr_t offset, pciaddr_t size, pciaddr_t *bytes_read) 262 *bytes_read = 0; 280 *bytes_read += toread;
|
| solx_devfs.c | 775 pciaddr_t * bytes_read ) 785 *bytes_read = 0; 822 *bytes_read = i;
|
| /xsrc/external/mit/MesaLib/dist/src/gtest/src/ |
| gtest-death-test.cc | 463 int bytes_read; local 470 bytes_read = posix::Read(read_fd(), &flag, 1); 471 } while (bytes_read == -1 && errno == EINTR); 473 if (bytes_read == 0) { 475 } else if (bytes_read == 1) { 932 size_t bytes_read = 0; local 936 &bytes_read); 937 captured_stderr_.resize(old_length + bytes_read);
|
| gtest-port.cc | 1218 size_t bytes_read = 0; // # of bytes read so far 1225 bytes_last_read = fread(buffer+bytes_read, 1, file_size-bytes_read, file); 1226 bytes_read += bytes_last_read; 1227 } while (bytes_last_read > 0 && bytes_read < file_size); 1229 const std::string content(buffer, bytes_read);
|
| /xsrc/external/mit/MesaLib.old/dist/src/gtest/src/ |
| gtest-port.cc | 1086 size_t bytes_read = 0; // # of bytes read so far 1093 bytes_last_read = fread(buffer+bytes_read, 1, file_size-bytes_read, file); 1094 bytes_read += bytes_last_read; 1095 } while (bytes_last_read > 0 && bytes_read < file_size); 1097 const std::string content(buffer, bytes_read);
|
| gtest-death-test.cc | 438 int bytes_read; local 445 bytes_read = posix::Read(read_fd(), &flag, 1); 446 } while (bytes_read == -1 && errno == EINTR); 448 if (bytes_read == 0) { 450 } else if (bytes_read == 1) {
|
| /xsrc/external/mit/libpciaccess/dist/include/ |
| pciaccess.h | 149 pciaddr_t offset, pciaddr_t size, pciaddr_t *bytes_read);
|
| /xsrc/external/mit/xedit/dist/lisp/ |
| string.c | 732 long length, start, end, bytes_read; local 758 bytes_read = stream->data.stream.source.string->input; 769 RETURN(0) = FIXNUM(start + bytes_read);
|