HomeSort by relevance Sort by last modified time
    Searched refs:min_count (Results 1 - 25 of 26) sorted by null

1 2

  /external/autotest/client/site_tests/hardware_Interrupt/
hardware_Interrupt.py 61 min_count=1):
73 if count < min_count:
75 'min_count %d' % (interrupt, count,
76 min_count))
  /external/mesa3d/src/gallium/drivers/ilo/core/
ilo_state_sbe.c 138 uint8_t min_count = 0; local
145 min_count = 16;
147 min_count = info->attr_count;
168 if (min_count < swizzle->attr + inputattr_facing + 1)
169 min_count = swizzle->attr + inputattr_facing + 1;
173 return min_count;
  /external/opencv/cv/src/
cvoptflowbm.cpp 192 int min_count = MIN( X_shift_count, Y_shift_count ); local
204 for( i = 0; i < min_count; i++ )
246 int xleft = -min_count * shiftSize.width;
249 for( i = min_count; i < Y_shift_count; i++ )
276 int yupper = -min_count * shiftSize.height;
279 for( i = min_count; i < X_shift_count; i++ )
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/zlib/
trees.c 716 int min_count = 4; /* min repeat count */ local
718 if (nextlen == 0) max_count = 138, min_count = 3;
725 } else if (count < min_count) {
737 max_count = 138, min_count = 3;
739 max_count = 6, min_count = 3;
741 max_count = 7, min_count = 4;
761 int min_count = 4; /* min repeat count */ local
764 if (nextlen == 0) max_count = 138, min_count = 3;
770 } else if (count < min_count) {
788 max_count = 138, min_count = 3;
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/zlib/
trees.c 718 int min_count = 4; /* min repeat count */ local
720 if (nextlen == 0) max_count = 138, min_count = 3;
727 } else if (count < min_count) {
739 max_count = 138, min_count = 3;
741 max_count = 6, min_count = 3;
743 max_count = 7, min_count = 4;
763 int min_count = 4; /* min repeat count */ local
766 if (nextlen == 0) max_count = 138, min_count = 3;
772 } else if (count < min_count) {
790 max_count = 138, min_count = 3;
    [all...]
  /external/pdfium/third_party/zlib_v128/
trees.c 716 int min_count = 4; /* min repeat count */ local
718 if (nextlen == 0) max_count = 138, min_count = 3;
725 } else if (count < min_count) {
737 max_count = 138, min_count = 3;
739 max_count = 6, min_count = 3;
741 max_count = 7, min_count = 4;
761 int min_count = 4; /* min repeat count */ local
764 if (nextlen == 0) max_count = 138, min_count = 3;
770 } else if (count < min_count) {
788 max_count = 138, min_count = 3
    [all...]
  /external/python/cpython2/Modules/zlib/
trees.c 716 int min_count = 4; /* min repeat count */ local
718 if (nextlen == 0) max_count = 138, min_count = 3;
725 } else if (count < min_count) {
737 max_count = 138, min_count = 3;
739 max_count = 6, min_count = 3;
741 max_count = 7, min_count = 4;
761 int min_count = 4; /* min repeat count */ local
764 if (nextlen == 0) max_count = 138, min_count = 3;
770 } else if (count < min_count) {
788 max_count = 138, min_count = 3
    [all...]
  /external/zlib/src/
trees.c 716 int min_count = 4; /* min repeat count */ local
718 if (nextlen == 0) max_count = 138, min_count = 3;
725 } else if (count < min_count) {
737 max_count = 138, min_count = 3;
739 max_count = 6, min_count = 3;
741 max_count = 7, min_count = 4;
761 int min_count = 4; /* min repeat count */ local
764 if (nextlen == 0) max_count = 138, min_count = 3;
770 } else if (count < min_count) {
788 max_count = 138, min_count = 3
    [all...]
  /external/syslinux/com32/lib/zlib/
trees.c 722 int min_count = 4; /* min repeat count */ local
724 if (nextlen == 0) max_count = 138, min_count = 3;
731 } else if (count < min_count) {
743 max_count = 138, min_count = 3;
745 max_count = 6, min_count = 3;
747 max_count = 7, min_count = 4;
767 int min_count = 4; /* min repeat count */ local
770 if (nextlen == 0) max_count = 138, min_count = 3;
776 } else if (count < min_count) {
794 max_count = 138, min_count = 3
    [all...]
  /art/runtime/mirror/
string.cc 340 int32_t min_count = (count_diff < 0) ? lhs_count : rhs_count; local
344 for (int32_t i = 0; i < min_count; ++i) {
354 for (int32_t i = 0; i < min_count; ++i) {
366 int32_t char_diff = MemCmp16(lhs_chars, rhs_chars, min_count);
  /toolchain/binutils/binutils-2.25/opcodes/
sparc-dis.c 437 int min_count = num_opcodes, max_count = 0;
442 if (hash_count[i] < min_count)
443 min_count = hash_count[i];
450 min_count, max_count, (double) total / HASH_SIZE);
  /external/llvm/utils/unittest/googletest/src/
gtest-port.cc 298 const size_t min_count = (repeat == '+') ? 1 : 0; local
306 if (i >= min_count && MatchRegexAtHead(regex, str + i)) {
  /external/protobuf/gtest/src/
gtest-port.cc 296 const size_t min_count = (repeat == '+') ? 1 : 0; local
304 if (i >= min_count && MatchRegexAtHead(regex, str + i)) {
  /external/swiftshader/third_party/LLVM/utils/unittest/googletest/
gtest-port.cc 298 const size_t min_count = (repeat == '+') ? 1 : 0; local
306 if (i >= min_count && MatchRegexAtHead(regex, str + i)) {
  /external/speex/libspeex/
preprocess.c 247 int min_count; /**< Number of frames processed so far */ member in struct:SpeexPreprocessState_
529 st->min_count=0;
690 if (st->min_count > min_range)
692 st->min_count = 0;
742 st->min_count++;
    [all...]
  /external/google-breakpad/src/testing/gtest/src/
gtest-port.cc 323 const size_t min_count = (repeat == '+') ? 1 : 0; local
331 if (i >= min_count && MatchRegexAtHead(regex, str + i)) {
  /external/mesa3d/src/gtest/src/
gtest-port.cc 323 const size_t min_count = (repeat == '+') ? 1 : 0; local
331 if (i >= min_count && MatchRegexAtHead(regex, str + i)) {
  /prebuilts/ndk/r11/sources/third_party/googletest/googletest/src/
gtest-port.cc 323 const size_t min_count = (repeat == '+') ? 1 : 0; local
331 if (i >= min_count && MatchRegexAtHead(regex, str + i)) {
  /prebuilts/ndk/r13/sources/third_party/googletest/googletest/src/
gtest-port.cc 323 const size_t min_count = (repeat == '+') ? 1 : 0; local
331 if (i >= min_count && MatchRegexAtHead(regex, str + i)) {
  /external/googletest/googletest/src/
gtest-port.cc 747 const size_t min_count = (repeat == '+') ? 1 : 0; local
755 if (i >= min_count && MatchRegexAtHead(regex, str + i)) {
    [all...]
  /external/libvpx/libvpx/third_party/googletest/src/src/
gtest-port.cc 747 const size_t min_count = (repeat == '+') ? 1 : 0; local
755 if (i >= min_count && MatchRegexAtHead(regex, str + i)) {
    [all...]
  /external/v8/testing/gtest/src/
gtest-port.cc 729 const size_t min_count = (repeat == '+') ? 1 : 0; local
737 if (i >= min_count && MatchRegexAtHead(regex, str + i)) {
    [all...]
  /external/vulkan-validation-layers/tests/gtest-1.7.0/src/
gtest-port.cc 706 const size_t min_count = (repeat == '+') ? 1 : 0; local
714 if (i >= min_count && MatchRegexAtHead(regex, str + i)) {
    [all...]
  /external/protobuf/gtest/fused-src/gtest/
gtest-all.cc     [all...]
  /external/fmtlib/test/
gmock-gtest-all.cc     [all...]

Completed in 2068 milliseconds

1 2