Home
last modified time | relevance | path

Searched refs:insertBits (Results 1 – 10 of 10) sorted by relevance

/external/swiftshader/third_party/llvm-7.0/llvm/unittests/ADT/
DAPIntTest.cpp1768 TEST(APIntTest, insertBits) { in TEST() argument
1773 i31.insertBits(iSrc, 0); in TEST()
1778 i63.insertBits(iSrc, 4); in TEST()
1783 i120.insertBits(iSrc, 8); in TEST()
1788 i127.insertBits(iSrc, 48); in TEST()
1794 i128.insertBits(APInt(64, UINT64_MAX, true), 0); in TEST()
1795 i128.insertBits(APInt(64, UINT64_MAX, true), 64); in TEST()
1799 i256.insertBits(APInt(65, 0), 0); in TEST()
1800 i256.insertBits(APInt(69, 0), 64); in TEST()
1801 i256.insertBits(APInt(128, 0), 128); in TEST()
[all …]
/external/brotli/js/
Ddecode.js812 var /** !number */ insertBits = INSERT_LENGTH_N_BITS[insertCode];
813 …var /** !number */ insertExtra = ((insertBits <= 16) ? readFewBits(s, insertBits) : readManyBits(s…
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/X86/
DX86ShuffleDecodeConstantPool.cpp92 MaskBits.insertBits(cast<ConstantInt>(COp)->getValue(), BitOffset); in extractConstantMask()
DX86ISelLowering.cpp5547 MaskBits.insertBits(SrcEltBits[i], BitOffset); in getTargetConstantBitsFromNode()
/external/brotli/java/org/brotli/dec/
DDecode.java773 int insertBits = INSERT_LENGTH_N_BITS[insertCode]; in decompress() local
774 int insertExtra = BitReader.readBits(s, insertBits); in decompress()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/SelectionDAG/
DTargetLowering.cpp1453 KnownUndef.insertBits(SubUndef, i * NumSubElts); in SimplifyDemandedVectorElts()
1454 KnownZero.insertBits(SubZero, i * NumSubElts); in SimplifyDemandedVectorElts()
1475 BaseElts.insertBits(APInt::getNullValue(NumSubElts), SubIdx); in SimplifyDemandedVectorElts()
1479 KnownUndef.insertBits(SubUndef, SubIdx); in SimplifyDemandedVectorElts()
1480 KnownZero.insertBits(SubZero, SubIdx); in SimplifyDemandedVectorElts()
DSelectionDAG.cpp8542 SplatValue.insertBits(CN->getAPIntValue().zextOrTrunc(EltWidth), BitPos); in isConstantSplat()
8544 SplatValue.insertBits(CN->getValueAPF().bitcastToAPInt(), BitPos); in isConstantSplat()
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/ADT/
DAPInt.h1492 void insertBits(const APInt &SubBits, unsigned bitPosition);
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/SystemZ/
DSystemZISelLowering.cpp5726 SrcDemE.insertBits(DemandedElts, 0); in getDemandedSrcElements()
5735 SrcDemE.insertBits(DemandedElts, NumElts); in getDemandedSrcElements()
5757 SrcDemE.insertBits(DemEls, FirstIdx); in getDemandedSrcElements()
5760 SrcDemE.insertBits(DemEls, 0); in getDemandedSrcElements()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Support/
DAPInt.cpp344 void APInt::insertBits(const APInt &subBits, unsigned bitPosition) { in insertBits() function in APInt