Searched defs:max_count (Results 1 - 25 of 47) sorted by last modified time

12

/external/zlib/src/
H A Dtrees.c715 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
[all...]
/external/wpa_supplicant_8/wpa_supplicant/
H A Dblacklist.c126 int max_count = 0; local
131 if (e->count > max_count)
132 max_count = e->count;
140 wpa_s->extra_blacklist_count += max_count;
/external/webp/src/enc/
H A Dframe.c742 int max_count = (enc->mb_w_ * enc->mb_h_) >> 3; local
756 if (max_count < MIN_COUNT) max_count = MIN_COUNT;
770 int cnt = max_count;
784 cnt = max_count;
/external/strace/
H A Dipc.c200 unsigned long i, max_count; local
203 max_count = (max_strlen < count) ? max_strlen : count;
205 max_count = count;
207 if (!max_count) {
212 for (i = 0; i < max_count; ++i) {
233 if (i < max_count || max_count < count)
/external/qemu/android/utils/
H A Dstralloc.c298 const int max_count = 16; local
302 int count = size > max_count ? max_count : size;
314 count2 = 4 + 3*(max_count - count);
/external/qemu/distrib/zlib-1.2.8/
H A Dtrees.c715 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
[all...]
/external/protobuf/gtest/src/
H A Dgtest-port.cc288 const size_t max_count = (repeat == '?') ? 1 : local
293 for (size_t i = 0; i <= max_count; ++i) {
/external/pdfium/core/src/fxcodec/fx_zlib/zlib_v128/
H A Dfx_zlib_trees.c715 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
[all...]
/external/opencv/cv/src/
H A Dcvfeatureselect.cpp62 int max_count = 0; local
87 max_count = *corner_count;
136 if( max_count <= 0 )
211 if( ++count >= max_count )
H A Dcvhaar.cpp194 int max_count = 0; local
224 max_count = MAX( max_count, stage_classifier->count );
354 CV_CALL( ipp_features = (CvRect*)cvAlloc( max_count*3*sizeof(ipp_features[0]) ));
355 CV_CALL( ipp_weights = (float*)cvAlloc( max_count*3*sizeof(ipp_weights[0]) ));
356 CV_CALL( ipp_thresholds = (float*)cvAlloc( max_count*sizeof(ipp_thresholds[0]) ));
357 CV_CALL( ipp_val1 = (float*)cvAlloc( max_count*sizeof(ipp_val1[0]) ));
358 CV_CALL( ipp_val2 = (float*)cvAlloc( max_count*sizeof(ipp_val2[0]) ));
359 CV_CALL( ipp_counts = (int*)cvAlloc( max_count*sizeof(ipp_counts[0]) ));
H A Dcvhough.cpp1001 int max_count = R_THRESH; local
1038 if( (start_idx - j)*r_best >= max_count*r_cur ||
1039 (r_best < FLT_EPSILON && start_idx - j >= max_count) )
1042 max_count = start_idx - j;
1051 if( max_count > R_THRESH )
H A DmycvHaarDetectObjects.cpp176 int max_count = 0; local
206 max_count = MAX( max_count, stage_classifier->count );
336 CV_CALL( ipp_features = (CvRect*)cvAlloc( max_count*3*sizeof(ipp_features[0]) ));
337 CV_CALL( ipp_weights = (float*)cvAlloc( max_count*3*sizeof(ipp_weights[0]) ));
338 CV_CALL( ipp_thresholds = (float*)cvAlloc( max_count*sizeof(ipp_thresholds[0]) ));
339 CV_CALL( ipp_val1 = (float*)cvAlloc( max_count*sizeof(ipp_val1[0]) ));
340 CV_CALL( ipp_val2 = (float*)cvAlloc( max_count*sizeof(ipp_val2[0]) ));
341 CV_CALL( ipp_counts = (int*)cvAlloc( max_count*sizeof(ipp_counts[0]) ));
/external/opencv/cxcore/src/
H A Dcxpersistence.cpp2033 int count = 0, max_count = 4; local
2034 int attr_buf_size = (max_count*2 + 1)*sizeof(char*) + sizeof(CvAttrList);
2090 if( !last || count >= max_count )
/external/opencv/ml/include/
H A Dml.h1239 int max_count, max_buf_sz; member in class:CvANN_MLP
/external/opencv/ml/src/
H A Dmlem.cpp514 int max_count = 0; local
534 max_count = MAX( max_count, right - left );
536 CV_CALL( hdr = (CvMat*)cvAlloc( max_count*sizeof(hdr[0]) ));
537 CV_CALL( vec = (const void**)cvAlloc( max_count*sizeof(vec[0]) ));
539 for( i = 0; i < max_count; i++ )
/external/opencv/otherlibs/highgui/
H A Dgrfmt_sunras.cpp227 int max_count = (int)(line_end - tsrc); local
240 while( ++len1 < max_count );
295 int max_count = (int)(line_end - data); local
309 while( (max_count -= nch) > 0 );
/external/mesa3d/src/gallium/drivers/r300/
H A Dr300_render.c752 unsigned size, max_count, value; local
785 max_count = 1 + size / vb->stride;
786 result = MIN2(result, max_count);
809 unsigned max_count = r300_max_vertex_count(r300); local
811 if (!max_count) {
817 if (max_count == ~0) {
819 max_count = 0xffffff;
822 info.max_index = max_count - 1;
/external/mesa3d/src/gtest/src/
H A Dgtest-port.cc299 const size_t max_count = (repeat == '?') ? 1 : local
304 for (size_t i = 0; i <= max_count; ++i) {
/external/llvm/utils/unittest/googletest/src/
H A Dgtest-port.cc299 const size_t max_count = (repeat == '?') ? 1 : local
304 for (size_t i = 0; i <= max_count; ++i) {
/external/gtest/src/
H A Dgtest-port.cc325 const size_t max_count = (repeat == '?') ? 1 : local
330 for (size_t i = 0; i <= max_count; ++i) {
/external/e2fsprogs/e2fsck/
H A DproblemP.h19 int max_count; member in struct:e2fsck_problem
/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_allocator.h866 uptr max_count = SizeClassMap::MaxCached(class_id); local
877 if (b->count == max_count) {
929 // max_count will be zero, leading to check failure.
933 CHECK_NE(c->max_count, 0UL);
934 if (UNLIKELY(c->count == c->max_count))
952 uptr max_count; member in struct:__sanitizer::SizeClassAllocatorLocalCache::PerClass
959 if (per_class_[1].max_count)
963 c->max_count = 2 * SizeClassMap::MaxCached(i);
987 uptr cnt = Min(c->max_count / 2, c->count);
990 c->batch[i] = c->batch[i + c->max_count /
[all...]
/external/chromium_org/tools/gyp/test/actions/src/subdir1/
H A Dcounter.py21 max_count = int(sys.argv[2]) variable
22 if count > max_count:
23 count = max_count
/external/chromium_org/third_party/webrtc/base/
H A Drollingaccumulator.h27 explicit RollingAccumulator(size_t max_count) argument
28 : samples_(max_count) {
34 size_t max_count() const { function in class:rtc::RollingAccumulator
54 if (count_ == max_count()) {
82 next_index_ = (next_index_ + 1) % max_count();
102 max_ = _max(max_, samples_[(next_index_ + i) % max_count()]);
115 min_ = _min(min_, samples_[(next_index_ + i) % max_count()]);
132 const size_t max_size = max_count();
/external/chromium_org/third_party/openmax_dl/dl/sp/src/test/
H A Dtest_fft_time.c316 const int max_count = 10000000; local
318 count = (c > max_count) ? max_count : c;

Completed in 454 milliseconds

12