Home
last modified time | relevance | path

Searched refs:bCount (Results 1 – 3 of 3) sorted by relevance

/third_party/icu/icu4j/demos/src/com/ibm/icu/dev/demo/translit/
DIntDiffer.java40 b[bCount++] = bStr; in addB()
69 if (max > bCount) max = bCount; in checkMatch()
80 bTop = bCount; 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()
93 match = find(b, bCount-EQUALSIZE, bCount, a, maxSame, aCount); in checkMatch()
95 bTop = bCount-EQUALSIZE; in checkMatch()
99 if (aCount >= STACKSIZE || bCount >= STACKSIZE) { in checkMatch()
102 bCount = (bCount + maxSame) / 2; in checkMatch()
135 int newCount = bCount-bTop; in flush()
[all …]
/third_party/skia/tests/
DSkTBlockListTest.cpp183 static void run_concat_test(skiatest::Reporter* reporter, int aCount, int bCount) { in run_concat_test() argument
191 for (int i = 0; i < bCount; ++i) { in run_concat_test()
195 REPORTER_ASSERT(reporter, listA.count() == aCount && listB.count() == bCount); in run_concat_test()
196 REPORTER_ASSERT(reporter, C::gInstCnt == aCount + bCount); in run_concat_test()
200 REPORTER_ASSERT(reporter, listA.count() == aCount + bCount); in run_concat_test()
205 REPORTER_ASSERT(reporter, C::gInstCnt == aCount + bCount); in run_concat_test()
213 REPORTER_ASSERT(reporter, i == (aCount + bCount)); in run_concat_test()
217 static void run_concat_trivial_test(skiatest::Reporter* reporter, int aCount, int bCount) { in run_concat_trivial_test() argument
228 for (int i = 0; i < bCount; ++i) { in run_concat_trivial_test()
232 REPORTER_ASSERT(reporter, listA.count() == aCount && listB.count() == bCount); in run_concat_trivial_test()
[all …]
/third_party/vk-gl-cts/framework/delibs/depool/
DdePoolMultiSet.h217 int bCount = TYPENAME##HashIter_getValue(&iter); \
219 int count = deMax32(aCount, bCount); \
220 if (bCount && !TYPENAME##_setKeyCount(a, key, aCount + bCount)) \
236 int bCount = TYPENAME##_getKeyValue(b, key); \
237 int count = deMin32(aCount, bCount); \
264 int bCount = TYPENAME##HashIter_getValue(&iter); \
265 int count = aCount + bCount; \
281 int bCount = TYPENAME##_getKeyValue(b, key); \
282 int count = deMax32(0, aCount - bCount); \