/external/linux-kselftest/tools/testing/selftests/powerpc/stringloops/ |
D | memcmp.c | 75 unsigned long comp_size = (islarge ? LARGE_SIZE : SIZE); in testcase() local 76 unsigned long alloc_size = comp_size + MAX_OFFSET_DIFF_S1_S2; in testcase() 104 memcpy(rand_s2, rand_s1, comp_size); in testcase() 107 change = random() % comp_size; in testcase() 112 LARGE_SIZE_START, comp_size); in testcase() 114 test_one(rand_s1, rand_s2, SIZE, 0, comp_size); in testcase() 130 memcpy(rand_s2, rand_s1, comp_size); in testcase() 133 for (j = 0; j < comp_size / 8; j++) { in testcase() 134 change = random() % comp_size; in testcase() 140 LARGE_SIZE_START, comp_size); in testcase() [all …]
|
/external/puffin/src/ |
D | puffin_unittest.cc | 89 size_t comp_size, in PuffDeflate() argument 92 BufferBitReader bit_reader(comp_buf, comp_size); in PuffDeflate() 97 TEST_AND_RETURN_FALSE(comp_size == bit_reader.Offset()); in PuffDeflate() 105 size_t comp_size) const { in HuffDeflate() 107 BufferBitWriter bit_writer(comp_buf, comp_size); in HuffDeflate() 110 TEST_AND_RETURN_FALSE(comp_size == bit_writer.Size()); in HuffDeflate() 121 auto comp_size = compressed.size(); in TestPuffDeflate() local 124 PuffDeflate(compressed.data(), comp_size, out_puff->data(), puff_size)); in TestPuffDeflate() 133 auto comp_size = compressed.size(); in FailPuffDeflate() local 136 PuffDeflate(compressed.data(), comp_size, out_puff->data(), puff_size)); in FailPuffDeflate() [all …]
|
/external/python/cpython2/PC/bdist_wininst/ |
D | archive.h | 36 long comp_size; member 55 long comp_size; member 80 extract_file(char *dst, char *src, int method, int comp_size,
|
D | extract.c | 152 extract_file(char *dst, char *src, int method, int comp_size, in extract_file() argument 162 zstream.avail_in = comp_size+1; in extract_file() 310 pcdir->comp_size, in unzip_archive()
|
/external/python/cpython3/PC/bdist_wininst/ |
D | archive.h | 35 long comp_size; member 54 long comp_size; member 79 extract_file(char *dst, char *src, int method, int comp_size,
|
D | extract.c | 151 extract_file(char *dst, char *src, int method, int comp_size, in extract_file() argument 161 zstream.avail_in = comp_size+1; in extract_file() 309 pcdir->comp_size, in unzip_archive()
|
/external/mesa3d/src/mesa/main/ |
D | texcompress_etc.c | 854 const unsigned bw = 4, bh = 4, bs = 8, comps = 1, comp_size = 2; in etc2_unpack_r11() local 867 uint8_t *dst = dst_row + (y + j) * dst_stride + x * comps * comp_size; in etc2_unpack_r11() 870 dst += comps * comp_size; in etc2_unpack_r11() 891 const unsigned bw = 4, bh = 4, bs = 16, comps = 2, comp_size = 2; in etc2_unpack_rg11() local 906 x * comps * comp_size; in etc2_unpack_rg11() 909 dst += comps * comp_size; in etc2_unpack_rg11() 917 x * comps * comp_size; in etc2_unpack_rg11() 919 etc2_r11_fetch_texel(&block, i, j, dst + comp_size); in etc2_unpack_rg11() 920 dst += comps * comp_size; in etc2_unpack_rg11() 941 const unsigned bw = 4, bh = 4, bs = 8, comps = 1, comp_size = 2; in etc2_unpack_signed_r11() local [all …]
|
/external/lz4/examples/ |
D | compress_functions.c | 117 const size_t comp_size in bench() argument 191 rv = LZ4_decompress_safe(src, dst, comp_size, src_size); in bench() 198 LZ4_decompress_safe(src, dst, comp_size, src_size); in bench()
|
/external/deqp/external/openglcts/modules/gl/ |
D | gl4cEnhancedLayoutsTests.cpp | 26327 const GLuint comp_size = Utils::Type::GetTypeSize(type.m_basic_type); in test() local 26352 …mcpy(&xfb.m_expected_data[0] + 2 * type_size + 0 * comp_size, &goku_data[0] + 0 * comp_size, comp_… in test() 26353 …mcpy(&xfb.m_expected_data[0] + 2 * type_size + 2 * comp_size, &goku_data[0] + 2 * comp_size, comp_… in test() 26356 …cpy(&xfb.m_expected_data[0] + 0 * type_size + 1 * comp_size, &gohan_data[0] + 1 * comp_size, comp_… in test() 26357 …cpy(&xfb.m_expected_data[0] + 0 * type_size + 3 * comp_size, &gohan_data[0] + 3 * comp_size, comp_… in test() 26360 …cpy(&xfb.m_expected_data[0] + 1 * type_size + 0 * comp_size, &goten_data[0] + 0 * comp_size, comp_… in test() 26361 …cpy(&xfb.m_expected_data[0] + 1 * type_size + 1 * comp_size, &goten_data[0] + 1 * comp_size, comp_… in test() 26364 …cpy(&xfb.m_expected_data[0] + 3 * type_size + 2 * comp_size, &chichi_data[0] + 2 * comp_size, comp… in test() 26365 …cpy(&xfb.m_expected_data[0] + 3 * type_size + 3 * comp_size, &chichi_data[0] + 3 * comp_size, comp… in test() 26368 …cpy(&xfb.m_expected_data[0] + 7 * type_size + 0 * comp_size, &vegeta_data[0] + 0 * comp_size, comp… in test() [all …]
|
/external/python/cpython2/Doc/tutorial/ |
D | stdlib2.rst | 150 crc32, comp_size, uncomp_size, filenamesize, extra_size = fields 156 print filename, hex(crc32), comp_size, uncomp_size 158 start += extra_size + comp_size # skip to the next header
|
/external/python/cpython3/Doc/tutorial/ |
D | stdlib2.rst | 152 crc32, comp_size, uncomp_size, filenamesize, extra_size = fields 158 print(filename, hex(crc32), comp_size, uncomp_size) 160 start += extra_size + comp_size # skip to the next header
|
/external/mesa3d/src/compiler/spirv/ |
D | spirv_to_nir.c | 924 uint32_t comp_size = glsl_get_bit_size(type->type) / 8; in vtn_type_layout_std430() local 925 *size_out = comp_size; in vtn_type_layout_std430() 926 *align_out = comp_size; in vtn_type_layout_std430() 931 uint32_t comp_size = glsl_get_bit_size(type->type) / 8; in vtn_type_layout_std430() local 934 *size_out = comp_size * type->length, in vtn_type_layout_std430() 935 *align_out = comp_size * align_comps; in vtn_type_layout_std430()
|
/external/virglrenderer/src/ |
D | vrend_renderer.c | 6122 uint32_t comp_size; in vrend_renderer_transfer_write_iov() local 6127 comp_size = util_format_get_nblocks(res->base.format, info->box->width, in vrend_renderer_transfer_write_iov() 6167 glformat, comp_size, data); in vrend_renderer_transfer_write_iov() 6176 glformat, comp_size, data); in vrend_renderer_transfer_write_iov() 6189 glformat, comp_size, data); in vrend_renderer_transfer_write_iov() 6198 glformat, comp_size, data); in vrend_renderer_transfer_write_iov()
|