HomeSort by relevance Sort by last modified time
    Searched defs:maxCount (Results 1 - 25 of 48) sorted by null

1 2

  /external/icu/icu4c/source/i18n/
quant.h 31 uint32_t minCount, uint32_t maxCount);
119 uint32_t maxCount;
  /cts/tests/tests/opengl/libopengltest/
attach_shader_eleven.cpp 32 GLsizei maxCount = 10;
34 GLuint shaders[maxCount];
36 glGetAttachedShaders(program, maxCount,
attach_shader_four.cpp 27 GLsizei maxCount = 10;
29 GLuint shaders[maxCount];
31 glGetAttachedShaders(program, maxCount,
attach_shader_ten.cpp 31 GLsizei maxCount = 10;
33 GLuint shaders[maxCount];
35 glGetAttachedShaders(program, maxCount,
attach_shader_two.cpp 33 GLsizei maxCount = 10;
35 GLuint shaders[maxCount];
37 glGetAttachedShaders(program, maxCount,
attach_shader_five.cpp 31 GLsizei maxCount = 10;
33 GLuint shaders[maxCount];
35 glGetAttachedShaders(program, maxCount,
attach_shader_one.cpp 48 GLsizei maxCount = 10;
50 GLuint shaders[maxCount];
52 glGetAttachedShaders(program, maxCount,
color_one.cpp 72 GLsizei maxCount = 10;
74 GLuint shaders[maxCount];
76 glGetAttachedShaders(gProgram, maxCount,
  /device/generic/goldfish/libqemu/
test_guest_1.c 43 const int maxCount = 100;
66 for (count = 0; count < maxCount; count++) {
test_guest_2.c 56 int maxCount = 1000;
162 for (count = 0; count < maxCount; count++) {
237 printf("Total bytes: %g bytes\n", 1.0*maxCount*bufferSize);
238 printf("Bandwidth: %g MB/s\n", (maxCount*bufferSize/(1024.0*1024.0))/(time1 - time0) );
  /external/icu/android_icu4j/src/main/java/android/icu/text/
Quantifier.java 19 private int maxCount;
33 maxCount = theMaxCount;
45 while (count < maxCount) {
78 if (maxCount == 1) {
80 } else if (maxCount == MAX) {
84 } else if (minCount == 1 && maxCount == MAX) {
90 if (maxCount != MAX) {
91 result.append(Utility.hex(maxCount,1));
112 if (maxCount > 0) {
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
Quantifier.java 18 private int maxCount;
32 maxCount = theMaxCount;
44 while (count < maxCount) {
77 if (maxCount == 1) {
79 } else if (maxCount == MAX) {
83 } else if (minCount == 1 && maxCount == MAX) {
89 if (maxCount != MAX) {
90 result.append(Utility.hex(maxCount,1));
111 if (maxCount > 0) {
  /art/test/036-finalizer/src/
Main.java 118 public static final int maxCount = 1024;
119 public static boolean finalized[] = new boolean[maxCount];
127 for (int i = 0; i < maxCount; ++i) {
152 allocFinalizableObjects(FinalizeCounter.maxCount);
155 if (FinalizeCounter.getCount() != FinalizeCounter.maxCount) {
158 System.out.println("Finalized " + FinalizeCounter.getCount() + " / " + FinalizeCounter.maxCount);
169 System.out.println("After sleep finalized " + FinalizeCounter.getCount() + " / " + FinalizeCounter.maxCount);
  /external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/mdat/
MediaDataBox.java 86 long maxCount = (64 * 1024 * 1024) - (32 * 1024);
92 offset += from.transferTo(position + offset, Math.min(maxCount, count - offset), to);
  /frameworks/av/media/libnblog/
PerformanceAnalysis.cpp 114 // Since totalCount() > 0, mBins is not empty and maxCount > 0.
115 const unsigned maxCount = *std::max_element(mBins.begin(), mBins.end());
116 const size_t maxIncrements = log2(maxCount) + 1;
  /frameworks/av/services/audiopolicy/common/managerdefinitions/src/
AudioPort.cpp 223 uint32_t maxCount = MAX_MIXER_CHANNEL_COUNT;
228 maxCount = UINT_MAX;
237 if ((cnlCount > channelCount) && (cnlCount <= maxCount)) {
  /external/cldr/tools/cldr-unittest/src/org/unicode/cldr/unittest/
TestReferenceStringSearch.java 92 int maxCount = (int) Math.pow(2, 12);
97 for (int count = 1; count <= maxCount; count *= 2) {
  /external/deqp-deps/glslang/SPIRV/
SPVRemapper.cpp 80 static const int maxCount = 1<<30;
92 case spv::OpConstant: return range_t(3, maxCount);
99 static const int maxCount = 1<<30;
112 case spv::OpTypeFunction: return range_t(2, maxCount);
120 static const int maxCount = 1<<30;
125 case spv::OpConstantComposite: return range_t(3, maxCount);
    [all...]
  /external/grpc-grpc-java/core/src/main/java/io/grpc/internal/
MessageDeframer.java 445 private long maxCount;
507 if (count > maxCount) {
508 statsTraceCtx.inboundUncompressedSize(count - maxCount);
509 maxCount = count;
  /external/guava/guava-tests/test/com/google/common/hash/
HashTestUtils.java 256 int maxCount = (int) (4 * Math.log(2 * keyBits * hashBits) + 1);
272 if (count > maxCount) {
337 int maxCount = 20; // the probability of error here is miniscule
361 if (count > maxCount) {
  /dalvik/dx/src/com/android/dx/ssa/back/
FirstFitLocalCombiningAllocator.java     [all...]
  /external/cldr/tools/java/org/unicode/cldr/draft/
XLikelySubtags.java 493 int maxCount = Integer.MAX_VALUE;
495 int counter = maxCount;
508 counter = maxCount;
524 counter = maxCount;
537 counter = maxCount;
551 counter = maxCount;
  /external/deqp-deps/glslang/StandAlone/
StandAlone.cpp     [all...]
  /external/icu/icu4c/source/test/cintltst/
cbiapts.c 610 int32_t maxCount = sizeof(breaks); /* fail-safe test limit */
619 } while ((pos != UBRK_DONE || pos2 != UBRK_DONE) && maxCount-- > 0);
    [all...]
  /external/skia/src/utils/
SkShadowTessellator.cpp 778 int maxCount = GrPathUtils::quadraticPointCount(pts, kQuadTolerance);
779 fPointBuffer.setCount(maxCount);
782 kQuadTolerance, &target, maxCount);
803 int maxCount = GrPathUtils::cubicPointCount(pts, kCubicTolerance);
804 fPointBuffer.setCount(maxCount);
807 kCubicTolerance, &target, maxCount);
    [all...]

Completed in 1012 milliseconds

1 2