Home
last modified time | relevance | path

Searched refs:createBinOp (Results 1 – 4 of 4) sorted by relevance

/external/deqp-deps/glslang/SPIRV/
DGlslangToSpv.cpp3419 … loadedId = builder.createBinOp(spv::OpINotEqual, boolType, loadedId, builder.makeUintConstant(0)); in accessChainLoad()
3425 …loadedId = builder.createBinOp(spv::OpINotEqual, bvecType, loadedId, makeSmearedConstant(builder.m… in accessChainLoad()
3451 … rvalue = builder.createBinOp(spv::OpINotEqual, boolType, rvalue, builder.makeUintConstant(0)); in accessChainStore()
3462 rvalue = builder.createBinOp(spv::OpINotEqual, bvecType, rvalue, in accessChainStore()
4857 spv::Id result = builder.createBinOp(binOp, typeId, left, right);
4931 spv::Id result = builder.createBinOp(binOp, typeId, left, right);
4965 …right = builder.createBinOp(spv::OpFDiv, resultType, builder.makeFpConstant(resultType, 1.0), righ…
4993 spv::Id result = builder.createBinOp(op, typeId, left, right);
5033 spv::Id result = builder.createBinOp(op, vecType, leftVec, rightVec);
5579 return builder.createBinOp(spv::OpINotEqual, destType, operand, zero);
[all …]
DSpvBuilder.cpp1556 Id Builder::createBinOp(Op opCode, Id typeId, Id left, Id right) in createBinOp() function in spv::Builder
2079 resultId = createBinOp(op, boolType, value1, value2); in createCompositeCompare()
2082 resultId = createBinOp(op, makeVectorType(boolType, numConstituents), value1, value2); in createCompositeCompare()
2108 …resultId = setPrecision(createBinOp(equal ? OpLogicalAnd : OpLogicalOr, boolType, resultId, subRes… in createCompositeCompare()
DSpvBuilder.h333 Id createBinOp(Op, Id typeId, Id operand1, Id operand2);
/external/llvm/lib/Transforms/Vectorize/
DSLPVectorizer.cpp4100 VectorizedTree = createBinOp(Builder, ReductionOpcode, VectorizedTree, in tryToReduce()
4111 VectorizedTree = createBinOp(Builder, ReductionOpcode, VectorizedTree, in tryToReduce()
4153 static Value *createBinOp(IRBuilder<> &Builder, unsigned Opcode, Value *L, in createBinOp() function in HorizontalReduction
4179 TmpVec = createBinOp(Builder, ReductionOpcode, LeftShuf, RightShuf, in emitReduction()
4186 TmpVec = createBinOp(Builder, ReductionOpcode, TmpVec, Shuf, "bin.rdx"); in emitReduction()