/external/swiftshader/third_party/llvm-7.0/llvm/tools/verify-uselistorder/ |
verify-uselistorder.cpp | 228 for (const Value *Op : I.operands()) 229 if ((isa<Constant>(Op) && !isa<GlobalValue>(*Op)) || 230 isa<InlineAsm>(Op)) 231 map(Op); 241 for (const Value *Op : C->operands()) 242 map(Op); 262 dbgs() << " => use: op = " << U.getOperandNo() 391 for (Value *Op : C->operands()) 392 shuffleValueUseLists(Op, Gen, Seen) [all...] |
/external/swiftshader/third_party/llvm-7.0/llvm/utils/TableGen/ |
InstrInfoEmitter.cpp | 111 for (auto &Op : Inst.Operands) { 113 // either case into a list of operands for this op. 120 DagInit *MIOI = Op.MIOperandInfo; 124 OperandList.push_back(Op); 126 for (unsigned j = 0, e = Op.MINumOperands; j != e; ++j) { 127 OperandList.push_back(Op); 157 if (Op.Rec->isSubClassOf("PredicateOp")) 162 if (Op.Rec->isSubClassOf("OptionalDefOperand")) 167 assert(!Op.OperandType.empty() && "Invalid operand type."); 168 Res += Op.OperandType [all...] |
WebAssemblyDisassemblerEmitter.cpp | 85 for (auto &Op : CGI.Operands.OperandList) { 86 OS << " " << Op.OperandType << ",\n";
|
/external/tensorflow/tensorflow/core/kernels/ |
scatter_nd_op.h | 48 scatter_nd_op::UpdateOp op, int IXDIM> 67 scatter_nd_op::UpdateOp Op>
|
/art/runtime/interpreter/ |
safe_math.h | 32 // Perform signed arithmetic Op on 'a' and 'b' with defined wrapping behavior. 33 template<template <typename OpT> class Op, typename T1, typename T2> 41 return static_cast<biggest_T>(Op<unsigned_biggest_T>()(val1, val2));
|
/external/clang/unittests/AST/ |
PostOrderASTVisitor.cpp | 37 bool VisitBinaryOperator(BinaryOperator *Op) { 38 VisitedNodes.push_back(Op->getOpcodeStr());
|
/external/libcxx/test/std/numerics/numeric.ops/reduce/ |
reduce_init_op.pass.cpp | 14 // T reduce(InputIterator first, InputIterator last, T init, BinaryOperation op); 21 template <class Iter, class T, class Op> 23 test(Iter first, Iter last, T init, Op op, T x) 25 static_assert( std::is_same_v<T, decltype(std::reduce(first, last, init, op))>, "" ); 26 assert(std::reduce(first, last, init, op) == x);
|
/external/llvm/include/llvm/IR/ |
GlobalVariable.h | 125 return static_cast<Constant*>(Op<0>().get()); 129 return static_cast<Constant*>(Op<0>().get());
|
/external/llvm/lib/Transforms/ObjCARC/ |
ProvenanceAnalysisEvaluator.cpp | 63 for (auto &Op : I->operands()) 64 insertIfNamed(Values, Op);
|
/external/skqp/src/gpu/ |
GrRenderTargetContextPriv.h | 79 SkRegion::Op op, 91 SkRegion::Op op,
|
/external/swiftshader/third_party/LLVM/include/llvm/ |
GlobalVariable.h | 119 return static_cast<Constant*>(Op<0>().get()); 123 return static_cast<Constant*>(Op<0>().get());
|
/external/swiftshader/third_party/LLVM/include/llvm/MC/ |
MCExpr.h | 238 Opcode Op; 242 : MCExpr(MCExpr::Unary), Op(_Op), Expr(_Expr) {} 248 static const MCUnaryExpr *Create(Opcode Op, const MCExpr *Expr, 268 Opcode getOpcode() const { return Op; } 310 Opcode Op; 314 : MCExpr(MCExpr::Binary), Op(_Op), LHS(_LHS), RHS(_RHS) {} 320 static const MCBinaryExpr *Create(Opcode Op, const MCExpr *LHS, 400 Opcode getOpcode() const { return Op; }
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Analysis/ |
ScalarEvolutionNormalization.cpp | 52 [&](const SCEV *Op) { return visit(Op); });
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/ObjCARC/ |
ProvenanceAnalysisEvaluator.cpp | 63 for (auto &Op : I->operands()) 64 insertIfNamed(Values, Op);
|
/external/tensorflow/tensorflow/java/src/main/java/org/tensorflow/op/core/ |
Gradients.java | 16 package org.tensorflow.op.core; 23 import org.tensorflow.op.Op; 24 import org.tensorflow.op.Operands; 25 import org.tensorflow.op.Scope; 26 import org.tensorflow.op.annotation.Operator; 50 public class Gradients implements Op, Iterable<Operand<?>> {
|
/build/soong/finder/fs/ |
fs.go | 259 Op: "read", 270 Op: "read", 278 Op: "read", 301 Op: "open", 308 Op: "open", 315 Op: "open", 337 Op: "stat", 482 Op: "stat", 529 Op: "read", 563 Op: "move" [all...] |
/external/llvm/lib/CodeGen/SelectionDAG/ |
SelectionDAG.cpp | 164 for (const SDValue &Op : N->op_values()) { 165 if (Op.isUndef()) 177 if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Op)) { 180 } else if (ConstantFPSDNode *CFPN = dyn_cast<ConstantFPSDNode>(Op)) { 197 for (const SDValue &Op : N->op_values()) { 198 if (Op.isUndef()) 200 if (!isa<ConstantSDNode>(Op)) 210 for (const SDValue &Op : N->op_values()) { 211 if (Op.isUndef()) 213 if (!isa<ConstantFPSDNode>(Op)) [all...] |
/external/clang/lib/StaticAnalyzer/Core/ |
SVals.cpp | 196 BinaryOperator::Opcode Op, 199 svalBuilder.getBasicValueFactory().evalAPSInt(Op, getValue(), R.getValue()); 222 BinaryOperator::Opcode Op, 225 assert(BinaryOperator::isComparisonOp(Op) || Op == BO_Sub); 227 const llvm::APSInt *X = BasicVals.evalAPSInt(Op, getValue(), R.getValue());
|
/external/libchrome/base/numerics/ |
safe_math_shared_impl.h | 207 typename ResultType<CLASS##OP_NAME##Op, L, R, Args...>::type> \ 209 return CL_ABBR##MathOp<CLASS##OP_NAME##Op, L, R, Args...>(lhs, rhs, \ 213 #define BASE_NUMERIC_ARITHMETIC_OPERATORS(CLASS, CL_ABBR, OP_NAME, OP, CMP_OP) \ 216 typename std::enable_if<Is##CLASS##Op<L, R>::value>::type* = \ 219 typename MathWrapper<CLASS##OP_NAME##Op, L, R>::type> \ 220 operator OP(const L lhs, const R rhs) { \ 221 return decltype(lhs OP rhs)::template MathOp<CLASS##OP_NAME##Op>(lhs, \ 229 return MathOp<CLASS##OP_NAME##Op>(rhs); \
|
/external/llvm/lib/Target/BPF/ |
BPFISelLowering.cpp | 135 SDValue BPFTargetLowering::LowerOperation(SDValue Op, SelectionDAG &DAG) const { 136 switch (Op.getOpcode()) { 138 return LowerBR_CC(Op, DAG); 140 return LowerGlobalAddress(Op, DAG); 142 return LowerSELECT_CC(Op, DAG); 436 SDValue BPFTargetLowering::LowerBR_CC(SDValue Op, SelectionDAG &DAG) const { 437 SDValue Chain = Op.getOperand(0); 438 ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(1))->get(); 439 SDValue LHS = Op.getOperand(2); 440 SDValue RHS = Op.getOperand(3) [all...] |
/external/skia/src/gpu/effects/ |
GrCoverageSetOpXP.cpp | 21 CoverageSetOpXP(SkRegion::Op regionOp, bool invertCoverage) 26 const char* name() const override { return "Coverage Set Op"; } 44 SkRegion::Op fRegionOp; 125 constexpr GrCoverageSetOpXPFactory::GrCoverageSetOpXPFactory(SkRegion::Op regionOp, 129 const GrXPFactory* GrCoverageSetOpXPFactory::Get(SkRegion::Op regionOp, bool invertCoverage) { 206 SK_ABORT("Unknown region op."); 231 SkRegion::Op regionOp = SkRegion::Op(d->fRandom->nextULessThan(SkRegion::kLastOp + 1));
|
/external/skqp/src/gpu/effects/ |
GrCoverageSetOpXP.cpp | 21 CoverageSetOpXP(SkRegion::Op regionOp, bool invertCoverage) 26 const char* name() const override { return "Coverage Set Op"; } 44 SkRegion::Op fRegionOp; 125 constexpr GrCoverageSetOpXPFactory::GrCoverageSetOpXPFactory(SkRegion::Op regionOp, 129 const GrXPFactory* GrCoverageSetOpXPFactory::Get(SkRegion::Op regionOp, bool invertCoverage) { 206 SK_ABORT("Unknown region op."); 230 SkRegion::Op regionOp = SkRegion::Op(d->fRandom->nextULessThan(SkRegion::kLastOp + 1));
|
/external/swiftshader/third_party/LLVM/include/llvm/Target/ |
TargetLowering.h | 355 virtual bool canOpTrap(unsigned Op, EVT VT) const; 370 LegalizeAction getOperationAction(unsigned Op, EVT VT) const { 372 assert(Op < array_lengthof(OpActions[0]) && "Table isn't big enough!"); 374 return (LegalizeAction)OpActions[I][Op]; 380 bool isOperationLegalOrCustom(unsigned Op, EVT VT) const { 382 (getOperationAction(Op, VT) == Legal || 383 getOperationAction(Op, VT) == Custom); 388 bool isOperationLegal(unsigned Op, EVT VT) const { 390 getOperationAction(Op, VT) == Legal; 495 EVT getTypeToPromoteTo(unsigned Op, EVT VT) const [all...] |
/external/swiftshader/third_party/LLVM/lib/VMCore/ |
Globals.cpp | 94 Op<0>() = InitVal; 113 Op<0>() = InitVal; 163 Op<0>().set(0); 171 Op<0>().set(InitVal); 192 : GlobalValue(Ty, Value::GlobalAliasVal, &Op<0>(), 1, Link, Name) { 197 Op<0>() = aliasee;
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/AMDGPU/ |
AMDGPULegalizerInfo.cpp | 75 // G_IMPLICIT_DEF is a no-op so we can make it legal for any value type that 163 for (unsigned Op : {G_EXTRACT_VECTOR_ELT, G_INSERT_VECTOR_ELT}) { 164 getActionDefinitionsBuilder(Op) 184 for (unsigned Op : {G_MERGE_VALUES, G_UNMERGE_VALUES}) { 185 unsigned BigTyIdx = Op == G_MERGE_VALUES ? 0 : 1; 186 unsigned LitTyIdx = Op == G_MERGE_VALUES ? 1 : 0; 188 getActionDefinitionsBuilder(Op)
|