Searched defs:highValue (Results 1 - 6 of 6) sorted by relevance

/external/icu/icu4c/source/common/
H A Dutrie2.cpp337 /* highValue and reserved values */
353 /* highValue and reserved values */
698 uint32_t highValue; local
700 highValue=
705 highValue=trie->newTrie->data[trie->newTrie->dataLength-UTRIE2_DATA_GRANULARITY];
707 value=enumValue(context, highValue);
H A Dutrie2_builder.cpp897 findHighStart(UNewTrie2 *trie, uint32_t highValue) { argument
911 if(highValue==initialValue) {
926 /* the index-2 block is the same as the previous one, and filled with highValue */
933 if(highValue!=initialValue) {
942 /* the block is the same as the previous one, and filled with highValue */
949 if(highValue!=initialValue) {
956 if(value!=highValue) {
1175 uint32_t highValue; local
1180 highValue=utrie2_get32(trie, 0x10ffff);
1181 highStart=findHighStart(newTrie, highValue);
[all...]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
H A DTrie2Writable.java658 private int findHighStart(int highValue) { argument
666 if(highValue==initialValue) {
681 /* the index-2 block is the same as the previous one, and filled with highValue */
688 if(highValue!=initialValue) {
697 /* the block is the same as the previous one, and filled with highValue */
704 if(highValue!=initialValue) {
711 if(value!=highValue) {
926 int highValue;
929 highValue=get(0x10ffff);
930 localHighStart=findHighStart(highValue);
[all...]
/external/deqp/modules/gles2/functional/
H A Des2fShaderInvarianceTests.cpp470 const char* highValue; // !< highValue < maxValue member in struct:deqp::gles2::Functional::PrecisionCase
499 << FormatArgument("HIGH_VALUE", de::toString(precisions[precNdx].highValue))
/external/deqp/modules/gles3/functional/
H A Des3fShaderInvarianceTests.cpp472 const char* highValue; // !< highValue < maxValue member in struct:deqp::gles3::Functional::PrecisionCase
501 << FormatArgument("HIGH_VALUE", de::toString(precisions[precNdx].highValue))
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
H A DMeasureFormat.java381 * <br>Note: If the format doesn’t have enough decimals, or lowValue ≥ highValue,
386 * @param highValue high value in range
392 public final String formatMeasureRange(Measure lowValue, Measure highValue) { argument
394 if (!unit.equals(highValue.getUnit())) {
395 throw new IllegalArgumentException("Units must match: " + unit + " ≠ " + highValue.getUnit());
398 Number highNumber = highValue.getNumber();
451 // CurrencyAmount currencyHigh = (CurrencyAmount) highValue;

Completed in 224 milliseconds