HomeSort by relevance Sort by last modified time
    Searched refs:Op (Results 276 - 300 of 549) sorted by null

<<11121314151617181920>>

  /external/skia/src/animator/
SkScriptTokenizer.cpp 129 *fOpStack.push() = (Op) kParen;
139 void SkScriptEngine2::addToken(SkScriptEngine2::TypeOp op) {
150 unsigned char charOp = (unsigned char) op;
155 SkOperand2::OpType toType, SkScriptEngine2::TypeOp op) {
159 addToken(op);
221 Op op = kUnassigned; local
231 op = kAdd;
234 op = lastPush ? kSubtract : kMinus;
237 op = kMultiply
917 Op op; local
1059 Op op; local
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
LegalizeDAG.cpp 133 SDValue ExpandBSWAP(SDValue Op, SDLoc dl);
134 SDValue ExpandBitCount(unsigned Opc, SDValue Op, SDLoc dl);
136 SDValue ExpandExtractFromVectorThroughStack(SDValue Op);
137 SDValue ExpandInsertToVectorThroughStack(SDValue Op);
    [all...]
SelectionDAGPrinter.cpp 92 SDValue Op = EI.getNode()->getOperand(EI.getOperand());
93 EVT VT = Op.getValueType();
SelectionDAGBuilder.cpp 359 assert(NumParts == 1 && "No-op copy with multiple parts!");
    [all...]
  /external/llvm/lib/Target/X86/MCTargetDesc/
X86MCCodeEmitter.cpp 126 void EmitMemModRMByte(const MCInst &MI, unsigned Op,
219 /// a 32-bit memory operand. Op specifies the operand # of the memoperand.
220 static bool Is32BitMemOperand(const MCInst &MI, unsigned Op) {
221 const MCOperand &BaseReg = MI.getOperand(Op+X86::AddrBaseReg);
222 const MCOperand &IndexReg = MI.getOperand(Op+X86::AddrIndexReg);
233 /// a 64-bit memory operand. Op specifies the operand # of the memoperand.
235 static bool Is64BitMemOperand(const MCInst &MI, unsigned Op) {
236 const MCOperand &BaseReg = MI.getOperand(Op+X86::AddrBaseReg);
237 const MCOperand &IndexReg = MI.getOperand(Op+X86::AddrIndexReg);
249 /// a 16-bit memory operand. Op specifies the operand # of the memoperand
    [all...]
  /external/llvm/lib/Target/X86/
X86CodeEmitter.cpp 105 unsigned Op, unsigned RegOpcodeField,
452 unsigned Op,unsigned RegOpcodeField,
454 const MachineOperand &Op3 = MI.getOperand(Op+3);
480 const MachineOperand &Base = MI.getOperand(Op);
481 const MachineOperand &Scale = MI.getOperand(Op+1);
482 const MachineOperand &IndexReg = MI.getOperand(Op+2);
613 /// a 16-bit memory operand. Op specifies the operand # of the memoperand.
614 static bool Is16BitMemOperand(const MachineInstr &MI, unsigned Op) {
615 const MachineOperand &BaseReg = MI.getOperand(Op+X86::AddrBaseReg);
616 const MachineOperand &IndexReg = MI.getOperand(Op+X86::AddrIndexReg)
    [all...]
  /external/clang/include/clang/AST/
Expr.h     [all...]
  /external/clang/lib/StaticAnalyzer/Core/
BasicValueFactory.cpp 146 BasicValueFactory::evalAPSInt(BinaryOperator::Opcode Op,
149 switch (Op) {
  /external/llvm/include/llvm/IR/
MDBuilder.h 49 Value *Op = ConstantFP::get(Type::getFloatTy(Context), Accuracy);
50 return MDNode::get(Context, Op);
  /external/skia/gm/
complexclip2.cpp 64 SkRegion::Op ops[] = {
155 SkRegion::Op fOps[kRows * kCols][5];
  /external/skia/src/utils/
SkCanvasStateUtils.cpp 127 virtual void clipRect(const SkRect& rect, SkRegion::Op op, bool antialias) SK_OVERRIDE {
131 virtual void clipPath(const SkPath&, SkRegion::Op, bool antialias) SK_OVERRIDE {
264 clip.op(SkIRect::MakeLTRB(state.clipRects[i].left,
SkDumpCanvas.cpp 109 static const char* toString(SkRegion::Op op) {
113 return gOpNames[op];
275 bool SkDumpCanvas::clipRect(const SkRect& rect, SkRegion::Op op, bool doAA) {
278 this->dump(kClip_Verb, NULL, "clipRect(%s %s %s)", str.c_str(), toString(op),
280 return this->INHERITED::clipRect(rect, op, doAA);
283 bool SkDumpCanvas::clipRRect(const SkRRect& rrect, SkRegion::Op op, bool doAA) {
286 this->dump(kClip_Verb, NULL, "clipRRect(%s %s %s)", str.c_str(), toString(op),
    [all...]
  /external/chromium_org/third_party/skia/src/utils/
SkDumpCanvas.cpp 109 static const char* toString(SkRegion::Op op) {
113 return gOpNames[op];
275 bool SkDumpCanvas::clipRect(const SkRect& rect, SkRegion::Op op, bool doAA) {
278 this->dump(kClip_Verb, NULL, "clipRect(%s %s %s)", str.c_str(), toString(op),
280 return this->INHERITED::clipRect(rect, op, doAA);
283 bool SkDumpCanvas::clipRRect(const SkRRect& rrect, SkRegion::Op op, bool doAA) {
286 this->dump(kClip_Verb, NULL, "clipRRect(%s %s %s)", str.c_str(), toString(op),
    [all...]
  /external/llvm/include/llvm/Analysis/
ScalarEvolution.h 469 /// of 'icmp op load X, cst', try to see if we can compute the
581 const SCEV *getTruncateExpr(const SCEV *Op, Type *Ty);
582 const SCEV *getZeroExtendExpr(const SCEV *Op, Type *Ty);
583 const SCEV *getSignExtendExpr(const SCEV *Op, Type *Ty);
584 const SCEV *getAnyExtendExpr(const SCEV *Op, Type *Ty);
    [all...]
  /external/llvm/lib/Transforms/Utils/
LoopSimplify.cpp 748 for (unsigned Op = 0, e = TI->getNumSuccessors(); Op != e; ++Op)
749 if (TI->getSuccessor(Op) == Header)
750 TI->setSuccessor(Op, BEBlock);
  /frameworks/compile/libbcc/bcinfo/BitReader_2_7/
BitcodeReader.cpp 221 : ConstantExpr(Ty, Instruction::UserOp1, &Op<0>(), 1) {
222 Op<0>() = UndefValue::get(Type::getInt32Ty(Context));
    [all...]
  /external/llvm/lib/Bitcode/Reader/
BitcodeReader.cpp 207 : ConstantExpr(Ty, Instruction::UserOp1, &Op<0>(), 1) {
208 Op<0>() = UndefValue::get(Type::getInt32Ty(Context));
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineSelect.cpp 140 return 0; // unknown unary op.
288 /// SimplifyWithOpReplaced - See if V simplifies when its operand Op is
290 static Value *SimplifyWithOpReplaced(Value *V, Value *Op, Value *RepOp,
294 if (V == Op)
301 // If this is a binary operator, try to simplify it with the replaced op.
303 if (B->getOperand(0) == Op)
305 if (B->getOperand(1) == Op)
311 if (C->getOperand(0) == Op)
314 if (C->getOperand(1) == Op)
321 // If all operands are constant after substituting Op for RepOp then we ca
    [all...]
  /external/skia/tests/
ClipStackTest.cpp 67 // Test that a different op on one level triggers not equal.
147 // the union op will prevent these from being fused together
200 // A op B
207 // invA op B
214 // A op invB
221 // invA op invB
229 static const SkRegion::Op gOps[] = {
254 for (size_t op = 0; op < SK_ARRAY_COUNT(gOps); ++op) {
931 SkRegion::Op op = kOps[r.nextULessThan(SK_ARRAY_COUNT(kOps))]; local
    [all...]
  /frameworks/base/graphics/java/android/graphics/
Canvas.java 572 * @param op How the clip is modified
575 public boolean clipRect(RectF rect, Region.Op op) {
577 op.nativeInt);
585 * @param op How the clip is modified
588 public boolean clipRect(Rect rect, Region.Op op) {
590 op.nativeInt);
623 * @param op How the clip is modified
626 public boolean clipRect(float left, float top, float right, float bottom, Region.Op op)
    [all...]
  /frameworks/compile/libbcc/bcinfo/BitReader_3_0/
BitcodeReader.cpp 501 : ConstantExpr(Ty, Instruction::UserOp1, &Op<0>(), 1) {
502 Op<0>() = UndefValue::get(Type::getInt32Ty(Context));
    [all...]
  /external/clang/lib/CodeGen/
CGAtomic.cpp 189 llvm::AtomicRMWInst::BinOp Op = llvm::AtomicRMWInst::Add;
244 Op = llvm::AtomicRMWInst::Xchg;
252 Op = llvm::AtomicRMWInst::Add;
260 Op = llvm::AtomicRMWInst::Sub;
268 Op = llvm::AtomicRMWInst::And;
276 Op = llvm::AtomicRMWInst::Or;
284 Op = llvm::AtomicRMWInst::Xor;
291 Op = llvm::AtomicRMWInst::Nand;
298 CGF.Builder.CreateAtomicRMW(Op, Ptr, LoadVal1, Order);
    [all...]
  /external/chromium_org/skia/ext/
lazy_pixel_ref_utils.cc 368 virtual bool clipRect(const SkRect& rect, SkRegion::Op op, bool doAA)
370 return this->INHERITED::clipRect(rect, op, false);
373 virtual bool clipPath(const SkPath& path, SkRegion::Op op, bool doAA)
376 path.getBounds(), op, path.isInverseFillType());
378 virtual bool clipRRect(const SkRRect& rrect, SkRegion::Op op, bool doAA)
381 rrect.getBounds(), op, false);
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/
GraphicsContext.h 281 bool clipRect(const SkRect&, AntiAliasingMode = NotAntiAliased, SkRegion::Op = SkRegion::kIntersect_Op);
405 bool clipPath(const SkPath&, AntiAliasingMode = NotAntiAliased, SkRegion::Op = SkRegion::kIntersect_Op);
406 bool clipRRect(const SkRRect&, AntiAliasingMode = NotAntiAliased, SkRegion::Op = SkRegion::kIntersect_Op);
  /external/llvm/examples/Kaleidoscope/Chapter4/
toy.cpp 115 char Op;
118 BinaryExprAST(char op, ExprAST *lhs, ExprAST *rhs)
119 : Op(op), LHS(lhs), RHS(rhs) {}
377 switch (Op) {

Completed in 1090 milliseconds

<<11121314151617181920>>