Home
last modified time | relevance | path

Searched refs:max_count (Results 1 - 25 of 39) sorted by relevance

12

/third_party/wpa_supplicant/wpa_supplicant-2.9/wpa_supplicant/
H A Dblacklist.c126 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()
/third_party/python/Lib/email/
H A Dheaderregistry.py185 The subclass should also make sure that a 'max_count' attribute is defined
262 max_count = None variable in UnstructuredHeader
273 max_count = 1 variable in UniqueUnstructuredHeader
287 max_count = None variable in DateHeader
324 max_count = 1 variable in UniqueDateHeader
329 max_count = None variable in AddressHeader
384 max_count = 1 variable in UniqueAddressHeader
399 max_count = 1 variable in UniqueSingleAddressHeader
404 max_count = 1 variable in MIMEVersionHeader
444 max_count variable in ParameterizedMIMEHeader
506 max_count = 1 global() variable in ContentTransferEncodingHeader
527 max_count = 1 global() variable in MessageIDHeader
[all...]
H A Dmessage.py426 max_count = self.policy.header_max_count(name)
427 if max_count:
433 if found >= max_count:
435 "in a message".format(max_count, name))
H A Dpolicy.py102 The implementation for this class returns the max_count attribute from
106 return self.header_factory[name].max_count
/third_party/libwebsockets/lib/misc/
H A Dlws-ring.c157 lws_ring_insert(struct lws_ring *ring, const void *src, size_t max_count) in lws_ring_insert() argument
167 if ((uint32_t)n > max_count * ring->element_len) in lws_ring_insert()
168 n = (int)(max_count * ring->element_len); in lws_ring_insert()
200 size_t max_count) in lws_ring_consume()
217 if ((size_t)n > max_count * ring->element_len) in lws_ring_consume()
218 n = (int)(max_count * ring->element_len); in lws_ring_consume()
199 lws_ring_consume(struct lws_ring *ring, uint32_t *tail, void *dest, size_t max_count) lws_ring_consume() argument
/third_party/skia/third_party/externals/expat/expat/tests/
H A Dstructdata.c70 storage->max_count = 0; in StructData_Init()
81 if (storage->count == storage->max_count) { in StructData_AddItem()
84 storage->max_count += STRUCT_EXTENSION_COUNT; in StructData_AddItem()
86 storage->max_count * sizeof(StructDataEntry)); in StructData_AddItem()
H A Dstructdata.h51 int max_count; /* Number of StructDataEntry items in `entries` */ member
/third_party/ffmpeg/libavfilter/
H A Daf_astats.c78 uint64_t min_count, max_count; member
176 p->max_count = 0; in reset_stats()
290 p->max_count = 1; in update_stat()
292 p->max_count++; in update_stat()
398 uint64_t mask = 0, imask = 0xFFFFFFFFFFFFFFFF, min_count = 0, max_count = 0, nb_samples = 0, noise_floor_count = 0; in set_metadata() local
436 max_count += p->max_count; in set_metadata()
473 set_meta(metadata, c + 1, "Flat_factor", "%f", LINEAR_TO_DB((p->min_runs + p->max_runs) / (p->min_count + p->max_count))); in set_metadata()
475 set_meta(metadata, c + 1, "Peak_count", "%f", (float)(p->min_count + p->max_count)); in set_metadata()
524 set_meta(metadata, 0, "Overall.Flat_factor", "%f", LINEAR_TO_DB((min_runs + max_runs) / (min_count + max_count))); in set_metadata()
652 uint64_t mask = 0, imask = 0xFFFFFFFFFFFFFFFF, min_count = 0, max_count = 0, nb_samples = 0, noise_floor_count = 0; print_stats() local
[all...]
/third_party/mesa3d/src/gallium/drivers/vc4/
H A Dvc4_qir_lower_uniforms.c137 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()
/third_party/curl/tests/libtest/
H A Dlib582.c38 int max_count; /* max number of sockets that fit in allocated array */ member
84 sockets->max_count = 20; in addFd()
86 else if(sockets->count + 1 > sockets->max_count) { in addFd()
89 (sockets->max_count + 20)); in addFd()
95 sockets->max_count += 20; in addFd()
H A Dlib530.c45 int max_count; /* max number of sockets that fit in allocated array */ member
92 sockets->max_count = 20; in addFd()
94 else if(sockets->count + 1 > sockets->max_count) { in addFd()
96 (sockets->max_count + 20)); in addFd()
101 sockets->max_count += 20; in addFd()
/third_party/skia/third_party/externals/abseil-cpp/absl/container/internal/
H A Dbtree.h523 // // TODO(ezb): make max_count use only 4 bits and record log2(capacity)
525 // field_type max_count;
527 // // The array of values. The capacity is `max_count` for leaf nodes and
530 // slot_type values[max_count];
560 /*position, start, finish, max_count*/ 4, in SizeWithNSlots()
594 // The node is internal (i.e. is not a leaf node) if and only if `max_count`
602 /*position, start, finish, max_count*/ 4, in LeafLayout()
608 /*position, start, finish, max_count*/ 4, in InternalLayout()
668 field_type max_count() const {
669 // Internal nodes have max_count
853 init_leaf(btree_node *parent, int max_count) init_leaf() argument
1101 field_type max_count = node_type::kInternalNodeMaxCount + 1; global() variable
1480 new_leaf_root_node(const int max_count) new_leaf_root_node() argument
[all...]
/third_party/libwebsockets/include/libwebsockets/
H A Dlws-ring.h137 * lws_ring_insert(): attempt to insert up to max_count elements from src
141 * \param max_count: the number of available elements at src
144 * maximum max_count. Returns the number of elements actually inserted.
147 lws_ring_insert(struct lws_ring *ring, const void *src, size_t max_count);
150 * lws_ring_consume(): attempt to copy out and remove up to max_count elements
156 * \param max_count: the number of available elements at src
159 * the perspective of the given tail, up to max_count. If dest is NULL, the
172 size_t max_count);
/third_party/node/deps/v8/third_party/zlib/
H A Dtrees.c713 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
[all...]
/third_party/node/deps/zlib/
H A Dtrees.c716 int max_count = 7; /* max repeat count */ in scan_tree() local
719 if (nextlen == 0) max_count = 138, min_count = 3; in scan_tree()
724 if (++count < max_count && curlen == nextlen) { in scan_tree()
738 max_count = 138, min_count = 3; in scan_tree()
740 max_count = 6, min_count = 3; in scan_tree()
742 max_count = 7, min_count = 4; in scan_tree()
757 int max_count = 7; /* max repeat count */ in send_tree() local
761 if (nextlen == 0) max_count = 138, min_count = 3; in send_tree()
765 if (++count < max_count && curlen == nextlen) { in send_tree()
785 max_count in send_tree()
[all...]
/third_party/libwebsockets/win32port/zlib/
H A Dtrees.c721 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
[all...]
/third_party/skia/third_party/externals/zlib/
H A Dtrees.c713 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
[all...]
/third_party/zlib/
H A Dtrees.c737 int max_count = 7; /* max repeat count */ in scan_tree() local
740 if (nextlen == 0) max_count = 138, min_count = 3; in scan_tree()
745 if (++count < max_count && curlen == nextlen) { in scan_tree()
759 max_count = 138, min_count = 3; in scan_tree()
761 max_count = 6, min_count = 3; in scan_tree()
763 max_count = 7, min_count = 4; in scan_tree()
779 int max_count = 7; /* max repeat count */ in send_tree() local
783 if (nextlen == 0) max_count = 138, min_count = 3; in send_tree()
787 if (++count < max_count && curlen == nextlen) { in send_tree()
807 max_count in send_tree()
[all...]
/third_party/vulkan-loader/tests/
H A Dloader_debug_ext_tests.cpp240 uint32_t max_count = 5; in TEST_F() local
242 ASSERT_EQ(env->vulkan_functions.vkEnumeratePhysicalDevices(inst, &max_count, devices.data()), VK_INCOMPLETE); in TEST_F()
265 uint32_t max_count = 5; in TEST_F() local
267 ASSERT_EQ(env->vulkan_functions.vkEnumeratePhysicalDevices(inst, &max_count, devices.data()), VK_INCOMPLETE); in TEST_F()
655 uint32_t max_count = 5; in TEST_F() local
657 ASSERT_EQ(env->vulkan_functions.vkEnumeratePhysicalDevices(inst, &max_count, devices.data()), VK_INCOMPLETE); in TEST_F()
688 uint32_t max_count = 5; in TEST_F() local
690 ASSERT_EQ(env->vulkan_functions.vkEnumeratePhysicalDevices(inst, &max_count, devices.data()), VK_INCOMPLETE); in TEST_F()
719 uint32_t max_count = 5; in TEST_F() local
721 ASSERT_EQ(env->vulkan_functions.vkEnumeratePhysicalDevices(inst, &max_count, device in TEST_F()
[all...]
/third_party/mesa3d/src/gallium/drivers/r300/
H A Dr300_render.c750 unsigned size, max_count, value; in r300_max_vertex_count() local
783 max_count = 1 + size / vb->stride; in r300_max_vertex_count()
784 result = MIN2(result, max_count); in r300_max_vertex_count()
825 unsigned max_count = r300_max_vertex_count(r300); in r300_draw_vbo() local
827 if (!max_count) { in r300_draw_vbo()
833 if (max_count == ~0) { in r300_draw_vbo()
835 max_count = 0xffffff; in r300_draw_vbo()
838 info.max_index = max_count - 1; in r300_draw_vbo()
/third_party/ffmpeg/libavcodec/
H A Dvp9prob.c30 int max_count, int update_factor) in adapt_prob()
37 update_factor = FASTDIV(update_factor * FFMIN(ct, max_count), max_count); in adapt_prob()
29 adapt_prob(uint8_t *p, unsigned ct0, unsigned ct1, int max_count, int update_factor) adapt_prob() argument
/third_party/backends/backend/
H A Dhp5590_cmds.h161 unsigned int *max_count);
H A Dhp5590_cmds.c754 unsigned int *max_count) in hp5590_read_max_scan_count()
759 hp5590_cmds_assert (max_count != NULL); in hp5590_read_max_scan_count()
774 *max_count = 0; in hp5590_read_max_scan_count()
775 memcpy (max_count, max_scan_count, sizeof (max_scan_count)); in hp5590_read_max_scan_count()
777 DBG (DBG_proc, "Max scan count %u\n", *max_count); in hp5590_read_max_scan_count()
752 hp5590_read_max_scan_count(SANE_Int dn, enum proto_flags proto_flags, unsigned int *max_count) hp5590_read_max_scan_count() argument
/third_party/skia/third_party/externals/libwebp/src/enc/
H A Dframe_enc.c779 int max_count = (enc->mb_w_ * enc->mb_h_) >> 3; in VP8EncTokenLoop() local
793 if (max_count < MIN_COUNT) max_count = MIN_COUNT; in VP8EncTokenLoop()
807 int cnt = max_count; in VP8EncTokenLoop()
821 cnt = max_count; in VP8EncTokenLoop()
/third_party/exfatprogs/exfat2img/
H A Dexfat2img.c238 uint64_t max_count; in dump_directory() local
250 max_count = DIV_ROUND_UP(inode->size, exfat->clus_size); in dump_directory()
270 if (*out_clus_count >= max_count) in dump_directory()

Completed in 39 milliseconds

12