Home
last modified time | relevance | path

Searched refs:valueBits (Results 1 – 11 of 11) sorted by relevance

/external/icu/icu4c/source/test/cintltst/
Dtrie2test.c112 const UTrie2 *trie, UTrie2ValueBits valueBits, in testTrieGetters() argument
133 if(valueBits==UTRIE2_16_VALUE_BITS) { in testTrieGetters()
144 if(valueBits==UTRIE2_16_VALUE_BITS) { in testTrieGetters()
154 if(valueBits==UTRIE2_16_VALUE_BITS) { in testTrieGetters()
181 if(valueBits==UTRIE2_16_VALUE_BITS) { in testTrieGetters()
194 if(valueBits==UTRIE2_16_VALUE_BITS) { in testTrieGetters()
229 if(valueBits==UTRIE2_16_VALUE_BITS) { in testTrieGetters()
249 if(valueBits==UTRIE2_16_VALUE_BITS) { in testTrieGetters()
271 const UTrie2 *trie, UTrie2ValueBits valueBits, in testTrieUTF16() argument
308 if(valueBits==UTRIE2_16_VALUE_BITS) { in testTrieUTF16()
[all …]
/external/icu/icu4c/source/common/
Dutrie2.cpp129 utrie2_openFromSerialized(UTrie2ValueBits valueBits, in utrie2_openFromSerialized() argument
144 valueBits<0 || UTRIE2_COUNT_VALUE_BITS<=valueBits in utrie2_openFromSerialized()
164 if(valueBits!=(UTrie2ValueBits)(header->options&UTRIE2_OPTIONS_VALUE_BITS_MASK)) { in utrie2_openFromSerialized()
178 if(valueBits==UTRIE2_16_VALUE_BITS) { in utrie2_openFromSerialized()
184 if(valueBits==UTRIE2_16_VALUE_BITS) { in utrie2_openFromSerialized()
214 switch(valueBits) { in utrie2_openFromSerialized()
239 utrie2_openDummy(UTrie2ValueBits valueBits, in utrie2_openDummy() argument
253 if(valueBits<0 || UTRIE2_COUNT_VALUE_BITS<=valueBits) { in utrie2_openDummy()
262 if(valueBits==UTRIE2_16_VALUE_BITS) { in utrie2_openDummy()
285 if(valueBits==UTRIE2_16_VALUE_BITS) { in utrie2_openDummy()
[all …]
Dutrie_swap.cpp103 UTrie2ValueBits valueBits; in utrie2_swap() local
125 valueBits=(UTrie2ValueBits)(trie.options&UTRIE2_OPTIONS_VALUE_BITS_MASK); in utrie2_swap()
129 valueBits<0 || UTRIE2_COUNT_VALUE_BITS<=valueBits || in utrie2_swap()
138 switch(valueBits) { in utrie2_swap()
165 switch(valueBits) { in utrie2_swap()
Dutrie2_builder.cpp1304 utrie2_freeze(UTrie2 *trie, UTrie2ValueBits valueBits, UErrorCode *pErrorCode) { in utrie2_freeze() argument
1319 valueBits<0 || UTRIE2_COUNT_VALUE_BITS<=valueBits in utrie2_freeze()
1329 if(valueBits!=frozenValueBits) { in utrie2_freeze()
1349 if(valueBits==UTRIE2_16_VALUE_BITS) { in utrie2_freeze()
1371 if(valueBits==UTRIE2_16_VALUE_BITS) { in utrie2_freeze()
1399 header->options=(uint16_t)valueBits; in utrie2_freeze()
1446 switch(valueBits) { in utrie2_freeze()
1475 newTrie->t3, UCPTRIE_TYPE_FAST, (UCPTrieValueWidth)valueBits, pErrorCode)); in utrie2_freeze()
Dutrie2.h103 utrie2_openFromSerialized(UTrie2ValueBits valueBits,
129 utrie2_openDummy(UTrie2ValueBits valueBits,
295 utrie2_freeze(UTrie2 *trie, UTrie2ValueBits valueBits, UErrorCode *pErrorCode);
/external/icu/android_icu4j/src/main/java/android/icu/impl/
DTrie2Writable.java1020 private void freeze(Trie2 dest, ValueWidth valueBits) { in freeze() argument
1036 if(valueBits==ValueWidth.BITS_16) { in freeze()
1056 if (valueBits==ValueWidth.BITS_16) { in freeze()
1081 dest.header.options = valueBits==ValueWidth.BITS_16 ? 0 : 1; in freeze()
1137 switch(valueBits) { in freeze()
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
DTrie2Writable.java1018 private void freeze(Trie2 dest, ValueWidth valueBits) { in freeze() argument
1034 if(valueBits==ValueWidth.BITS_16) { in freeze()
1054 if (valueBits==ValueWidth.BITS_16) { in freeze()
1079 dest.header.options = valueBits==ValueWidth.BITS_16 ? 0 : 1; in freeze()
1135 switch(valueBits) { in freeze()
/external/swiftshader/third_party/LLVM/lib/Support/
DAPFloat.cpp2599 unsigned int count, valueBits, shift, partsCount, outputDigits; in convertNormalToHexString() local
2616 valueBits = semantics->precision + 3; in convertNormalToHexString()
2617 shift = integerPartWidth - valueBits % integerPartWidth; in convertNormalToHexString()
2621 outputDigits = (valueBits - significandLSB () + 3) / 4; in convertNormalToHexString()
2633 bits = valueBits - hexDigits * 4; in convertNormalToHexString()
2645 count = (valueBits + integerPartWidth - 1) / integerPartWidth; in convertNormalToHexString()
/external/llvm/lib/Support/
DAPFloat.cpp2770 unsigned int count, valueBits, shift, partsCount, outputDigits; in convertNormalToHexString() local
2787 valueBits = semantics->precision + 3; in convertNormalToHexString()
2788 shift = integerPartWidth - valueBits % integerPartWidth; in convertNormalToHexString()
2792 outputDigits = (valueBits - significandLSB () + 3) / 4; in convertNormalToHexString()
2804 bits = valueBits - hexDigits * 4; in convertNormalToHexString()
2816 count = (valueBits + integerPartWidth - 1) / integerPartWidth; in convertNormalToHexString()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Support/
DAPFloat.cpp2674 unsigned int count, valueBits, shift, partsCount, outputDigits; in convertNormalToHexString() local
2691 valueBits = semantics->precision + 3; in convertNormalToHexString()
2692 shift = integerPartWidth - valueBits % integerPartWidth; in convertNormalToHexString()
2696 outputDigits = (valueBits - significandLSB () + 3) / 4; in convertNormalToHexString()
2708 bits = valueBits - hexDigits * 4; in convertNormalToHexString()
2720 count = (valueBits + integerPartWidth - 1) / integerPartWidth; in convertNormalToHexString()
/external/clang/lib/AST/
DItaniumMangle.cpp959 llvm::APInt valueBits = f.bitcastToAPInt(); in mangleFloat() local
960 unsigned numCharacters = (valueBits.getBitWidth() + 3) / 4; in mangleFloat()
973 = valueBits.getRawData()[digitBitIndex / llvm::integerPartWidth]; in mangleFloat()