Searched refs:BO1 (Results 1 – 9 of 9) sorted by relevance
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/InstCombine/ |
D | InstCombineCompares.cpp | 3708 BinaryOperator *BO1 = dyn_cast<BinaryOperator>(Op1); in foldICmpBinOp() local 3709 if (!BO0 && !BO1) in foldICmpBinOp() 3731 if (BO1 && isa<OverflowingBinaryOperator>(BO1)) in foldICmpBinOp() 3734 (CmpInst::isUnsigned(Pred) && BO1->hasNoUnsignedWrap()) || in foldICmpBinOp() 3735 (CmpInst::isSigned(Pred) && BO1->hasNoSignedWrap()); in foldICmpBinOp() 3744 if (BO1 && BO1->getOpcode() == Instruction::Add) { in foldICmpBinOp() 3745 C = BO1->getOperand(0); in foldICmpBinOp() 3746 D = BO1->getOperand(1); in foldICmpBinOp() 3856 (BO0->hasOneUse() || BO1->hasOneUse()) && !I.isUnsigned()) in foldICmpBinOp() 3886 if (BO1 && BO1->getOpcode() == Instruction::Sub) { in foldICmpBinOp() [all …]
|
D | InstCombineVectorOps.cpp | 1430 Value *BO0 = BO->getOperand(0), *BO1 = BO->getOperand(1); in getAlternateBinop() local 1436 if (match(BO1, m_Constant(C))) { in getAlternateBinop() 1445 if (match(BO1, m_APInt(C)) && MaskedValueIsZero(BO0, *C, DL)) in getAlternateBinop() 1446 return { Instruction::Add, BO0, BO1 }; in getAlternateBinop()
|
D | InstCombineAndOrXor.cpp | 1427 BinaryOperator *BO1; in reassociateFCmps() local 1431 !match(Op1, m_BinOp(BO1)) || BO1->getOpcode() != Opcode) in reassociateFCmps() 1435 Value *BO10 = BO1->getOperand(0), *BO11 = BO1->getOperand(1), *Y; in reassociateFCmps()
|
/third_party/skia/third_party/externals/swiftshader/src/Device/ |
D | ETC_Decoder.cpp | 285 unsigned char BO1 : 1; member 563 int bo = extend_6to8bits(BO1 << 5 | BO2 << 3 | BO3a << 1 | BO3b); in decodePlanarBlock()
|
/third_party/skia/third_party/externals/swiftshader/src/Renderer/ |
D | ETC_Decoder.cpp | 286 unsigned char BO1 : 1; member 566 int bo = extend_6to8bits(BO1 << 5 | BO2 << 3 | BO3a << 1 | BO3b); in decodePlanarBlock()
|
/third_party/skia/third_party/externals/angle2/src/image_util/ |
D | loadimage_etc.cpp | 303 unsigned char BO1 : 1; member 646 extend_6to8bits(u.pblk.BO1 << 5 | u.pblk.BO2 << 3 | u.pblk.BO3a << 1 | u.pblk.BO3b); in decodePlanarBlock()
|
/third_party/flutter/skia/third_party/externals/angle2/src/image_util/ |
D | loadimage_etc.cpp | 303 unsigned char BO1 : 1; member 646 extend_6to8bits(u.pblk.BO1 << 5 | u.pblk.BO2 << 3 | u.pblk.BO3a << 1 | u.pblk.BO3b); in decodePlanarBlock()
|
/third_party/vk-gl-cts/framework/common/ |
D | tcuCompressedTexture.cpp | 767 const deUint8 BO1 = (deUint8)getBit(src, 48); in decompressETC2Block() local 774 const deUint8 BO = extend6To8((deUint8)((BO1 << 5) | (BO2 << 3) | BO3)); in decompressETC2Block()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/ |
D | LoopStrengthReduce.cpp | 2317 if (ConstantInt *BO1 = dyn_cast<ConstantInt>(BO->getOperand(1))) in OptimizeMax() local 2318 if (BO1->isOne() && SE.getSCEV(BO->getOperand(0)) == MaxRHS) in OptimizeMax() 2321 if (ConstantInt *BO1 = dyn_cast<ConstantInt>(BO->getOperand(1))) in OptimizeMax() local 2322 if (BO1->isOne() && SE.getSCEV(BO->getOperand(0)) == MaxRHS) in OptimizeMax()
|