Searched defs:block_size (Results 1 - 25 of 129) sorted by relevance

123456

/external/v8/test/cctest/
H A Dtest-platform-linux.cc46 size_t block_size = 4 * KB; local
47 CHECK(vm->Commit(block_addr, block_size, false));
51 CHECK(vm->Uncommit(block_addr, block_size));
H A Dtest-platform-win32.cc45 size_t block_size = 4 * KB; local
46 CHECK(vm->Commit(block_addr, block_size, false));
50 CHECK(vm->Uncommit(block_addr, block_size));
/external/mesa3d/src/mesa/drivers/dri/i915/
H A Dintel_tex_format.c59 GLuint block_size; local
61 block_size = _mesa_get_format_bytes(mesaFormat);
64 return block_size / bw;
/external/mesa3d/src/mesa/drivers/dri/i965/
H A Dintel_tex_format.c59 GLuint block_size; local
61 block_size = _mesa_get_format_bytes(mesaFormat);
64 return block_size / bw;
/external/mesa3d/src/mesa/drivers/dri/intel/
H A Dintel_tex_format.c59 GLuint block_size; local
61 block_size = _mesa_get_format_bytes(mesaFormat);
64 return block_size / bw;
/external/protobuf/src/google/protobuf/io/
H A Dprinter_unittest.cc55 const int block_size = 100; local
56 ArrayOutputStream output(buffer, GOOGLE_ARRAYSIZE(buffer), block_size);
64 for (int block_size = 1; block_size < 512; block_size *= 2) {
65 ArrayOutputStream output(buffer, sizeof(buffer), block_size);
89 for (int block_size = 1; block_size < 512; block_size *= 2) {
90 ArrayOutputStream output(buffer, sizeof(buffer), block_size);
[all...]
/external/boringssl/src/crypto/digest/
H A Dinternal.h87 /* block_size contains the hash's native block size. */
88 unsigned block_size; member in struct:env_md_st
/external/regex-re2/util/
H A Darena.cc16 UnsafeArena::UnsafeArena(const size_t block_size) argument
17 : block_size_(block_size),
23 assert(block_size > kDefaultAlignment);
71 UnsafeArena::AllocatedBlock* UnsafeArena::AllocNewBlock(const size_t block_size) { argument
85 block->mem = reinterpret_cast<char*>(malloc(block_size));
86 block->size = block_size;
/external/vboot_reference/firmware/lib20/
H A Dmisc.c28 uint32_t block_size; local
59 block_size = kb->keyblock_size;
67 kb = vb2_workbuf_realloc(&wb, sizeof(*kb), block_size);
71 rv = vb2ex_read_resource(ctx, VB2_RES_FW_VBLOCK, 0, kb, block_size);
76 rv = vb2_verify_keyblock(kb, block_size, &root_key, &wb);
/external/libvpx/libvpx/vp9/encoder/x86/
H A Dvp9_error_intrin_avx2.c17 intptr_t block_size,
31 for (i = 0 ; i < block_size ; i+= 16) {
15 vp9_block_error_avx2(const int16_t *coeff, const int16_t *dqcoeff, intptr_t block_size, int64_t *ssz) argument
/external/mesa3d/src/gallium/auxiliary/util/
H A Du_slab.h65 unsigned block_size; member in struct:util_slab_mempool
H A Du_format_parse.py130 def block_size(self): member in class:Format
169 return is_pot(self.block_size())
190 if self.block_size() not in (8, 16, 32):
208 return self.block_size()/8
/external/squashfs-tools/squashfs-tools/
H A Dlzma_wrapper.c32 static int lzma_compress(void *strm, void *dest, void *src, int size, int block_size, argument
37 outlen = block_size - LZMA_HEADER_SIZE;
41 &props_size, 5, block_size, 3, 0, 2, 32, 1);
H A Dlz4_wrapper.c77 static void *lz4_dump_options(int block_size, int *size) argument
110 static int lz4_extract_options(int block_size, void *buffer, int size) argument
162 static int lz4_check_options(int block_size, void *buffer, int size) argument
224 int block_size, int *error)
229 res = LZ4_compressHC_limitedOutput(src, dest, size, block_size);
231 res = LZ4_compress_limitedOutput(src, dest, size, block_size);
223 lz4_compress(void *strm, void *dest, void *src, int size, int block_size, int *error) argument
H A Dlzma_xz_wrapper.c39 int block_size, int *error)
47 opt.dict_size = block_size;
56 strm.avail_out = block_size;
38 lzma_compress(void *dummy, void *dest, void *src, int size, int block_size, int *error) argument
/external/valgrind/none/tests/ppc32/
H A Ddata-cache-instructions.c21 int block_size, test_block_size = 4 * MAX_DCBZL_SZB, err; local
34 for (block_size = 0, p = rb; (p - rb) < test_block_size; p++)
36 block_size++;
37 assert(block_size == 16 || block_size == 32 || block_size == 64 || block_size == 128);
40 return block_size;
44 static void test_dcbzl_at(char *addr, char *buffer, int block_size) argument
48 /* Note: Assumption is that the length of buffer is three times the block_size
64 int block_size; local
[all...]
/external/valgrind/none/tests/ppc64/
H A Ddata-cache-instructions.c21 int block_size, test_block_size = 4 * MAX_DCBZL_SZB, err; local
34 for (block_size = 0, p = rb; (p - rb) < test_block_size; p++)
36 block_size++;
37 assert(block_size == 16 || block_size == 32 || block_size == 64 || block_size == 128);
40 return block_size;
44 static void test_dcbzl_at(char *addr, char *buffer, int block_size) argument
48 /* Note: Assumption is that the length of buffer is three times the block_size
64 int block_size; local
[all...]
/external/ceres-solver/include/ceres/
H A Dcost_function_to_functor.h735 const int32 block_size = parameter_block_sizes[j]; local
738 jacobian_blocks[j][i * block_size + k] * inputs[j][k].v;
/external/ceres-solver/internal/ceres/
H A Dblock_random_access_diagonal_matrix.cc73 const int block_size = blocks_[i]; local
76 for (int r = 0; r < block_size; ++r) {
77 for (int c = 0; c < block_size; ++c, ++pos) {
H A Dcompressed_col_sparse_matrix_utils.cc110 const int block_size = blocks[block_id]; local
112 for (int j = 0; j < block_size; ++j) {
H A Dschur_jacobi_preconditioner.cc115 const int block_size = block_size_[i]; local
116 ConstMatrixRef block(lhs_values, block_size, block_size);
118 VectorRef(y, block_size) =
122 .solve(ConstVectorRef(x, block_size));
124 x += block_size;
125 y += block_size;
126 lhs_values += block_size * block_size;
/external/e2fsprogs/misc/
H A De2undo.c97 int block_size; local
111 block_size = *(int *)tdb_data.dptr;
113 printf("Block size %d\n", block_size);
115 io_channel_set_blksize(channel, block_size);
/external/libvpx/libvpx/test/
H A Dpartial_idct_test.cc83 const int block_size = size * size; local
91 memset(dst1, 0, sizeof(*dst1) * block_size);
92 memset(dst2, 0, sizeof(*dst2) * block_size);
93 memset(test_coef_block1, 0, sizeof(*test_coef_block1) * block_size);
94 memset(test_coef_block2, 0, sizeof(*test_coef_block2) * block_size);
101 for (int j = 0; j < block_size; ++j)
104 for (int j = 0; j < block_size; ++j)
107 for (int j = 0; j < block_size; ++j) {
124 for (int j = 0; j < block_size; ++j) {
162 const int block_size local
[all...]
/external/vboot_reference/host/lib/
H A Dhost_common.c28 uint64_t block_size = signed_size + siglen_map[signing_key->algorithm]; local
35 h = (VbFirmwarePreambleHeader *)malloc(block_size);
39 Memset(h, 0, block_size);
46 h->preamble_size = block_size;
88 uint64_t block_size = signed_size + siglen_map[signing_key->algorithm]; local
94 if (block_size < desired_size)
95 block_size = desired_size;
98 h = (VbKernelPreambleHeader *)malloc(block_size);
102 Memset(h, 0, block_size);
108 h->preamble_size = block_size;
[all...]
H A Dhost_keyblock.c21 uint64_t block_size = (signed_size + SHA512_DIGEST_SIZE + local
30 h = (VbKeyBlockHeader*)malloc(block_size);
40 h->key_block_size = block_size;
82 uint64_t block_size = (signed_size + SHA512_DIGEST_SIZE + local
90 h = (VbKeyBlockHeader*)malloc(block_size);
103 h->key_block_size = block_size;

Completed in 650 milliseconds

123456