Home
last modified time | relevance | path

Searched refs:highValue (Results 1 – 13 of 13) sorted by relevance

/external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
DMutableCodePointTrie.java50 highValue = initialValue; in MutableCodePointTrie()
79 builder.highValue = highValue; in clone()
122 highValue = initialValue = origInitialValue; in clear()
138 return highValue; in get()
173 int value = highValue; in getRange()
238 if (maybeFilterValue(highValue, initialValue, nullValue, filter) != value) { in getRange()
418 private int highValue; field in MutableCodePointTrie
501 highValue &= mask; in maskValues()
638 match = index[i] == highValue; in findHighStart()
646 if (data[p + j] != highValue) { in findHighStart()
[all …]
DCodePointTrie.java475 int highValue = data.getFromIndex(di); in getRange() local
476 if (maybeFilterValue(highValue, this.nullValue, nullValue, filter) != value) { in getRange()
/external/icu/android_icu4j/src/main/java/android/icu/util/
DMutableCodePointTrie.java50 highValue = initialValue; in MutableCodePointTrie()
78 builder.highValue = highValue; in clone()
120 highValue = initialValue = origInitialValue; in clear()
135 return highValue; in get()
169 int value = highValue; in getRange()
234 if (maybeFilterValue(highValue, initialValue, nullValue, filter) != value) { in getRange()
411 private int highValue; field in MutableCodePointTrie
494 highValue &= mask; in maskValues()
631 match = index[i] == highValue; in findHighStart()
639 if (data[p + j] != highValue) { in findHighStart()
[all …]
DCodePointTrie.java465 int highValue = data.getFromIndex(di); in getRange() local
466 if (maybeFilterValue(highValue, this.nullValue, nullValue, filter) != value) { in getRange()
/external/icu/android_icu4j/src/main/java/android/icu/impl/
DTrie2Writable.java662 private int findHighStart(int highValue) { in findHighStart() argument
670 if(highValue==initialValue) { in findHighStart()
692 if(highValue!=initialValue) { in findHighStart()
708 if(highValue!=initialValue) { in findHighStart()
715 if(value!=highValue) { in findHighStart()
930 int highValue; in compactTrie() local
933 highValue=get(0x10ffff); in compactTrie()
934 localHighStart=findHighStart(highValue); in compactTrie()
937 highValue=errorValue; in compactTrie()
948 highStart, highValue, initialValue); in compactTrie()
[all …]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
DTrie2Writable.java660 private int findHighStart(int highValue) { in findHighStart() argument
668 if(highValue==initialValue) { in findHighStart()
690 if(highValue!=initialValue) { in findHighStart()
706 if(highValue!=initialValue) { in findHighStart()
713 if(value!=highValue) { in findHighStart()
928 int highValue; in compactTrie() local
931 highValue=get(0x10ffff); in compactTrie()
932 localHighStart=findHighStart(highValue); in compactTrie()
935 highValue=errorValue; in compactTrie()
946 highStart, highValue, initialValue); in compactTrie()
[all …]
/external/icu/icu4c/source/common/
Dumutablecptrie.cpp114 uint32_t highValue; member in __anon5a66f5c00111::MutableCodePointTrie
127 highStart(0), highValue(initialValue) in MutableCodePointTrie()
148 highStart(other.highStart), highValue(other.highValue) in MutableCodePointTrie()
259 highValue = initialValue = origInitialValue; in clear()
270 return highValue; in get()
298 uint32_t value = highValue; in getRange()
362 if (maybeFilterValue(highValue, initialValue, nullValue, in getRange()
557 highValue &= mask; in maskValues()
664 match = index[i] == highValue; in findHighStart()
672 if (p[j] != highValue) { in findHighStart()
[all …]
Dutrie2_builder.cpp942 findHighStart(UNewTrie2 *trie, uint32_t highValue) { in findHighStart() argument
956 if(highValue==initialValue) { in findHighStart()
978 if(highValue!=initialValue) { in findHighStart()
994 if(highValue!=initialValue) { in findHighStart()
1001 if(value!=highValue) { in findHighStart()
1230 uint32_t highValue; in compactTrie() local
1235 highValue=utrie2_get32(trie, 0x10ffff); in compactTrie()
1236 highStart=findHighStart(newTrie, highValue); in compactTrie()
1239 highValue=trie->errorValue; in compactTrie()
1250 (long)highStart, (long)highValue, (long)trie->initialValue); in compactTrie()
[all …]
Dutrie2.cpp596 uint32_t highValue; in enumEitherTrie() local
598 highValue= in enumEitherTrie()
603 highValue=trie->newTrie->data[trie->newTrie->dataLength-UTRIE2_DATA_GRANULARITY]; in enumEitherTrie()
605 value=enumValue(context, highValue); in enumEitherTrie()
Ducptrie.cpp403 uint32_t highValue = getValue(trie->data, valueWidth, di); in getRange() local
404 if (maybeFilterValue(highValue, trie->nullValue, nullValue, in getRange()
/external/deqp/modules/gles2/functional/
Des2fShaderInvarianceTests.cpp461 const char* highValue; // !< highValue < maxValue in init() member
490 << FormatArgument("HIGH_VALUE", de::toString(precisions[precNdx].highValue)) in init()
/external/deqp/modules/gles3/functional/
Des3fShaderInvarianceTests.cpp463 const char* highValue; // !< highValue < maxValue in init() member
492 << FormatArgument("HIGH_VALUE", de::toString(precisions[precNdx].highValue)) in init()
/external/swiftshader/third_party/LLVM/lib/CodeGen/SelectionDAG/
DSelectionDAGBuilder.cpp2330 const APInt& highValue = cast<ConstantInt>(I->High)->getValue(); in handleBitTestsSwitchCase() local
2333 uint64_t hi = (highValue - lowBound).getZExtValue(); in handleBitTestsSwitchCase()