/external/vboot_reference/tests/ |
D | vb21_host_misc_tests.c | 35 uint32_t read_size; in file_tests() local 42 TEST_EQ(vb2_read_file(testfile, &read_data, &read_size), in file_tests() 49 TEST_SUCC(vb2_read_file(testfile, &read_data, &read_size), in file_tests() 51 TEST_EQ(read_size, sizeof(test_data), " data size"); in file_tests() 52 TEST_EQ(memcmp(read_data, test_data, read_size), 0, " data"); in file_tests() 62 TEST_SUCC(vb2_read_file(testfile, &read_data, &read_size), in file_tests() 64 TEST_EQ(read_size, c->total_size, " data size"); in file_tests() 66 TEST_EQ(memcmp(read_data, c, read_size), 0, " data"); in file_tests()
|
/external/deqp/external/openglcts/modules/glesext/texture_cube_map_array/ |
D | esextcTextureCubeMapArrayImageTextureSize.cpp | 480 glw::GLuint read_size[m_n_varyings * m_n_tf_components]; in checkResults() local 481 memcpy(read_size, temp_buff, m_n_varyings * m_n_tf_components * sizeof(glw::GLint)); in checkResults() 489 …if (read_size[0] != width || read_size[1] != height || read_size[2] != (depth / m_n_layers_per_cub… in checkResults() 495 << "[" << read_size[0] << "][" << read_size[1] << "][" << read_size[2] << "] but should be " in checkResults() 502 …if (read_size[3] != width || read_size[4] != height || read_size[5] != (depth / m_n_layers_per_cub… in checkResults() 509 << "[" << read_size[3] << "][" << read_size[4] << "][" << read_size[5] in checkResults() 1176 glw::GLuint read_size[m_n_rt_components]; in checkResults() local 1177 memset(read_size, 0, m_n_rt_components * sizeof(glw::GLuint)); in checkResults() 1188 gl.readPixels(0, 0, 1, 1, GL_RGBA_INTEGER, GL_UNSIGNED_INT, read_size); in checkResults() 1191 …if (read_size[0] != width || read_size[1] != height || read_size[2] != (depth / m_n_layers_per_cub… in checkResults() [all …]
|
/external/adhd/cras/src/server/ |
D | cras_udev.c | 193 int read_size; in calculate_desc_checksum() local 216 read_size = 0; in calculate_desc_checksum() 217 while (read_size < stat_buf.st_size) { in calculate_desc_checksum() 218 if (read_size == buf_size) { in calculate_desc_checksum() 231 n = read(fd, buf + read_size, buf_size - read_size); in calculate_desc_checksum() 238 read_size += n; in calculate_desc_checksum() 242 result = crc32_checksum(buf, read_size); in calculate_desc_checksum()
|
/external/linux-kselftest/tools/testing/selftests/networking/timestamping/ |
D | rxtimestamp.c | 169 bool do_recv(int rcv, int read_size, struct tstamps expected) in do_recv() argument 186 recv_iov.iov_base = malloc(read_size); in do_recv() 187 recv_iov.iov_len = read_size; in do_recv() 195 if (r != read_size) in do_recv() 274 int read_size = op_size; in run_test_case() local 315 read_size += 20; /* for IP header */ in run_test_case() 316 failed = do_recv(rcv, read_size, t.expected); in run_test_case()
|
/external/puffin/src/ |
D | main.cc | 289 auto read_size = std::min(static_cast<uint64_t>(buffer.size()), in main() local 291 TEST_AND_RETURN_VALUE(read_puff_stream->Read(buffer.data(), read_size), in main() 293 TEST_AND_RETURN_VALUE(huff_writer->Write(buffer.data(), read_size), -1); in main() 294 bytes_read += read_size; in main() 316 auto read_size = std::min(static_cast<uint64_t>(buffer.size()), in main() local 318 TEST_AND_RETURN_VALUE(src_stream->Read(buffer.data(), read_size), -1); in main() 319 TEST_AND_RETURN_VALUE(dst_stream->Write(buffer.data(), read_size), -1); in main() 320 bytes_read += read_size; in main()
|
/external/libmojo/mojo/edk/system/ |
D | message_pipe_perftest.cc | 109 uint32_t read_size = static_cast<uint32_t>(buffer.size()); in RunPingPongClient() local 111 &read_size, nullptr, in RunPingPongClient() 116 if (read_size == 0) in RunPingPongClient() 120 read_size, in RunPingPongClient()
|
/external/ltp/utils/ffsb-6.0-rc2/ |
D | fileops.c | 99 uint64_t read_size = ft_get_read_size(ft); in ffsb_readfile() local 112 assert(filesize >= read_size); in ffsb_readfile() 116 uint64_t range = filesize - read_size; in ffsb_readfile() 122 iterations = read_size / read_blocksize; in ffsb_readfile() 123 last = read_size % read_blocksize; in ffsb_readfile() 140 " aborting\n\n", read_size, in ffsb_readfile() 163 iterations = readfile_helper(fd, read_size, in ffsb_readfile() 172 iterations = read_size / read_blocksize; in ffsb_readfile() 185 ft_incr_op(ft, opnum, iterations, read_size); in ffsb_readfile() 186 ft_add_readbytes(ft, read_size); in ffsb_readfile()
|
D | ffsb_tg.c | 180 tg->read_size = rs; in tg_set_read_size() 227 return tg->read_size; in tg_get_read_size() 274 printf("\t read_size = %llu\t(%s)\n", tg->read_size, in tg_print_config_helper() 275 ffsb_printsize(buf, tg->read_size, 256)); in tg_print_config_helper()
|
/external/iputils/ninfod/ |
D | ni_ifaddrs.c | 168 int result = 0, read_size; in nl_getmsg() local 179 result = read_size = nl_recvmsg(sd, request, seq, buff, bufsize, &msg_flags); in nl_getmsg() 180 if (read_size < 0 || (msg_flags & MSG_TRUNC)) { in nl_getmsg() 185 if (read_size == 0) in nl_getmsg() 188 … (nh = (struct nlmsghdr *) buff; NLMSG_OK(nh, read_size); nh = (struct nlmsghdr *) NLMSG_NEXT(nh, … in nl_getmsg()
|
/external/libbrillo/brillo/http/ |
D | http_connection_curl.cc | 229 size_t read_size = 0; in read_callback() local 231 &read_size, nullptr); in read_callback() 232 VLOG_IF(3, success) << "Sending data: " << std::string{ptr, read_size}; in read_callback() 233 return success ? read_size : CURL_READFUNC_ABORT; in read_callback()
|
/external/v8/src/ |
D | startup-data-util.cc | 62 int read_size = static_cast<int>(fread(const_cast<char*>(startup_data->data), in Load() local 66 if (startup_data->raw_size == read_size) { in Load()
|
/external/ltp/utils/ffsb-6.0-rc2/examples/ |
D | profile_everything | 73 read_size = 40k 115 # read_size = 4096
|
/external/libbrillo/brillo/streams/ |
D | stream_unittest.cc | 100 size_t read_size = 0; in TEST() local 103 auto success_callback = [](size_t* read_size, bool* succeeded,size_t size) { in TEST() argument 104 *read_size = size; in TEST() 126 base::Unretained(&read_size), in TEST() 130 EXPECT_EQ(0u, read_size); in TEST() 141 base::Unretained(&read_size), in TEST() 157 EXPECT_EQ(7u, read_size); in TEST()
|
/external/pdfium/core/fpdfapi/parser/ |
D | cpdf_syntax_parser.cpp | 61 size_t read_size = CPDF_ModuleMgr::kFileBufSize; in ReadBlockAt() local 63 safe_end += read_size; in ReadBlockAt() 65 read_size = m_FileLen - read_pos; in ReadBlockAt() 67 m_pFileBuf.resize(read_size); in ReadBlockAt() 68 if (!m_pFileAccess->ReadBlock(m_pFileBuf.data(), read_pos, read_size)) { in ReadBlockAt()
|
/external/strace/tests-mx32/ |
D | perf_event_open.c | 164 uint32_t read_size; in print_event_attr() local 176 read_size = in print_event_attr() 184 if (read_size > available_size) { in print_event_attr() 199 memcpy(attr, attr_ptr, read_size); in print_event_attr()
|
/external/strace/tests/ |
D | perf_event_open.c | 164 uint32_t read_size; in print_event_attr() local 176 read_size = in print_event_attr() 184 if (read_size > available_size) { in print_event_attr() 199 memcpy(attr, attr_ptr, read_size); in print_event_attr()
|
/external/strace/tests-m32/ |
D | perf_event_open.c | 164 uint32_t read_size; in print_event_attr() local 176 read_size = in print_event_attr() 184 if (read_size > available_size) { in print_event_attr() 199 memcpy(attr, attr_ptr, read_size); in print_event_attr()
|
/external/ltp/testcases/kernel/fs/ext4-new-features/ext4-ffsb-config/ |
D | ffsb-config0 | 21 read_size=4096
|
D | ffsb-config2 | 21 read_size=4096
|
D | ffsb-config1 | 21 read_size=4096
|
D | ffsb-config7 | 26 read_size=4096
|
D | ffsb-config6 | 26 read_size=4096
|
D | ffsb-config3 | 26 read_size=4096
|
D | ffsb-config4 | 26 read_size=4096
|
D | ffsb-config5 | 26 read_size=4096
|