Home
last modified time | relevance | path

Searched refs:aCount (Results 1 – 7 of 7) sorted by relevance

/external/icu/icu4j/demos/src/com/ibm/icu/dev/demo/translit/
DIntDiffer.java35 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/
DDiffer.java36 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/deqp/framework/delibs/depool/
DdePoolMultiSet.h218 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/
DPtrBuffer.h72 - (void)setCount:(NSUInteger)aCount;
DPtrBuffer.m167 - (void)setCount:(NSUInteger)aCount
169 count = aCount;
/external/dng_sdk/source/
Ddng_string.cpp413 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/
DInstrVisitor.java693 for (int a = 0, aCount = attributes.size (); a < aCount; ++ a) in visit()