Searched refs:valueBits (Results 1 – 9 of 9) sorted by relevance
/external/icu/icu4c/source/common/ |
D | utrie2.cpp | 130 utrie2_openFromSerialized(UTrie2ValueBits valueBits, in utrie2_openFromSerialized() argument 145 valueBits<0 || UTRIE2_COUNT_VALUE_BITS<=valueBits in utrie2_openFromSerialized() 165 if(valueBits!=(UTrie2ValueBits)(header->options&UTRIE2_OPTIONS_VALUE_BITS_MASK)) { in utrie2_openFromSerialized() 179 if(valueBits==UTRIE2_16_VALUE_BITS) { in utrie2_openFromSerialized() 185 if(valueBits==UTRIE2_16_VALUE_BITS) { in utrie2_openFromSerialized() 212 switch(valueBits) { in utrie2_openFromSerialized() 237 utrie2_openDummy(UTrie2ValueBits valueBits, in utrie2_openDummy() argument 251 if(valueBits<0 || UTRIE2_COUNT_VALUE_BITS<=valueBits) { in utrie2_openDummy() 260 if(valueBits==UTRIE2_16_VALUE_BITS) { in utrie2_openDummy() 283 if(valueBits==UTRIE2_16_VALUE_BITS) { in utrie2_openDummy() [all …]
|
D | utrie2_builder.cpp | 1251 utrie2_freeze(UTrie2 *trie, UTrie2ValueBits valueBits, UErrorCode *pErrorCode) { in utrie2_freeze() argument 1266 valueBits<0 || UTRIE2_COUNT_VALUE_BITS<=valueBits in utrie2_freeze() 1276 if(valueBits!=frozenValueBits) { in utrie2_freeze() 1296 if(valueBits==UTRIE2_16_VALUE_BITS) { in utrie2_freeze() 1318 if(valueBits==UTRIE2_16_VALUE_BITS) { in utrie2_freeze() 1346 header->options=(uint16_t)valueBits; in utrie2_freeze() 1393 switch(valueBits) { in utrie2_freeze()
|
D | utrie2.h | 101 utrie2_openFromSerialized(UTrie2ValueBits valueBits, 127 utrie2_openDummy(UTrie2ValueBits valueBits, 293 utrie2_freeze(UTrie2 *trie, UTrie2ValueBits valueBits, UErrorCode *pErrorCode);
|
/external/icu/icu4c/source/test/cintltst/ |
D | trie2test.c | 111 const UTrie2 *trie, UTrie2ValueBits valueBits, in testTrieGetters() argument 132 if(valueBits==UTRIE2_16_VALUE_BITS) { in testTrieGetters() 143 if(valueBits==UTRIE2_16_VALUE_BITS) { in testTrieGetters() 153 if(valueBits==UTRIE2_16_VALUE_BITS) { in testTrieGetters() 180 if(valueBits==UTRIE2_16_VALUE_BITS) { in testTrieGetters() 193 if(valueBits==UTRIE2_16_VALUE_BITS) { in testTrieGetters() 228 if(valueBits==UTRIE2_16_VALUE_BITS) { in testTrieGetters() 248 if(valueBits==UTRIE2_16_VALUE_BITS) { in testTrieGetters() 270 const UTrie2 *trie, UTrie2ValueBits valueBits, in testTrieUTF16() argument 307 if(valueBits==UTRIE2_16_VALUE_BITS) { in testTrieUTF16() [all …]
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/ |
D | Trie2Writable.java | 1018 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/icu/android_icu4j/src/main/java/android/icu/impl/ |
D | Trie2Writable.java | 1020 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/swiftshader/third_party/LLVM/lib/Support/ |
D | APFloat.cpp | 2599 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/ |
D | APFloat.cpp | 2770 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/clang/lib/AST/ |
D | ItaniumMangle.cpp | 959 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()
|