/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/strace/ |
D | ipc.c | 191 unsigned long i, max_count; in tprint_sembuf() local 194 max_count = (max_strlen < count) ? max_strlen : count; in tprint_sembuf() 196 max_count = count; in tprint_sembuf() 198 if (!max_count) { in tprint_sembuf() 203 for (i = 0; i < max_count; ++i) { in tprint_sembuf() 224 if (i < max_count || max_count < count) in tprint_sembuf()
|
/external/toybox/toys/posix/ |
D | od.c | 31 long max_count; 203 if (!TT.max_count) break; in do_od() 204 if (TT.max_count < len) len = TT.max_count; in do_od() 212 if (TT.max_count) TT.max_count -= len; in do_od()
|
/external/opencv/cv/src/ |
D | cvfeatureselect.cpp | 62 int max_count = 0; in CV_IMPLEMENT_QSORT() local 87 max_count = *corner_count; in CV_IMPLEMENT_QSORT() 136 if( max_count <= 0 ) in CV_IMPLEMENT_QSORT() 211 if( ++count >= max_count ) in CV_IMPLEMENT_QSORT()
|
D | cvhough.cpp | 1001 int max_count = R_THRESH; in icvHoughCirclesGradient() local 1038 if( (start_idx - j)*r_best >= max_count*r_cur || in icvHoughCirclesGradient() 1039 (r_best < FLT_EPSILON && start_idx - j >= max_count) ) in icvHoughCirclesGradient() 1042 max_count = start_idx - j; in icvHoughCirclesGradient() 1051 if( max_count > R_THRESH ) in icvHoughCirclesGradient()
|
/external/nanopb-c/tests/common/ |
D | unittestproto.proto | 4 repeated int32 data = 1 [(nanopb).max_count = 10]; 8 repeated float data = 1 [(nanopb).max_count = 10];
|
D | person.proto | 19 repeated PhoneNumber phone = 4 [(nanopb).max_count = 5];
|
/external/webrtc/src/system_wrappers/source/spreadsortlib/ |
D | spreadsort.hpp | 187 size_t max_count = get_max_count(log_divisor, last - first); in spread_sort_rec() local 195 if(count < max_count) in spread_sort_rec() 274 size_t max_count = get_max_count(log_divisor, last - first); in spread_sort_rec() local 280 if(count < max_count) in spread_sort_rec() 322 size_t max_count = get_max_count(log_divisor, last - first); in spread_sort_rec() local 328 if(count < max_count) in spread_sort_rec() 515 size_t max_count = get_max_count(log_divisor, last - first); in positive_float_sort_rec() local 521 if(count < max_count) in positive_float_sort_rec() 566 size_t max_count = get_max_count(log_divisor, last - first); in negative_float_sort_rec() local 572 if(count < max_count) in negative_float_sort_rec() [all …]
|
/external/zlib/src/ |
D | trees.c | 715 int max_count = 7; /* max repeat count */ local 718 if (nextlen == 0) max_count = 138, min_count = 3; 723 if (++count < max_count && curlen == nextlen) { 737 max_count = 138, min_count = 3; 739 max_count = 6, min_count = 3; 741 max_count = 7, min_count = 4; 760 int max_count = 7; /* max repeat count */ local 764 if (nextlen == 0) max_count = 138, min_count = 3; 768 if (++count < max_count && curlen == nextlen) { 788 max_count = 138, min_count = 3; [all …]
|
/external/pdfium/core/src/fxcodec/fx_zlib/zlib_v128/ |
D | fx_zlib_trees.c | 715 int max_count = 7; /* max repeat count */ in scan_tree() local 718 if (nextlen == 0) max_count = 138, min_count = 3; in scan_tree() 723 if (++count < max_count && curlen == nextlen) { in scan_tree() 737 max_count = 138, min_count = 3; in scan_tree() 739 max_count = 6, min_count = 3; in scan_tree() 741 max_count = 7, min_count = 4; in scan_tree() 760 int max_count = 7; /* max repeat count */ in send_tree() local 764 if (nextlen == 0) max_count = 138, min_count = 3; in send_tree() 768 if (++count < max_count && curlen == nextlen) { in send_tree() 788 max_count = 138, min_count = 3; in send_tree() [all …]
|
/external/opencv/otherlibs/highgui/ |
D | grfmt_sunras.cpp | 227 int max_count = (int)(line_end - tsrc); in ReadData() local 240 while( ++len1 < max_count ); in ReadData() 295 int max_count = (int)(line_end - data); in ReadData() local 309 while( (max_count -= nch) > 0 ); in ReadData()
|
/external/nanopb-c/tests/alltypes/ |
D | alltypes.options | 2 * max_count:5
|
/external/nanopb-c/tests/field_size_32/ |
D | alltypes.options | 2 * max_count:5
|
/external/nanopb-c/tests/field_size_16/ |
D | alltypes.options | 2 * max_count:5
|
/external/e2fsprogs/e2fsck/ |
D | problemP.h | 19 int max_count; member
|
D | problem.c | 1857 &ptr->max_count); in fix_problem() 1859 ptr->max_count, &ptr->max_count); in fix_problem() 1893 if (ptr->max_count && (ptr->count > ptr->max_count)) { in fix_problem() 1902 if (ptr->count == ptr->max_count + 1) { in fix_problem()
|
/external/nanopb-c/generator/ |
D | nanopb_generator.py | 169 self.max_count = None 179 self.max_count = field_options.max_count 192 if self.max_count is None: 195 self.array_decl = '[%d]' % self.max_count 370 return max(self.tag, self.max_size, self.max_count) 413 encsize *= self.max_count 435 self.max_count = 0
|
/external/mesa3d/src/gallium/drivers/r300/ |
D | r300_render.c | 752 unsigned size, max_count, value; in r300_max_vertex_count() local 785 max_count = 1 + size / vb->stride; in r300_max_vertex_count() 786 result = MIN2(result, max_count); in r300_max_vertex_count() 809 unsigned max_count = r300_max_vertex_count(r300); in r300_draw_vbo() local 811 if (!max_count) { in r300_draw_vbo() 817 if (max_count == ~0) { in r300_draw_vbo() 819 max_count = 0xffffff; in r300_draw_vbo() 822 info.max_index = max_count - 1; in r300_draw_vbo()
|
/external/lldb/examples/synthetic/ |
D | libcxx.py | 383 if steps > self.max_count: 411 if steps > self.max_count: 417 def __init__(self,node,max_count=0): argument 420 self.max_count = max_count 541 iterator = stdmap_iterator(self.root_node,max_count=self.num_children())
|
/external/compiler-rt/lib/sanitizer_common/ |
D | sanitizer_allocator.h | 870 uptr max_count = SizeClassMap::MaxCached(class_id); in PopulateFreeList() local 881 if (b->count == max_count) { in PopulateFreeList() 937 CHECK_NE(c->max_count, 0UL); in Deallocate() 938 if (UNLIKELY(c->count == c->max_count)) in Deallocate() 956 uptr max_count; member 963 if (per_class_[1].max_count) in InitCache() 967 c->max_count = 2 * SizeClassMap::MaxCached(i); in InitCache() 991 uptr cnt = Min(c->max_count / 2, c->count); in Drain() 994 c->batch[i] = c->batch[i + c->max_count / 2]; in Drain()
|
/external/squashfs-tools/squashfs-tools/ |
D | caches-queues-lists.c | 412 if(cache->count > cache->max_count) in _cache_get() 413 cache->max_count = cache->count; in _cache_get() 519 cache->max_count); in dump_cache()
|
/external/opencv/ml/src/ |
D | mlem.cpp | 514 int max_count = 0; in init_auto() local 534 max_count = MAX( max_count, right - left ); in init_auto() 536 CV_CALL( hdr = (CvMat*)cvAlloc( max_count*sizeof(hdr[0]) )); in init_auto() 537 CV_CALL( vec = (const void**)cvAlloc( max_count*sizeof(vec[0]) )); in init_auto() 539 for( i = 0; i < max_count; i++ ) in init_auto()
|
D | mlann_mlp.cpp | 237 max_count = 0; in create() 246 max_count = MAX( max_count, n ); in create() 294 min_buf_sz = 2*max_count; in predict() 320 double* data = buf + (j&1 ? max_count*dn0 : 0); in predict() 905 CV_CALL( buf = cvCreateMat( 1, (total + max_count)*2, CV_64F )); in train_backprop() 987 grad2->data.db = buf_ptr + max_count; in train_backprop() 1095 buf_sz = dcount0*(total + max_count)*2; in train_rprop() 1177 grad2->data.db = buf_ptr + max_count*dcount; in train_rprop()
|
/external/webp/src/enc/ |
D | frame.c | 742 int max_count = (enc->mb_w_ * enc->mb_h_) >> 3; in VP8EncTokenLoop() local 756 if (max_count < MIN_COUNT) max_count = MIN_COUNT; in VP8EncTokenLoop() 770 int cnt = max_count; in VP8EncTokenLoop() 784 cnt = max_count; in VP8EncTokenLoop()
|
/external/protobuf/gtest/src/ |
D | gtest-port.cc | 297 const size_t max_count = (repeat == '?') ? 1 : in MatchRepetitionAndRegexAtHead() local 302 for (size_t i = 0; i <= max_count; ++i) { in MatchRepetitionAndRegexAtHead()
|