HomeSort by relevance Sort by last modified time
    Searched refs:Op (Results 176 - 200 of 317) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/llvm/lib/Bitcode/Reader/
BitcodeReader.cpp 184 : ConstantExpr(Ty, Instruction::UserOp1, &Op<0>(), 1) {
185 Op<0>() = UndefValue::get(Type::getInt32Ty(Context));
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineSelect.cpp 133 return 0; // unknown unary op.
282 /// SimplifyWithOpReplaced - See if V simplifies when its operand Op is
284 static Value *SimplifyWithOpReplaced(Value *V, Value *Op, Value *RepOp,
287 if (V == Op)
294 // If this is a binary operator, try to simplify it with the replaced op.
296 if (B->getOperand(0) == Op)
298 if (B->getOperand(1) == Op)
304 if (C->getOperand(0) == Op)
306 if (C->getOperand(1) == Op)
312 // If all operands are constant after substituting Op for RepOp then we ca
    [all...]
  /frameworks/base/graphics/java/android/graphics/
Canvas.java 530 * @param op How the clip is modified
533 public boolean clipRect(RectF rect, Region.Op op) {
536 op.nativeInt);
544 * @param op How the clip is modified
547 public boolean clipRect(Rect rect, Region.Op op) {
550 op.nativeInt);
583 * @param op How the clip is modified
587 Region.Op op)
    [all...]
  /frameworks/base/core/java/android/view/
GLES20Canvas.java 412 public boolean clipPath(Path path, Region.Op op) {
418 return nClipRect(mRenderer, left, top, right, bottom, Region.Op.INTERSECT.nativeInt);
422 float right, float bottom, int op);
425 public boolean clipRect(float left, float top, float right, float bottom, Region.Op op) {
426 return nClipRect(mRenderer, left, top, right, bottom, op.nativeInt);
431 return nClipRect(mRenderer, left, top, right, bottom, Region.Op.INTERSECT.nativeInt);
435 int op);
440 Region.Op.INTERSECT.nativeInt);
    [all...]
  /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) {
  /external/llvm/lib/Target/Alpha/
AlphaISelDAGToDAG.cpp 153 virtual bool SelectInlineAsmMemoryOperand(const SDValue &Op,
160 Op0 = Op;
186 void SelectCALL(SDNode *Op);
  /frameworks/base/libs/hwui/
DisplayListRenderer.h 67 enum Op {
266 virtual bool clipRect(float left, float top, float right, float bottom, SkRegion::Op op);
343 inline void addOp(DisplayList::Op drawOp) {
  /external/clang/lib/Sema/
SemaChecking.cpp 475 Sema::SemaAtomicOpsOverloaded(ExprResult TheCallResult, AtomicExpr::AtomicOp Op) {
488 if (Op == AtomicExpr::Load) {
490 } else if (Op == AtomicExpr::CmpXchgWeak || Op == AtomicExpr::CmpXchgStrong) {
527 if ((Op == AtomicExpr::Add || Op == AtomicExpr::Sub) &&
535 (Op == AtomicExpr::And || Op == AtomicExpr::Or || Op == AtomicExpr::Xor)){
556 if (Op == AtomicExpr::Store
2494 BinaryOperatorKind op = B->getOpcode(); local
3181 BinaryOperatorKind op = E->getOpcode(); local
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter6/
toy.cpp 139 char Op;
142 BinaryExprAST(char op, ExprAST *lhs, ExprAST *rhs)
143 : Op(op), LHS(lhs), RHS(rhs) {}
184 unsigned Precedence; // Precedence if a binary op.
574 switch (Op) {
588 Function *F = TheModule->getFunction(std::string("binary")+Op);
  /external/llvm/include/llvm/Analysis/
ScalarEvolutionExpander.h 176 Instruction::CastOps Op,
ScalarEvolutionExpressions.h 59 const SCEV *Op;
63 unsigned SCEVTy, const SCEV *op, Type *ty);
66 const SCEV *getOperand() const { return Op; }
86 const SCEV *op, Type *ty);
104 const SCEV *op, Type *ty);
122 const SCEV *op, Type *ty);
  /external/llvm/lib/CodeGen/
IntrinsicLowering.cpp 564 Value *Op = CI->getArgOperand(0);
565 Op = CallInst::Create(Int, Op, CI->getName(), CI);
567 CI->replaceAllUsesWith(Op);
  /external/llvm/lib/Target/ARM/
ARMBaseRegisterInfo.h 92 // Return the opcode that implements 'Op', or 0 if no opcode
93 unsigned getOpcode(int Op) const;
  /external/skia/src/utils/
SkDumpCanvas.cpp 68 static const char* toString(SkRegion::Op op) {
72 return gOpNames[op];
229 bool SkDumpCanvas::clipRect(const SkRect& rect, SkRegion::Op op) {
232 this->dump(kClip_Verb, NULL, "clipRect(%s %s)", str.c_str(), toString(op));
233 return this->INHERITED::clipRect(rect, op);
236 bool SkDumpCanvas::clipPath(const SkPath& path, SkRegion::Op op) {
239 this->dump(kClip_Verb, NULL, "clipPath(%s %s)", str.c_str(), toString(op));
    [all...]
  /external/llvm/include/llvm/Support/
ConstantFolder.h 155 Constant *CreateCast(Instruction::CastOps Op, Constant *C,
157 return ConstantExpr::getCast(Op, C, DestTy);
NoFolder.h 202 Instruction *CreateCast(Instruction::CastOps Op, Constant *C,
204 return CastInst::Create(Op, C, DestTy);
TargetFolder.h 167 Constant *CreateCast(Instruction::CastOps Op, Constant *C,
171 return Fold(ConstantExpr::getCast(Op, C, DestTy));
  /external/llvm/lib/Target/X86/
X86CodeEmitter.cpp 99 unsigned Op, unsigned RegOpcodeField,
439 unsigned Op,unsigned RegOpcodeField,
441 const MachineOperand &Op3 = MI.getOperand(Op+3);
467 const MachineOperand &Base = MI.getOperand(Op);
468 const MachineOperand &Scale = MI.getOperand(Op+1);
469 const MachineOperand &IndexReg = MI.getOperand(Op+2);
    [all...]
X86FastISel.cpp 367 // Look past no-op inttoptrs.
373 // Look past no-op ptrtoints.
416 const Value *Op = *i;
419 Disp += SL->getElementOffset(cast<ConstantInt>(Op)->getZExtValue());
427 if (const ConstantInt *CI = dyn_cast<ConstantInt>(Op)) {
432 if (isa<AddOperator>(Op) &&
433 (!isa<Instruction>(Op) ||
434 FuncInfo.MBBMap[cast<Instruction>(Op)->getParent()]
436 isa<ConstantInt>(cast<AddOperator>(Op)->getOperand(1))) {
440 cast<ConstantInt>(cast<AddOperator>(Op)->getOperand(1))
    [all...]
  /external/skia/src/pipe/
SkGPipeWrite.cpp 101 virtual bool clipRect(const SkRect& rect, SkRegion::Op op);
102 virtual bool clipPath(const SkPath& path, SkRegion::Op op);
103 virtual bool clipRegion(const SkRegion& region, SkRegion::Op op);
148 inline void writeOp(DrawOps op, unsigned flags, unsigned data) {
149 fWriter.write32(DrawOp_packOpFlagData(op, flags, data));
152 inline void writeOp(DrawOps op) {
153 fWriter.write32(DrawOp_packOpFlagData(op, 0, 0))
    [all...]
  /external/clang/include/clang/AST/
ExprCXX.h 53 CXXOperatorCallExpr(ASTContext& C, OverloadedOperatorKind Op, Expr *fn,
58 Operator(Op) {}
159 SourceLocation Loc; // the location of the casting op
164 CastKind kind, Expr *op, unsigned PathSize,
167 : ExplicitCastExpr(SC, ty, VK, kind, op, PathSize, writtenTy), Loc(l),
207 CXXStaticCastExpr(QualType ty, ExprValueKind vk, CastKind kind, Expr *op,
210 : CXXNamedCastExpr(CXXStaticCastExprClass, ty, vk, kind, op, pathSize,
218 ExprValueKind VK, CastKind K, Expr *Op,
239 Expr *op, unsigned pathSize, TypeSourceInfo *writtenTy,
241 : CXXNamedCastExpr(CXXDynamicCastExprClass, ty, VK, kind, op, pathSize
    [all...]
Expr.h     [all...]
  /external/llvm/lib/Transforms/Scalar/
ObjCARC.cpp 172 static bool IsPotentialUse(const Value *Op) {
174 if (isa<Constant>(Op) || isa<AllocaInst>(Op))
177 if (const Argument *Arg = dyn_cast<Argument>(Op))
183 PointerType *Ty = dyn_cast<PointerType>(Op->getType());
501 /// as objc_retain or objc_release, return the argument value, stripped of no-op
    [all...]
IndVarSimplify.cpp 652 Value *Op = UI->getOperandValToReplace();
653 Type *UseTy = Op->getType();
680 Instruction *InsertPt = getInsertPointForUses(User, Op, DT);
685 DEBUG(dbgs() << "INDVARS: Rewrote IV '" << *AR << "' " << *Op << '\n'
688 if (!isValidRewrite(Op, NewVal)) {
700 if (Op->hasName())
701 NewVal->takeName(Op);
704 User->replaceUsesOfWith(Op, NewVal);
711 DeadInsts.push_back(Op);
    [all...]
  /external/skia/src/core/
SkPicturePlayback.cpp 542 SkRegion::Op op = (SkRegion::Op) getInt(); local
544 // HACK (false) until I can handle op==kReplace
545 if (!canvas.clipPath(path, op)) {
554 SkRegion::Op op = (SkRegion::Op) getInt(); local
556 if (!canvas.clipRegion(region, op)) {
565 SkRegion::Op op = (SkRegion::Op) getInt() local
    [all...]

Completed in 2416 milliseconds

1 2 3 4 5 6 78 91011>>