Searched refs:firstSplitByteRangeIndex (Results 1 - 3 of 3) sorted by relevance

/external/icu/android_icu4j/src/main/java/android/icu/impl/coll/
H A DCollationSettings.java160 int firstSplitByteRangeIndex = rangesStart;
161 while(firstSplitByteRangeIndex < rangesLimit &&
162 (codesAndRanges[firstSplitByteRangeIndex] & 0xff0000) == 0) {
164 ++firstSplitByteRangeIndex;
166 if(firstSplitByteRangeIndex == rangesLimit) {
171 assert(table[codesAndRanges[firstSplitByteRangeIndex] >>> 24] == 0);
173 setReorderRanges(codesAndRanges, firstSplitByteRangeIndex,
174 rangesLimit - firstSplitByteRangeIndex);
207 int firstSplitByteRangeIndex = -1;
219 if(firstSplitByteRangeIndex <
[all...]
/external/icu/icu4c/source/i18n/
H A Dcollationsettings.cpp105 int32_t firstSplitByteRangeIndex = 0; local
106 while(firstSplitByteRangeIndex < rangesLength &&
107 (ranges[firstSplitByteRangeIndex] & 0xff0000) == 0) {
109 ++firstSplitByteRangeIndex;
111 if(firstSplitByteRangeIndex == rangesLength) {
117 U_ASSERT(table[ranges[firstSplitByteRangeIndex] >> 24] == 0);
119 reorderRanges = ranges + firstSplitByteRangeIndex;
120 reorderRangesLength = rangesLength - firstSplitByteRangeIndex;
158 int32_t firstSplitByteRangeIndex = -1; local
170 if(firstSplitByteRangeIndex <
[all...]
/external/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/
H A DCollationSettings.java158 int firstSplitByteRangeIndex = rangesStart;
159 while(firstSplitByteRangeIndex < rangesLimit &&
160 (codesAndRanges[firstSplitByteRangeIndex] & 0xff0000) == 0) {
162 ++firstSplitByteRangeIndex;
164 if(firstSplitByteRangeIndex == rangesLimit) {
169 assert(table[codesAndRanges[firstSplitByteRangeIndex] >>> 24] == 0);
171 setReorderRanges(codesAndRanges, firstSplitByteRangeIndex,
172 rangesLimit - firstSplitByteRangeIndex);
205 int firstSplitByteRangeIndex = -1;
217 if(firstSplitByteRangeIndex <
[all...]

Completed in 101 milliseconds