Searched refs:aCount (Results 1 – 5 of 5) sorted by relevance
/third_party/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 …]
|
/third_party/skia/tests/ |
D | SkTBlockListTest.cpp | 183 static void run_concat_test(skiatest::Reporter* reporter, int aCount, int bCount) { in run_concat_test() argument 188 for (int i = 0; i < aCount; ++i) { in run_concat_test() 192 listB.emplace_back(aCount + 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 225 for (int i = 0; i < aCount; ++i) { in run_concat_trivial_test() [all …]
|
/third_party/vk-gl-cts/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); \
|
/third_party/skia/third_party/externals/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()
|
/third_party/rust/crates/bindgen/bindgen-tests/tests/ |
D | stylo.hpp | 44818 index_type aCount) const in First() 44820 …rtionConditionType<decltype(aCount <= size())>::isValid, "invalid assertion condition"); if ((__bu… in First() 44821 return { data(), aCount }; in First() 44828 index_type aCount) const in Last() 44830 …rtionConditionType<decltype(aCount <= size())>::isValid, "invalid assertion condition"); if ((__bu… in Last() 44831 return { data() + (size() - aCount), aCount }; in Last() 46182 size_t aCount) in assertNoOverlap() argument 46217 static inline void maybeSwapInPlace(T* aPtr, size_t aCount) in maybeSwapInPlace() argument 46224 for (size_t i = 0; i < aCount; i++) { in maybeSwapInPlace() 46234 static void copyAndSwapTo(void* aDest, const T* aSrc, size_t aCount) in copyAndSwapTo() argument [all …]
|