Searched refs:aCount (Results 1 – 8 of 8) sorted by relevance
/external/icu/icu4j/demos/src/com/ibm/icu/dev/demo/translit/ |
D | IntDiffer.java | 35 a[aCount++] = aStr; in addA() 68 int max = aCount; in checkMatch() 79 aTop = aCount; in checkMatch() 84 if (aCount - maxSame < EQUALSIZE || bCount - maxSame < EQUALSIZE) return; in checkMatch() 87 int match = find(a, aCount-EQUALSIZE, aCount, b, maxSame, bCount); in checkMatch() 89 aTop = aCount-EQUALSIZE; in checkMatch() 93 match = find(b, bCount-EQUALSIZE, bCount, a, maxSame, aCount); in checkMatch() 99 if (aCount >= STACKSIZE || bCount >= STACKSIZE) { in checkMatch() 101 aCount = (aCount + maxSame) / 2; in checkMatch() 128 int newCount = aCount-aTop; in flush() [all …]
|
/external/cldr/tools/java/org/unicode/cldr/util/ |
D | Differ.java | 36 a[aCount++] = aStr; in addA() 81 int max = aCount; in checkMatch() 94 aTop = aCount; in checkMatch() 100 if (aCount - maxSame < EQUALSIZE || bCount - maxSame < EQUALSIZE) return; in checkMatch() 103 int match = find(a, aCount - EQUALSIZE, aCount, b, maxSame, bCount); in checkMatch() 105 aTop = aCount - EQUALSIZE; in checkMatch() 110 match = find(b, bCount - EQUALSIZE, bCount, a, maxSame, aCount); in checkMatch() 117 if (aCount >= STACKSIZE || bCount >= STACKSIZE) { in checkMatch() 119 aCount = (aCount + maxSame) / 2; in checkMatch() 146 int newCount = aCount - aTop; in flush() [all …]
|
/external/skia/tests/ |
D | GrTBlockListTest.cpp | 170 static void run_concat_test(skiatest::Reporter* reporter, int aCount, int bCount) { in run_concat_test() argument 175 for (int i = 0; i < aCount; ++i) { in run_concat_test() 179 listB.emplace_back(aCount + i); in run_concat_test() 182 REPORTER_ASSERT(reporter, listA.count() == aCount && listB.count() == bCount); in run_concat_test() 183 REPORTER_ASSERT(reporter, C::gInstCnt == aCount + bCount); in run_concat_test() 187 REPORTER_ASSERT(reporter, listA.count() == aCount + bCount); in run_concat_test() 192 REPORTER_ASSERT(reporter, C::gInstCnt == aCount + bCount); in run_concat_test() 200 REPORTER_ASSERT(reporter, i == (aCount + bCount)); in run_concat_test() 204 static void run_concat_trivial_test(skiatest::Reporter* reporter, int aCount, int bCount) { in run_concat_trivial_test() argument 212 for (int i = 0; i < aCount; ++i) { in run_concat_trivial_test() [all …]
|
/external/deqp/framework/delibs/depool/ |
D | dePoolMultiSet.h | 218 int aCount = TYPENAME##_getKeyCount(a, key); \ 219 int count = deMax32(aCount, bCount); \ 220 if (bCount && !TYPENAME##_setKeyCount(a, key, aCount + bCount)) \ 235 int aCount = TYPENAME##HashIter_getValue(&iter); \ 237 int count = deMin32(aCount, bCount); \ 263 int aCount = TYPENAME##_getKeyValue(a, key); \ 265 int count = aCount + bCount; \ 280 int aCount = TYPENAME##HashIter_getValue(&iter); \ 282 int count = deMax32(0, aCount - bCount); \
|
/external/antlr/runtime/ObjC/Framework/ |
D | PtrBuffer.h | 72 - (void)setCount:(NSUInteger)aCount;
|
D | PtrBuffer.m | 167 - (void)setCount:(NSUInteger)aCount 169 count = aCount;
|
/external/dng_sdk/source/ |
D | dng_string.cpp | 413 int aCount = dngString.Get_UTF16 (sBuffer); in Extract_Multibyte() local 415 int dBufSize = aCount * 2 + 256; in Extract_Multibyte() 422 aCount, in Extract_Multibyte()
|
/external/emma/core/java12/com/vladium/emma/instr/ |
D | InstrVisitor.java | 693 for (int a = 0, aCount = attributes.size (); a < aCount; ++ a) in visit()
|