Home
last modified time | relevance | path

Searched refs:shiftCount (Results 1 – 8 of 8) sorted by relevance

/external/icu/icu4c/source/common/
Dutrace.cpp131 int32_t shiftCount; in outputHexBytes() local
132 for (shiftCount=(charsToOutput-1)*4; shiftCount >= 0; shiftCount-=4) { in outputHexBytes()
133 char c = gHexChars[(val >> shiftCount) & 0xf]; in outputHexBytes()
/external/swiftshader/third_party/LLVM/lib/Support/
DAPInt.cpp2767 unsigned int n, shiftCount; in tcDivide() local
2772 shiftCount = tcMSB(rhs, parts) + 1; in tcDivide()
2773 if (shiftCount == 0) in tcDivide()
2776 shiftCount = parts * integerPartWidth - shiftCount; in tcDivide()
2777 n = shiftCount / integerPartWidth; in tcDivide()
2778 mask = (integerPart) 1 << (shiftCount % integerPartWidth); in tcDivide()
2781 tcShiftLeft(srhs, parts, shiftCount); in tcDivide()
2796 if (shiftCount == 0) in tcDivide()
2798 shiftCount--; in tcDivide()
/external/llvm/lib/Support/
DAPInt.cpp2699 unsigned int n, shiftCount; in tcDivide() local
2704 shiftCount = tcMSB(rhs, parts) + 1; in tcDivide()
2705 if (shiftCount == 0) in tcDivide()
2708 shiftCount = parts * integerPartWidth - shiftCount; in tcDivide()
2709 n = shiftCount / integerPartWidth; in tcDivide()
2710 mask = (integerPart) 1 << (shiftCount % integerPartWidth); in tcDivide()
2713 tcShiftLeft(srhs, parts, shiftCount); in tcDivide()
2728 if (shiftCount == 0) in tcDivide()
2730 shiftCount--; in tcDivide()
/external/swiftshader/third_party/llvm-subzero/lib/Support/
DAPInt.cpp2673 unsigned int n, shiftCount; in tcDivide() local
2678 shiftCount = tcMSB(rhs, parts) + 1; in tcDivide()
2679 if (shiftCount == 0) in tcDivide()
2682 shiftCount = parts * integerPartWidth - shiftCount; in tcDivide()
2683 n = shiftCount / integerPartWidth; in tcDivide()
2684 mask = (integerPart) 1 << (shiftCount % integerPartWidth); in tcDivide()
2687 tcShiftLeft(srhs, parts, shiftCount); in tcDivide()
2702 if (shiftCount == 0) in tcDivide()
2704 shiftCount--; in tcDivide()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Support/
DAPInt.cpp2521 unsigned shiftCount = tcMSB(rhs, parts) + 1; in tcDivide() local
2522 if (shiftCount == 0) in tcDivide()
2525 shiftCount = parts * APINT_BITS_PER_WORD - shiftCount; in tcDivide()
2526 unsigned n = shiftCount / APINT_BITS_PER_WORD; in tcDivide()
2527 WordType mask = (WordType) 1 << (shiftCount % APINT_BITS_PER_WORD); in tcDivide()
2530 tcShiftLeft(srhs, parts, shiftCount); in tcDivide()
2543 if (shiftCount == 0) in tcDivide()
2545 shiftCount--; in tcDivide()
/external/v8/src/compiler/
Dwasm-compiler.cc1135 uint32_t shiftCount; in BuildChangeEndiannessStore() local
1171 for (i = 0, shiftCount = valueSizeInBits - 8; i < valueSizeInBits / 2; in BuildChangeEndiannessStore()
1172 i += 8, shiftCount -= 16) { in BuildChangeEndiannessStore()
1178 DCHECK_LT(0, shiftCount); in BuildChangeEndiannessStore()
1179 DCHECK_EQ(0, (shiftCount + 8) % 16); in BuildChangeEndiannessStore()
1183 mcgraph()->Int64Constant(shiftCount)); in BuildChangeEndiannessStore()
1185 mcgraph()->Int64Constant(shiftCount)); in BuildChangeEndiannessStore()
1197 mcgraph()->Int32Constant(shiftCount)); in BuildChangeEndiannessStore()
1199 mcgraph()->Int32Constant(shiftCount)); in BuildChangeEndiannessStore()
1269 uint32_t shiftCount; in BuildChangeEndiannessLoad() local
[all …]
/external/v8/src/mips/
Dsimulator-mips.cc6131 int_fast16_t shiftCount = \ in Msa2RFInstrHelper2()
6133 aFrac <<= shiftCount; \ in Msa2RFInstrHelper2()
6134 aExp = -shiftCount; \ in Msa2RFInstrHelper2()
/external/v8/src/mips64/
Dsimulator-mips64.cc6362 int_fast16_t shiftCount = \ in Msa2RFInstrHelper2()
6364 aFrac <<= shiftCount; \ in Msa2RFInstrHelper2()
6365 aExp = -shiftCount; \ in Msa2RFInstrHelper2()