Home
last modified time | relevance | path

Searched refs:max_block_size (Results 1 - 23 of 23) sorted by relevance

/third_party/mbedtls/library/
H A Dsha3.c275 ctx->max_block_size = 1152 / 8; in mbedtls_sha3_starts()
279 ctx->max_block_size = 1088 / 8; in mbedtls_sha3_starts()
283 ctx->max_block_size = 832 / 8; in mbedtls_sha3_starts()
287 ctx->max_block_size = 576 / 8; in mbedtls_sha3_starts()
315 if ((ctx->index = ctx->index % ctx->max_block_size) == 0) { in mbedtls_sha3_update()
325 if ((ctx->index = (ctx->index + 8) % ctx->max_block_size) == 0) { in mbedtls_sha3_update()
334 if ((ctx->index = (ctx->index + 1) % ctx->max_block_size) == 0) { in mbedtls_sha3_update()
357 ABSORB(ctx, ctx->max_block_size - 1, 0x80); in mbedtls_sha3_finish()
364 if ((ctx->index = (ctx->index + 1) % ctx->max_block_size) == 0) { in mbedtls_sha3_finish()
/third_party/pulseaudio/src/modules/
H A Dmodule-null-source.c138 size_t max_block_size; in thread_func() local
149 max_block_size = pa_frame_align(pa_mempool_block_size_max(u->core->mempool), &u->source->sample_spec); in thread_func()
164 chunk.length = PA_MIN(max_block_size, chunk.length); in thread_func()
/third_party/protobuf/src/google/protobuf/
H A Darena_impl.h70 size_t max_block_size; member
79 max_block_size(options.max_block_size), in Options()
H A Dlite_arena_unittest.cc44 options.max_block_size = 128 * 1024; in LiteArenaTest()
H A Darena.h127 size_t max_block_size; member
151 max_block_size(kDefaultMaxBlockSize), in ArenaOptions()
H A Darena.cc114 size = std::min(2 * last_block->size(), options_.max_block_size); in NewBlock()
H A Darena_unittest.cc1195 options.max_block_size = 8192; in TEST()
1244 opt.start_block_size = opt.max_block_size = i; in TEST()
/third_party/mbedtls/include/mbedtls/
H A Dsha3.h54 uint16_t MBEDTLS_PRIVATE(max_block_size);
/third_party/ffmpeg/libavformat/
H A Dflacdec.c241 int max_block_size = AV_RB16(p->buf + 10); in flac_probe() local
249 max_block_size >= min_block_size && in flac_probe()
/third_party/mesa3d/src/gallium/frontends/clover/core/
H A Ddevice.hpp85 std::vector<size_t> max_block_size() const;
H A Ddevice.cpp69 dev.max_block_size().size() < 3 || in get_highest_supported_version()
395 device::max_block_size() const { in max_block_size() function in device
H A Dkernel.cpp58 w.resize(q.device().max_block_size().size(), x); in pad_vector()
148 q.device().max_threads_per_block(), q.device().max_block_size(), in optimal_block_size()
/third_party/backends/backend/
H A Dmustek_usb.c88 static SANE_Word max_block_size = (8 * 1024); variable
540 dev->chip->max_block_size = max_block_size; in attach()
768 if (strcmp (word, "max_block_size") == 0) in sane_init()
781 max_block_size = strtol (word, &end, 0); in sane_init()
784 DBG (3, "sane-init: config file line %d: max_block_size " in sane_init()
787 max_block_size = 8192; in sane_init()
792 "sane-init: config file line %d: max_block_size `%s' " in sane_init()
795 max_block_size = 8192; in sane_init()
800 "sane_init: config file line %d: max_block_size se in sane_init()
[all...]
H A Dmustek_usb_low.h188 SANE_Word max_block_size; member
H A Dmustek_usb_low.c2628 n = MIN (byte_count, chip->max_block_size); in usb_low_read_rows()
2652 n = MIN ((byte_count - (SANE_Word) bytes_total), chip->max_block_size); in usb_low_read_rows()
/third_party/mesa3d/src/gallium/frontends/clover/api/
H A Dkernel.cpp271 if (dims < 1 || dims > q.device().max_block_size().size()) in validate_grid_size()
296 any_of(greater(), block_size, q.device().max_block_size())) in validate_block_size()
H A Ddevice.cpp134 buf.as_scalar<cl_uint>() = dev.max_block_size().size(); in clGetDeviceInfo()
138 buf.as_vector<size_t>() = dev.max_block_size(); in clGetDeviceInfo()
/third_party/libwebsockets/win32port/zlib/
H A Ddeflate.c1515 ulg max_block_size = 0xffff; local
1518 if (max_block_size > s->pending_buf_size - 5) {
1519 max_block_size = s->pending_buf_size - 5;
1541 max_start = s->block_start + max_block_size;
/third_party/node/deps/brotli/c/enc/
H A Dencode.c1225 size_t max_block_size; in BrotliCompressBufferQuality10() local
1245 max_block_size = (size_t)1 << params.lgblock; in BrotliCompressBufferQuality10()
1277 BROTLI_MIN(size_t, metablock_end - block_start, max_block_size); in BrotliCompressBufferQuality10()
/third_party/pulseaudio/src/pulsecore/
H A Dresampler.c673 size_t history_bytes, max_block_size, out_size; in pa_resampler_prepare() local
687 max_block_size = pa_resampler_max_block_size(r); in pa_resampler_prepare()
695 current = PA_MIN(to_run, (int64_t) max_block_size); in pa_resampler_prepare()
/third_party/skia/third_party/externals/brotli/c/enc/
H A Dencode.c1225 size_t max_block_size; in BrotliCompressBufferQuality10() local
1245 max_block_size = (size_t)1 << params.lgblock; in BrotliCompressBufferQuality10()
1277 BROTLI_MIN(size_t, metablock_end - block_start, max_block_size); in BrotliCompressBufferQuality10()
/third_party/mesa3d/src/gallium/frontends/clover/nir/
H A Dinvocation.cpp533 NIR_PASS_V(nir, clover_lower_nir, args, dev.max_block_size().size(),
/third_party/protobuf/ruby/ext/google/protobuf_c/
H A Dupb.c2319 size_t max_block_size; member
2368 a->next_block_size = UPB_MIN(block_size * 2, a->max_block_size); in upb_arena_allocblock()
2433 a->max_block_size = 16384; in upb_arena_init()

Completed in 45 milliseconds