HomeSort by relevance Sort by last modified time
    Searched defs:max_count (Results 1 - 22 of 22) sorted by null

  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/ext/pb_ds/
list_update_policy.hpp 90 #define PB_DS_CLASS_T_DEC template<size_t Max_Count, class Allocator>
91 #define PB_DS_CLASS_C_DEC counter_lu_policy<Max_Count, Allocator>
95 template<size_t Max_Count = 5, typename Allocator = std::allocator<char> >
104 max_count = Max_Count enumerator in enum:__gnu_pbds::counter_lu_policy::__anon19976
  /prebuilt/ndk/android-ndk-r5/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/
list_update_policy.hpp 90 #define PB_DS_CLASS_T_DEC template<size_t Max_Count, class Allocator>
91 #define PB_DS_CLASS_C_DEC counter_lu_policy<Max_Count, Allocator>
95 template<size_t Max_Count = 5, typename Allocator = std::allocator<char> >
104 max_count = Max_Count enumerator in enum:__gnu_pbds::counter_lu_policy::__anon24361
  /prebuilt/ndk/android-ndk-r6/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/
list_update_policy.hpp 90 #define PB_DS_CLASS_T_DEC template<size_t Max_Count, class Allocator>
91 #define PB_DS_CLASS_C_DEC counter_lu_policy<Max_Count, Allocator>
95 template<size_t Max_Count = 5, typename Allocator = std::allocator<char> >
104 max_count = Max_Count enumerator in enum:__gnu_pbds::counter_lu_policy::__anon25459
  /external/opencv/cv/src/
cvfeatureselect.cpp 62 int max_count = 0; local
87 max_count = *corner_count;
136 if( max_count <= 0 )
211 if( ++count >= max_count )
cvhough.cpp 1001 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) )
    [all...]
mycvHaarDetectObjects.cpp 176 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]) ));
    [all...]
cvhaar.cpp 194 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]) ));
    [all...]
  /external/opencv/otherlibs/highgui/
grfmt_sunras.cpp 227 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/protobuf/gtest/src/
gtest-port.cc 288 const size_t max_count = (repeat == '?') ? 1 : local
293 for (size_t i = 0; i <= max_count; ++i) {
  /external/chromium/chrome/browser/ui/toolbar/
back_forward_menu_model.cc 331 int max_count = controller.entry_count(); local
332 if (start_from < 0 || start_from >= max_count)
336 if (start_from < max_count - 1) {
361 for (int i = start_from + 1; i < max_count; ++i) {
367 return max_count - 1;
  /external/chromium/testing/gtest/src/
gtest-port.cc 299 const size_t max_count = (repeat == '?') ? 1 : local
304 for (size_t i = 0; i <= max_count; ++i) {
  /external/llvm/utils/unittest/googletest/
gtest-port.cc 299 const size_t max_count = (repeat == '?') ? 1 : local
304 for (size_t i = 0; i <= max_count; ++i) {
  /external/qemu/android/utils/
stralloc.c 298 const int max_count = 16; local
302 int count = size > max_count ? max_count : size;
314 count2 = 4 + 3*(max_count - count);
  /external/chromium/chrome/browser/ui/webui/
new_tab_ui.cc 543 const int max_count = 10; local
550 it != entries.end() && added_count < max_count; ++it) {
  /external/gtest/src/
gtest-port.cc 257 const size_t max_count = (repeat == '?') ? 1 : local
262 for (size_t i = 0; i <= max_count; ++i) {
  /frameworks/media/libvideoeditor/osal/src/
LVOSA_FileReader_optim.c 377 M4OSA_Int8 min_i,max_count; local
394 max_count = M4OSA_READBUFFER_NB;
403 max_count = i;
406 if(max_count<M4OSA_READBUFFER_NB)
408 M4OSA_TRACE2_2("DEAD BUFFER: %d, %d",max_count,apContext->buffer[max_count].nbFillSinceLastAcess);
409 return max_count;
    [all...]
  /external/opencv/ml/src/
mlem.cpp 514 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++ )
    [all...]
  /external/qemu/distrib/zlib-1.2.3/
trees.c 717 int max_count = 7; /* max repeat count */ local
720 if (nextlen == 0) max_count = 138, min_count = 3;
725 if (++count < max_count && curlen == nextlen) {
739 max_count = 138, min_count = 3;
741 max_count = 6, min_count = 3;
743 max_count = 7, min_count = 4;
762 int max_count = 7; /* max repeat count */ local
766 if (nextlen == 0) max_count = 138, min_count = 3;
770 if (++count < max_count && curlen == nextlen) {
790 max_count = 138, min_count = 3
    [all...]
  /external/zlib/
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/chromium/chrome/browser/history/
history_types.h 501 int max_count; member in struct:history::QueryOptions
  /external/opencv/ml/include/
ml.h 1239 int max_count, max_buf_sz; member in class:CvANN_MLP
    [all...]
  /external/opencv/cxcore/src/
cxpersistence.cpp 2033 int count = 0, max_count = 4; local
    [all...]

Completed in 5389 milliseconds