/kernel/linux/linux-6.6/drivers/platform/chrome/ |
H A D | cros_ec_ishtp.c | 93 * @max_size: Max size allocated for the @data buffer. If the received 103 size_t max_size; member 178 client_data->response.max_size = in_size; in ish_send() 279 if (data_len > client_data->response.max_size) { in process_recv() 282 data_len, client_data->response.max_size); in process_recv()
|
H A D | cros_ec_lightbar.c | 425 int extra_bytes, max_size, ret; in program_store() local 438 max_size = min(EC_LB_PROG_LEN, ec->ec_dev->max_request - extra_bytes); in program_store() 439 if (count > max_size) { in program_store() 441 (unsigned int)count, max_size); in program_store()
|
/kernel/linux/linux-6.6/drivers/firmware/efi/ |
H A D | runtime-wrappers.c | 108 u64 *max_size; member 289 args->QUERY_CAPSULE_CAPS.max_size, in efi_call_rts() 540 u64 *max_size, in virt_efi_query_capsule_caps() 551 max_size, reset_type); in virt_efi_query_capsule_caps() 538 virt_efi_query_capsule_caps(efi_capsule_header_t **capsules, unsigned long count, u64 *max_size, int *reset_type) virt_efi_query_capsule_caps() argument
|
/kernel/linux/linux-6.6/tools/lib/bpf/ |
H A D | ringbuf.c | 484 __u32 avail_size, total_size, max_size; in user_ring_buffer__reserve() local 500 max_size = rb->mask + 1; in user_ring_buffer__reserve() 501 avail_size = max_size - (prod_pos - cons_pos); in user_ring_buffer__reserve() 505 if (total_size > max_size) in user_ring_buffer__reserve()
|
/third_party/ffmpeg/libavcodec/ |
H A D | vaapi_h264.c | 84 int max_size; ///< Max number of reference frames. This is FF_ARRAY_ELEMS(VAPictureParameterBufferH264.ReferenceFrames) member 98 if (dpb->size >= dpb->max_size) in dpb_add() 132 dpb.max_size = FF_ARRAY_ELEMS(pic_param->ReferenceFrames); in fill_vaapi_ReferenceFrames() 134 for (i = 0; i < dpb.max_size; i++) in fill_vaapi_ReferenceFrames()
|
/third_party/ffmpeg/libavformat/ |
H A D | aiffdec.c | 396 int64_t max_size; in aiff_read_packet() local 400 max_size = aiff->data_end - avio_tell(s->pb); in aiff_read_packet() 401 if (max_size <= 0) in aiff_read_packet() 422 size = FFMIN(max_size, size); in aiff_read_packet()
|
H A D | voc.h | 51 AVStream *st, int max_size);
|
/third_party/alsa-utils/axfer/ |
H A D | container-riff-wave.c | 484 if (byte_count > cntr->max_size - total_byte_count) in write_riff_chunk_for_wave() 485 total_byte_count = cntr->max_size; in write_riff_chunk_for_wave() 553 .max_size = UINT32_MAX - 565 .max_size = UINT32_MAX -
|
/third_party/libbpf/src/ |
H A D | ringbuf.c | 543 __u32 avail_size, total_size, max_size; in user_ring_buffer__reserve() local 559 max_size = rb->mask + 1; in user_ring_buffer__reserve() 560 avail_size = max_size - (prod_pos - cons_pos); in user_ring_buffer__reserve() 564 if (total_size > max_size) in user_ring_buffer__reserve()
|
/third_party/json/include/nlohmann/detail/input/ |
H A D | json_sax.hpp | 233 if (JSON_HEDLEY_UNLIKELY(len != static_cast<std::size_t>(-1) && len > ref_stack.back()->max_size())) in start_object() 265 if (JSON_HEDLEY_UNLIKELY(len != static_cast<std::size_t>(-1) && len > ref_stack.back()->max_size())) in start_array() 423 if (ref_stack.back() && JSON_HEDLEY_UNLIKELY(len != static_cast<std::size_t>(-1) && len > ref_stack.back()->max_size())) in start_object() 493 if (ref_stack.back() && JSON_HEDLEY_UNLIKELY(len != static_cast<std::size_t>(-1) && len > ref_stack.back()->max_size())) in start_array()
|
/third_party/vixl/test/ |
H A D | test-invalset.cc | 165 size_t max_size = set.size(); in TEST() local 167 VIXL_CHECK(set.size() == max_size - 1); in TEST() 168 for (size_t i = 2; i <= max_size; i++) { in TEST() 170 VIXL_CHECK(set.size() == max_size - i); in TEST()
|
/kernel/linux/linux-6.6/arch/riscv/include/asm/ |
H A D | suspend.h | 48 int arch_hibernation_header_save(void *addr, unsigned int max_size);
|
/kernel/linux/linux-5.10/drivers/gpu/drm/ttm/ |
H A D | ttm_page_alloc_dma.c | 136 unsigned max_size; member 216 m->options.max_size = val; in ttm_pool_store() 243 val = m->options.max_size; in ttm_pool_show() 1064 if (pool->npages_free >= (_manager->options.max_size + in ttm_dma_unpopulate() 1066 npages = pool->npages_free - _manager->options.max_size; in ttm_dma_unpopulate() 1175 _manager->options.max_size = max_pages; in ttm_dma_page_alloc_init()
|
/kernel/linux/linux-6.6/drivers/net/ethernet/intel/ice/ |
H A D | ice_nvm.c | 831 u32 min_size = 0, max_size = ICE_AQC_NVM_MAX_OFFSET + 1; in ice_discover_flash_size() local 838 while ((max_size - min_size) > 1) { in ice_discover_flash_size() 839 u32 offset = (max_size + min_size) / 2; in ice_discover_flash_size() 849 max_size = offset; in ice_discover_flash_size() 860 ice_debug(hw, ICE_DBG_NVM, "Predicted flash size is %u bytes\n", max_size); in ice_discover_flash_size() 862 hw->flash.flash_size = max_size; in ice_discover_flash_size()
|
/third_party/mesa3d/src/gallium/frontends/vdpau/ |
H A D | mixer.c | 52 unsigned max_size, i; in vlVdpVideoMixerCreate() local 150 max_size = screen->get_param(screen, PIPE_CAP_MAX_TEXTURE_2D_SIZE); in vlVdpVideoMixerCreate() 151 if (vmixer->video_width < 48 || vmixer->video_width > max_size) { in vlVdpVideoMixerCreate() 153 vmixer->video_width, max_size); in vlVdpVideoMixerCreate() 156 if (vmixer->video_height < 48 || vmixer->video_height > max_size) { in vlVdpVideoMixerCreate() 158 vmixer->video_height, max_size); in vlVdpVideoMixerCreate()
|
/third_party/node/deps/v8/src/wasm/ |
H A D | wasm-module.cc | 306 base::Optional<uint32_t> max_size, in GetTypeForMemory() 317 if (max_size.has_value()) { in GetTypeForMemory() 319 factory->NewNumberFromUint(max_size.value()), NONE); in GetTypeForMemory() 329 base::Optional<uint32_t> max_size) { in GetTypeForTable() 343 if (max_size.has_value()) { in GetTypeForTable() 345 factory->NewNumberFromUint(max_size.value()), NONE); in GetTypeForTable() 305 GetTypeForMemory(Isolate* isolate, uint32_t min_size, base::Optional<uint32_t> max_size, bool shared) GetTypeForMemory() argument 327 GetTypeForTable(Isolate* isolate, ValueType type, uint32_t min_size, base::Optional<uint32_t> max_size) GetTypeForTable() argument
|
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/utils/ |
H A D | common.c | 935 size_t reslen, alen, i, max_size; in int_array_concat() local 940 max_size = (size_t) -1; in int_array_concat() 941 if (alen >= max_size - reslen) { in int_array_concat() 1002 size_t reslen, max_size; in int_array_add_unique() local 1010 max_size = (size_t) -1; in int_array_add_unique() 1011 if (reslen > max_size - 2) { in int_array_add_unique()
|
/foundation/bundlemanager/bundle_framework/interfaces/inner_api/appexecfwk_base/include/ |
H A D | parcel_macro.h | 64 if ((readSize > readAbleDataSize) || ((val)->max_size() < readSize)) { \
|
/foundation/graphic/graphic_2d/rosen/modules/render_service_base/src/transaction/ |
H A D | rs_occlusion_data.cpp | 31 if (len > readableSize || len > data->visibleData_.max_size()) { in Unmarshalling()
|
/kernel/linux/linux-5.10/drivers/staging/greybus/ |
H A D | gb-camera.h | 25 * @max_size: Maximum size of a frame in bytes. The camera module guarantees 36 unsigned int max_size; member
|
/kernel/linux/linux-6.6/drivers/staging/greybus/ |
H A D | gb-camera.h | 25 * @max_size: Maximum size of a frame in bytes. The camera module guarantees 36 unsigned int max_size; member
|
/third_party/json/docs/ |
H A D | Makefile | 40 check_output_portable: $(filter-out examples/meta.test examples/max_size.test examples/std_hash.test examples/basic_json__CompatibleType.test,$(EXAMPLES:.cpp=.test))
|
/third_party/node/deps/openssl/openssl/crypto/async/ |
H A D | async_local.h | 73 size_t max_size; member
|
/third_party/openssl/crypto/async/ |
H A D | async_local.h | 73 size_t max_size; member
|
/third_party/skia/third_party/externals/tint/fuzzers/tint_spirv_tools_fuzzer/ |
H A D | mutator_cache.h | 44 /// @param max_size - the maximum number of elements the cache can store. May 46 explicit MutatorCache(size_t max_size); 63 /// - if the number of elements in the cache is equal to `max_size`, the
|