/external/llvm/lib/Bitcode/Writer/ |
ValueEnumerator.cpp | 63 for (const Value *Op : C->operands()) 64 if (!isa<BasicBlock>(Op) && !isa<GlobalValue>(Op)) 65 orderValue(Op, OM); 129 for (const Value *Op : I.operands()) 130 if ((isa<Constant>(*Op) && !isa<GlobalValue>(*Op)) || 131 isa<InlineAsm>(*Op)) 132 orderValue(Op, OM); 225 for (const Value *Op : C->operands() [all...] |
/external/llvm/lib/Target/NVPTX/ |
NVPTXInstrInfo.cpp | 44 unsigned Op; 46 Op = NVPTX::IMOV1rr; 48 Op = NVPTX::IMOV16rr; 50 Op = (SrcRC == &NVPTX::Int32RegsRegClass ? NVPTX::IMOV32rr 53 Op = (SrcRC == &NVPTX::Int64RegsRegClass ? NVPTX::IMOV64rr 56 Op = (SrcRC == &NVPTX::Float32RegsRegClass ? NVPTX::FMOV32rr 59 Op = (SrcRC == &NVPTX::Float64RegsRegClass ? NVPTX::FMOV64rr 64 BuildMI(MBB, I, DL, get(Op), DestReg)
|
/external/skia/include/core/ |
SkRegion.h | 208 May be faster than repeated calls to op(). 356 /** \enum SkRegion::Op 359 enum Op { 371 /** Replaces SkRegion with the result of SkRegion op rect. 375 @param op operator, one of: 380 bool op(const SkIRect& rect, Op op) { function in class:SkRegion 381 if (this->isRect() && kIntersect_Op == op) { 387 return this->op(*this, rect, op) 402 bool op(int left, int top, int right, int bottom, Op op) { function in class:SkRegion 417 bool op(const SkRegion& rgn, Op op) { return this->op(*this, rgn, op); } function in class:SkRegion [all...] |
/external/skia/src/gpu/ops/ |
GrSimpleMeshDrawOpHelper.h | 32 * This can be used by a Op class to perform allocation and initialization such that a 34 * the Op instance. It requires that Op implements a constructor of the form: 35 * Op(MakeArgs, GrColor, OpArgs...) 38 template <typename Op, typename... OpArgs> 56 // noneAACompatibleWithCoverage should be set to true if the op can properly render a non-AA 57 // primitive merged into a coverage-based op. 65 * @param geometryCoverage Describes the coverage output of the op's geometry processor 67 * color the op expects to output from its geometry processor. As output 68 * this may be set to a known color in which case the op must output thi [all...] |
/external/skqp/include/core/ |
SkRegion.h | 208 May be faster than repeated calls to op(). 356 /** \enum SkRegion::Op 359 enum Op { 371 /** Replaces SkRegion with the result of SkRegion op rect. 375 @param op operator, one of: 380 bool op(const SkIRect& rect, Op op) { function in class:SkRegion 381 if (this->isRect() && kIntersect_Op == op) { 387 return this->op(*this, rect, op) 402 bool op(int left, int top, int right, int bottom, Op op) { function in class:SkRegion 417 bool op(const SkRegion& rgn, Op op) { return this->op(*this, rgn, op); } function in class:SkRegion [all...] |
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/MC/ |
MCWinEH.h | 27 Instruction(unsigned Op, MCSymbol *L, unsigned Reg, unsigned Off) 28 : Label(L), Offset(Off), Register(Reg), Operation(Op) {}
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Bitcode/Writer/ |
ValueEnumerator.cpp | 94 for (const Value *Op : C->operands()) 95 if (!isa<BasicBlock>(Op) && !isa<GlobalValue>(Op)) 96 orderValue(Op, OM); 160 for (const Value *Op : I.operands()) 161 if ((isa<Constant>(*Op) && !isa<GlobalValue>(*Op)) || 162 isa<InlineAsm>(*Op)) 163 orderValue(Op, OM); 256 for (const Value *Op : C->operands() [all...] |
/external/swiftshader/third_party/subzero/src/ |
IceASanInstrumentation.h | 47 bool isOkGlobalAccess(Operand *Op, SizeT Size); 55 void instrumentAccess(LoweringContext &Context, Operand *Op, SizeT Size,
|
/external/tensorflow/tensorflow/java/src/main/java/org/tensorflow/op/core/ |
Zeros.java | 15 package org.tensorflow.op.core; 22 import org.tensorflow.op.Op; 23 import org.tensorflow.op.Scope; 24 import org.tensorflow.op.annotation.Operator; 37 public class Zeros<T> implements Op, Operand<T> { 49 Scope childScope = scope.withSubScope("Zeros"); // If scope had an op name set, it will prevail on "Zeros"
|
/device/linaro/bootloader/edk2/BaseTools/Source/Python/AutoGen/ |
GenDepex.py | 104 # all supported op codes and operands
111 # op code that should not be the last one
113 # op code must not present at the same time
115 # op code that should be the first one if it presents
204 # not OP, take it as GUID
211 # check if OP is valid in this phase
234 for Op in self.AboveAllOpcode:
235 if Op in self.PostfixNotation:
236 if Op != self.PostfixNotation[0]:
237 EdkLogger.error("GenDepex", PARSER_ERROR, "%s should be the first opcode in the expression" % Op,
[all...] |
/external/swiftshader/third_party/LLVM/include/llvm/Bitcode/ |
BitstreamReader.h | 448 void ReadAbbreviatedLiteral(const BitCodeAbbrevOp &Op, 450 assert(Op.isLiteral() && "Not a literal"); 452 Vals.push_back(Op.getLiteralValue()); 455 void ReadAbbreviatedField(const BitCodeAbbrevOp &Op, 457 assert(!Op.isLiteral() && "Use ReadAbbreviatedLiteral for literals!"); 460 switch (Op.getEncoding()) { 463 Vals.push_back(Read((unsigned)Op.getEncodingData())); 466 Vals.push_back(ReadVBR64((unsigned)Op.getEncodingData())); 495 const BitCodeAbbrevOp &Op = Abbv->getOperandInfo(i); 496 if (Op.isLiteral()) [all...] |
/external/swiftshader/third_party/LLVM/lib/Target/PTX/ |
PTXISelLowering.cpp | 109 SDValue PTXTargetLowering::LowerOperation(SDValue Op, SelectionDAG &DAG) const { 110 switch (Op.getOpcode()) { 114 return LowerSETCC(Op, DAG); 116 return LowerGlobalAddress(Op, DAG); 147 SDValue PTXTargetLowering::LowerSETCC(SDValue Op, SelectionDAG &DAG) const { 148 assert(Op.getValueType() == MVT::i1 && "SetCC type must be 1-bit integer"); 149 SDValue Op0 = Op.getOperand(0); 150 SDValue Op1 = Op.getOperand(1); 151 SDValue Op2 = Op.getOperand(2); 152 DebugLoc dl = Op.getDebugLoc() [all...] |
/external/swiftshader/third_party/LLVM/lib/Target/X86/MCTargetDesc/ |
X86AsmBackend.cpp | 116 static unsigned getRelaxedOpcodeBranch(unsigned Op) { 117 switch (Op) { 119 return Op; 141 static unsigned getRelaxedOpcodeArith(unsigned Op) { 142 switch (Op) { 144 return Op; 210 static unsigned getRelaxedOpcode(unsigned Op) { 211 unsigned R = getRelaxedOpcodeArith(Op); 212 if (R != Op) 214 return getRelaxedOpcodeBranch(Op); [all...] |
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/NVPTX/ |
NVPTXISelLowering.h | 444 SDValue LowerOperation(SDValue Op, SelectionDAG &DAG) const override; 446 SDValue LowerGlobalAddress(SDValue Op, SelectionDAG &DAG) const; 502 void LowerAsmOperandForConstraint(SDValue Op, std::string &Constraint, 555 SDValue LowerBUILD_VECTOR(SDValue Op, SelectionDAG &DAG) const; 556 SDValue LowerCONCAT_VECTORS(SDValue Op, SelectionDAG &DAG) const; 557 SDValue LowerEXTRACT_VECTOR_ELT(SDValue Op, SelectionDAG &DAG) const; 559 SDValue LowerLOAD(SDValue Op, SelectionDAG &DAG) const; 560 SDValue LowerLOADi1(SDValue Op, SelectionDAG &DAG) const; 562 SDValue LowerSTORE(SDValue Op, SelectionDAG &DAG) const; 563 SDValue LowerSTOREi1(SDValue Op, SelectionDAG &DAG) const [all...] |
/external/llvm/lib/Transforms/Utils/ |
ValueMapper.cpp | 212 Metadata &getFwdReference(MDNode &Op); 269 /// If \c Op is already mapped, return the mapping. If it's not an \a 273 /// \return None if \c Op is an unmapped uniqued \a MDNode. 274 /// \post getMappedOp(Op) only returns None if this returns None. 275 Optional<Metadata *> tryToMapOperand(const Metadata *Op); 287 Optional<Metadata *> getMappedOp(const Metadata *Op) const; 431 Value *Op = C->getOperand(OpNo); 432 Mapped = mapValueOrNull(Op); 435 if (Mapped != Op) 516 Optional<Metadata *> MDNodeMapper::tryToMapOperand(const Metadata *Op) { [all...] |
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Utils/ |
ValueMapper.cpp | 213 Metadata &getFwdReference(MDNode &Op); 270 /// If \c Op is already mapped, return the mapping. If it's not an \a 274 /// \return None if \c Op is an unmapped uniqued \a MDNode. 275 /// \post getMappedOp(Op) only returns None if this returns None. 276 Optional<Metadata *> tryToMapOperand(const Metadata *Op); 288 Optional<Metadata *> getMappedOp(const Metadata *Op) const; 432 Value *Op = C->getOperand(OpNo); 433 Mapped = mapValueOrNull(Op); 436 if (Mapped != Op) 517 Optional<Metadata *> MDNodeMapper::tryToMapOperand(const Metadata *Op) { [all...] |
/external/swiftshader/third_party/LLVM/lib/Target/PowerPC/ |
PPCISelLowering.cpp | 482 static bool isFloatingPointZero(SDValue Op) { 483 if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(Op)) 485 else if (ISD::isEXTLoad(Op.getNode()) || ISD::isNON_EXTLoad(Op.getNode())) { 487 if (ConstantPoolSDNode *CP = dyn_cast<ConstantPoolSDNode>(Op.getOperand(1))) 494 /// isConstantOrUndef - Op is either an undef node or a ConstantSDNode. Return 495 /// true if Op is undef or if it matches the specified value. 496 static bool isConstantOrUndef(int Op, int Val) { 497 return Op < 0 || Op == Val [all...] |
/cts/tests/tests/graphics/src/android/graphics/drawable/cts/ |
AdaptiveIconMaskTest.java | 30 import android.graphics.Region.Op; 109 boolean result = maskRegion.op(safeZoneRegion, intersectRegion, Region.Op.INTERSECT); 114 result = safeZoneRegion.op(intersectRegion, subtractRegion, Op.DIFFERENCE); 149 circle99.op(maskPath, Path.Op.DIFFERENCE); 151 maskPath.op(circle101, Path.Op.DIFFERENCE);
|
/development/samples/ApiDemos/src/com/example/android/apis/graphics/ |
Regions.java | 62 private void drawRgn(Canvas canvas, int color, String str, Region.Op op) { 70 rgn.op(mRect2, op); 106 drawRgn(canvas, Color.RED, "Union", Region.Op.UNION); 111 drawRgn(canvas, Color.BLUE, "Xor", Region.Op.XOR); 116 drawRgn(canvas, Color.GREEN, "Difference", Region.Op.DIFFERENCE); 121 drawRgn(canvas, Color.WHITE, "Intersect", Region.Op.INTERSECT);
|
/external/skia/include/private/ |
GrAuditTrail.h | 89 // Because op combining is heavily dependent on sequence of draw calls, these calls will only 108 struct Op { 115 SkTArray<Op> fOps; 127 struct Op { 136 typedef SkTArray<std::unique_ptr<Op>, true> OpPool; 138 typedef SkTArray<Op*> Ops; 175 #define GR_AUDIT_TRAIL_ADD_OP(audit_trail, op, proxy_id) \ 176 GR_AUDIT_TRAIL_INVOKE_GUARD(audit_trail, addOp, op, proxy_id) 178 #define GR_AUDIT_TRAIL_OPS_RESULT_COMBINED(audit_trail, combineWith, op) \ 179 GR_AUDIT_TRAIL_INVOKE_GUARD(audit_trail, opsCombined, combineWith, op) [all...] |
/external/skia/tests/ |
PrimitiveProcessorTest.cpp | 29 class Op : public GrMeshDrawOp { 33 const char* name() const override { return "Dummy Op"; } 38 return pool->allocate<Op>(numAttribs); 53 Op(int numAttribs) : INHERITED(ClassID()), fNumAttribs(numAttribs) { 155 renderTargetContext->priv().testingOnly_addDrawOp(Op::Make(context, attribCnt)); 162 renderTargetContext->priv().testingOnly_addDrawOp(Op::Make(context, attribCnt + 1));
|
/external/skqp/include/private/ |
GrAuditTrail.h | 89 // Because op combining is heavily dependent on sequence of draw calls, these calls will only 108 struct Op { 115 SkTArray<Op> fOps; 127 struct Op { 136 typedef SkTArray<std::unique_ptr<Op>, true> OpPool; 138 typedef SkTArray<Op*> Ops; 175 #define GR_AUDIT_TRAIL_ADD_OP(audit_trail, op, proxy_id) \ 176 GR_AUDIT_TRAIL_INVOKE_GUARD(audit_trail, addOp, op, proxy_id) 178 #define GR_AUDIT_TRAIL_OPS_RESULT_COMBINED(audit_trail, combineWith, op) \ 179 GR_AUDIT_TRAIL_INVOKE_GUARD(audit_trail, opsCombined, combineWith, op) [all...] |
/external/skqp/tests/ |
PrimitiveProcessorTest.cpp | 29 class Op : public GrMeshDrawOp { 33 const char* name() const override { return "Dummy Op"; } 38 return pool->allocate<Op>(numAttribs); 52 Op(int numAttribs) : INHERITED(ClassID()), fNumAttribs(numAttribs) { 151 renderTargetContext->priv().testingOnly_addDrawOp(Op::Make(context, attribCnt)); 158 renderTargetContext->priv().testingOnly_addDrawOp(Op::Make(context, attribCnt + 1));
|
/external/swiftshader/third_party/LLVM/lib/Target/CellSPU/ |
SPUISelLowering.h | 77 SDValue LowerConstantPool(SDValue Op, SelectionDAG &DAG, 115 virtual SDValue LowerOperation(SDValue Op, SelectionDAG &DAG) const; 123 virtual void computeMaskedBitsForTargetNode(const SDValue Op, 130 virtual unsigned ComputeNumSignBitsForTargetNode(SDValue Op, 144 void LowerAsmOperandForConstraint(SDValue Op, std::string &Constraint,
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/AMDGPU/ |
AMDGPUISelLowering.cpp | 130 unsigned AMDGPUTargetLowering::numBitsUnsigned(SDValue Op, SelectionDAG &DAG) { 132 EVT VT = Op.getValueType(); 133 DAG.computeKnownBits(Op, Known); 138 unsigned AMDGPUTargetLowering::numBitsSigned(SDValue Op, SelectionDAG &DAG) { 139 EVT VT = Op.getValueType(); 143 return VT.getSizeInBits() - DAG.ComputeNumSignBits(Op); [all...] |