Home
last modified time | relevance | path

Searched refs:max_block_size (Results 1 – 19 of 19) sorted by relevance

/external/mesa3d/src/gallium/drivers/ilo/
Dilo_screen.c191 uint64_t max_block_size[3]; in ilo_get_compute_param() member
229 val.max_block_size[0] = 1024; in ilo_get_compute_param()
230 val.max_block_size[1] = 1024; in ilo_get_compute_param()
231 val.max_block_size[2] = 1024; in ilo_get_compute_param()
233 ptr = &val.max_block_size; in ilo_get_compute_param()
234 size = sizeof(val.max_block_size); in ilo_get_compute_param()
/external/protobuf/src/google/protobuf/
Darena.cc119 size_t start_block_size, size_t max_block_size) { in NewBlock() argument
124 if (size > max_block_size) size = max_block_size; in NewBlock()
224 b = NewBlock(me, b, n, options_.start_block_size, options_.max_block_size); in SlowAlloc()
Darena.h97 size_t max_block_size; member
142 max_block_size(kDefaultMaxBlockSize), in ArenaOptions()
905 size_t start_block_size, size_t max_block_size);
Darena_unittest.cc1207 options.max_block_size = 8192; in TEST()
/external/e2fsprogs/e2fsck/
Dpass2.c908 size_t max_block_size; in check_dir_block() local
1104 max_block_size = inline_data_size - EXT4_MIN_INLINE_DATA_SIZE; in check_dir_block()
1106 if (max_block_size == 0) in check_dir_block()
1109 max_block_size = EXT4_MIN_INLINE_DATA_SIZE; in check_dir_block()
1112 max_block_size = fs->blocksize - de_csum_size; in check_dir_block()
1131 if (max_block_size - offset < EXT2_DIR_ENTRY_HEADER_LEN) in check_dir_block()
1137 if ((offset + rec_len > max_block_size) || in check_dir_block()
1167 max_block_size - offset - EXT2_DIR_ENTRY_HEADER_LEN, in check_dir_block()
1173 max_block_size); in check_dir_block()
1180 max_block_size - offset - rec_len, in check_dir_block()
[all …]
/external/mesa3d/src/gallium/state_trackers/clover/core/
Ddevice.hpp71 std::vector<size_t> max_block_size() const;
Ddevice.cpp194 device::max_block_size() const { in max_block_size() function in device
Dkernel.cpp45 w.resize(q.device().max_block_size().size(), x); in pad_vector()
124 q.device().max_threads_per_block(), q.device().max_block_size(), in optimal_block_size()
/external/eigen/unsupported/Eigen/CXX11/src/Tensor/
DTensorDeviceThreadPool.h200 const Index max_block_size = in parallelFor() local
224 if (coarser_block_size > max_block_size) { in parallelFor()
/external/mesa3d/src/gallium/state_trackers/clover/api/
Ddevice.cpp117 buf.as_scalar<cl_uint>() = dev.max_block_size().size(); in clGetDeviceInfo()
121 buf.as_vector<size_t>() = dev.max_block_size(); in clGetDeviceInfo()
Dkernel.cpp230 if (dims < 1 || dims > q.device().max_block_size().size()) in validate_grid_size()
258 any_of(greater(), block_size, q.device().max_block_size())) in validate_block_size()
/external/syslinux/com32/lib/zlib/
Ddeflate.c1469 ulg max_block_size = 0xffff; local
1472 if (max_block_size > s->pending_buf_size - 5) {
1473 max_block_size = s->pending_buf_size - 5;
1495 max_start = s->block_start + max_block_size;
/external/pdfium/third_party/zlib_v128/
Ddeflate.c1570 ulg max_block_size = 0xffff; in deflate_stored() local
1573 if (max_block_size > s->pending_buf_size - 5) { in deflate_stored()
1574 max_block_size = s->pending_buf_size - 5; in deflate_stored()
1596 max_start = s->block_start + max_block_size; in deflate_stored()
/external/python/cpython2/Modules/zlib/
Ddeflate.c1571 ulg max_block_size = 0xffff; local
1574 if (max_block_size > s->pending_buf_size - 5) {
1575 max_block_size = s->pending_buf_size - 5;
1597 max_start = s->block_start + max_block_size;
/external/zlib/src/
Ddeflate.c1571 ulg max_block_size = 0xffff; local
1574 if (max_block_size > s->pending_buf_size - 5) {
1575 max_block_size = s->pending_buf_size - 5;
1597 max_start = s->block_start + max_block_size;
/external/brotli/enc/
Dencode.c1136 size_t max_block_size; in BrotliCompressBufferQuality10() local
1149 max_block_size = (size_t)1 << params.lgblock; in BrotliCompressBufferQuality10()
1177 BROTLI_MIN(size_t, metablock_end - block_start, max_block_size); in BrotliCompressBufferQuality10()
/external/libvpx/libvpx/vp9/encoder/
Dvp9_encodeframe.c2591 BLOCK_SIZE *max_block_size, in get_sb_partition_size_range() argument
2605 *max_block_size = VPXMAX(*max_block_size, sb_type); in get_sb_partition_size_range()
2623 BLOCK_SIZE *max_block_size) { in rd_auto_partition_range() argument
2691 *max_block_size = max_size; in rd_auto_partition_range()
/external/protobuf/ruby/ext/google/protobuf_c/
Dupb.c5297 a->next_block_size = UPB_MIN(block_size * 2, a->max_block_size); in upb_arena_allocblock()
5345 a->max_block_size = 16384; in upb_arena_init()
Dupb.h635 size_t max_block_size; variable