/external/webrtc/webrtc/base/ |
D | rollingaccumulator.h | 28 explicit RollingAccumulator(size_t max_count) in RollingAccumulator() argument 29 : samples_(max_count) { in RollingAccumulator() 35 size_t max_count() const { in max_count() function 55 if (count_ == max_count()) { in AddSample() 83 next_index_ = (next_index_ + 1) % max_count(); in AddSample() 103 max_ = std::max(max_, samples_[(next_index_ + i) % max_count()]); in ComputeMax() 116 min_ = std::min(min_, samples_[(next_index_ + i) % max_count()]); in ComputeMin() 133 const size_t max_size = max_count(); in ComputeWeightedMean()
|
/external/nanopb-c/tests/fixed_count/ |
D | fixed_count.proto | 9 repeated int32 data = 1 [(nanopb).max_count = 3, (nanopb).fixed_count = true]; 14 repeated Message1 data = 1 [(nanopb).max_count = 2, (nanopb).fixed_count = true]; 19 repeated Message2 data1 = 1 [(nanopb).max_count = 2, (nanopb).fixed_count = true]; 20 repeated Message2 data2 = 2 [(nanopb).max_count = 2, (nanopb).fixed_count = true];
|
/external/wpa_supplicant_8/wpa_supplicant/ |
D | blacklist.c | 126 int max_count = 0; in wpa_blacklist_clear() local 131 if (e->count > max_count) in wpa_blacklist_clear() 132 max_count = e->count; in wpa_blacklist_clear() 140 wpa_s->extra_blacklist_count += max_count; in wpa_blacklist_clear()
|
/external/python/cpython3/Lib/email/ |
D | headerregistry.py | 267 max_count = None variable in UnstructuredHeader 278 max_count = 1 variable in UniqueUnstructuredHeader 292 max_count = None variable in DateHeader 322 max_count = 1 variable in UniqueDateHeader 327 max_count = None variable in AddressHeader 382 max_count = 1 variable in UniqueAddressHeader 397 max_count = 1 variable in UniqueSingleAddressHeader 402 max_count = 1 variable in MIMEVersionHeader 442 max_count = 1 variable in ParameterizedMIMEHeader 504 max_count = 1 variable in ContentTransferEncodingHeader [all …]
|
/external/expat/tests/ |
D | structdata.c | 72 storage->max_count = 0; in StructData_Init() 83 if (storage->count == storage->max_count) { in StructData_AddItem() 86 storage->max_count += STRUCT_EXTENSION_COUNT; in StructData_AddItem() 88 storage->max_count * sizeof(StructDataEntry)); in StructData_AddItem()
|
/external/arm-trusted-firmware/include/lib/libfdt/ |
D | libfdt_env.h | 128 static inline size_t fdt_strnlen(const char *string, size_t max_count) in fdt_strnlen() argument 130 const char *p = memchr(string, 0, max_count); in fdt_strnlen() 131 return p ? p - string : max_count; in fdt_strnlen()
|
/external/u-boot/scripts/dtc/libfdt/ |
D | libfdt_env.h | 85 static inline size_t fdt_strnlen(const char *string, size_t max_count) in fdt_strnlen() argument 87 const char *p = memchr(string, 0, max_count); in fdt_strnlen() 88 return p ? p - string : max_count; in fdt_strnlen()
|
/external/u-boot/board/alliedtelesis/common/ |
D | gpio_hog.c | 12 int gpio_hog_list(struct gpio_desc *gpiod, int max_count, in gpio_hog_list() argument 26 gpio_name, gpiod, max_count, in gpio_hog_list()
|
/external/curl/tests/libtest/ |
D | lib582.c | 36 int max_count; /* max number of sockets that fit in allocated array */ member 82 sockets->max_count = 20; in addFd() 84 else if(sockets->count + 1 > sockets->max_count) { in addFd() 87 (sockets->max_count + 20)); in addFd() 93 sockets->max_count += 20; in addFd()
|
/external/OpenCL-CTS/test_conformance/clcpp/synchronization/ |
D | test_work_group_barrier.hpp | 40 size_t max_count; member 245 std::uniform_int_distribution<size_t> global_size_dis(1, options.max_count); in test() 314 options.max_count = num_elements; in AUTO_TEST_CASE() 324 options.max_count = num_elements; in AUTO_TEST_CASE()
|
D | test_sub_group_barrier.hpp | 40 size_t max_count; member 257 std::uniform_int_distribution<size_t> global_size_dis(1, options.max_count); in test() 326 options.max_count = num_elements; in AUTO_TEST_CASE() 336 options.max_count = num_elements; in AUTO_TEST_CASE()
|
/external/OpenCL-CTS/test_conformance/clcpp/attributes/ |
D | test_required_num_sub_groups.hpp | 34 size_t max_count; member 172 … clCreateBuffer(context, CL_MEM_READ_WRITE, sizeof(output_type) * options.max_count, NULL, &error); in test() 180 std::uniform_int_distribution<size_t> count_dis(1, options.max_count); in test() 274 options.max_count = num_elements; in AUTO_TEST_CASE()
|
/external/OpenCL-CTS/test_conformance/events/ |
D | test_event_dependencies.cpp | 53 int max_count = TEST_SIZE; in test_event_enqueue_wait_for_events_run_test() local 180 error |= clSetKernelArg(kernel1[0], 1, sizeof(max_count), &max_count); in test_event_enqueue_wait_for_events_run_test() 188 error |= clSetKernelArg(kernel1[i], 1, sizeof(max_count), &max_count); in test_event_enqueue_wait_for_events_run_test() 197 error |= clSetKernelArg(kernel2[i], 1, sizeof(max_count), &max_count); in test_event_enqueue_wait_for_events_run_test()
|
/external/grpc-grpc/third_party/nanopb/tests/common/ |
D | unittestproto.proto | 6 repeated int32 data = 1 [(nanopb).max_count = 10]; 10 repeated float data = 1 [(nanopb).max_count = 10];
|
/external/nanopb-c/tests/common/ |
D | unittestproto.proto | 6 repeated int32 data = 1 [(nanopb).max_count = 10]; 10 repeated float data = 1 [(nanopb).max_count = 10];
|
/external/mesa3d/src/gallium/drivers/vc4/ |
D | vc4_qir_lower_uniforms.c | 137 uint32_t max_count = 0; in qir_lower_uniforms() local 142 if (count > max_count) { in qir_lower_uniforms() 143 max_count = count; in qir_lower_uniforms()
|
/external/webrtc/webrtc/system_wrappers/source/spreadsortlib/ |
D | spreadsort.hpp | 192 size_t max_count = get_max_count(log_divisor, last - first); in spread_sort_rec() local 200 if(count < max_count) in spread_sort_rec() 279 size_t max_count = get_max_count(log_divisor, last - first); in spread_sort_rec() local 285 if(count < max_count) in spread_sort_rec() 327 size_t max_count = get_max_count(log_divisor, last - first); in spread_sort_rec() local 333 if(count < max_count) in spread_sort_rec() 520 size_t max_count = get_max_count(log_divisor, last - first); in positive_float_sort_rec() local 526 if(count < max_count) in positive_float_sort_rec() 571 size_t max_count = get_max_count(log_divisor, last - first); in negative_float_sort_rec() local 577 if(count < max_count) in negative_float_sort_rec() [all …]
|
/external/zlib/ |
D | trees.c | 713 int max_count = 7; /* max repeat count */ local 716 if (nextlen == 0) max_count = 138, min_count = 3; 721 if (++count < max_count && curlen == nextlen) { 735 max_count = 138, min_count = 3; 737 max_count = 6, min_count = 3; 739 max_count = 7, min_count = 4; 758 int max_count = 7; /* max repeat count */ local 762 if (nextlen == 0) max_count = 138, min_count = 3; 766 if (++count < max_count && curlen == nextlen) { 786 max_count = 138, min_count = 3; [all …]
|
/external/u-boot/lib/zlib/ |
D | trees.c | 721 int max_count = 7; /* max repeat count */ local 724 if (nextlen == 0) max_count = 138, min_count = 3; 729 if (++count < max_count && curlen == nextlen) { 743 max_count = 138, min_count = 3; 745 max_count = 6, min_count = 3; 747 max_count = 7, min_count = 4; 766 int max_count = 7; /* max repeat count */ local 770 if (nextlen == 0) max_count = 138, min_count = 3; 774 if (++count < max_count && curlen == nextlen) { 794 max_count = 138, min_count = 3; [all …]
|
/external/python/cpython2/Modules/zlib/ |
D | trees.c | 713 int max_count = 7; /* max repeat count */ local 716 if (nextlen == 0) max_count = 138, min_count = 3; 721 if (++count < max_count && curlen == nextlen) { 735 max_count = 138, min_count = 3; 737 max_count = 6, min_count = 3; 739 max_count = 7, min_count = 4; 758 int max_count = 7; /* max repeat count */ local 762 if (nextlen == 0) max_count = 138, min_count = 3; 766 if (++count < max_count && curlen == nextlen) { 786 max_count = 138, min_count = 3; [all …]
|
/external/v8/third_party/zlib/ |
D | trees.c | 713 int max_count = 7; /* max repeat count */ local 716 if (nextlen == 0) max_count = 138, min_count = 3; 721 if (++count < max_count && curlen == nextlen) { 735 max_count = 138, min_count = 3; 737 max_count = 6, min_count = 3; 739 max_count = 7, min_count = 4; 758 int max_count = 7; /* max repeat count */ local 762 if (nextlen == 0) max_count = 138, min_count = 3; 766 if (++count < max_count && curlen == nextlen) { 786 max_count = 138, min_count = 3; [all …]
|
/external/OpenCL-CTS/test_conformance/clcpp/workitems/ |
D | test_workitems.hpp | 32 size_t max_count; member 230 std::uniform_int_distribution<size_t> count_dis(1, options.max_count); in test_workitems() 400 options.max_count = num_elements; in AUTO_TEST_CASE() 410 options.max_count = num_elements; in AUTO_TEST_CASE()
|
/external/grpc-grpc/third_party/nanopb/tests/alltypes/ |
D | alltypes.options | 2 * max_count:5
|
/external/nanopb-c/tests/backwards_compatibility/ |
D | alltypes_legacy.options | 2 * max_count:5
|
/external/grpc-grpc/third_party/nanopb/tests/field_size_16/ |
D | alltypes.options | 2 * max_count:5
|