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

<<11121314151617181920>>

  /external/chromium_org/third_party/skia/src/utils/debugger/
SkDrawCommand.cpp 176 SkClipPathCommand::SkClipPathCommand(const SkPath& path, SkRegion::Op op, bool doAA) {
178 fOp = op;
183 fInfo.push(SkObjectParser::RegionOpToString(op));
196 SkClipRegionCommand::SkClipRegionCommand(const SkRegion& region, SkRegion::Op op) {
198 fOp = op;
202 fInfo.push(SkObjectParser::RegionOpToString(op));
209 SkClipRectCommand::SkClipRectCommand(const SkRect& rect, SkRegion::Op op, bool doAA)
    [all...]
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
BasicValueFactory.h 183 const llvm::APSInt* evalAPSInt(BinaryOperator::Opcode Op,
  /external/clang/lib/CodeGen/
CGExprScalar.cpp 428 /// Create a binary op that checks for overflow.
462 #define HANDLEBINOP(OP) \
463 Value *VisitBin ## OP(const BinaryOperator *E) { \
464 return Emit ## OP(EmitBinOps(E)); \
466 Value *VisitBin ## OP ## Assign(const CompoundAssignOperator *E) { \
467 return EmitCompoundAssign(E, &ScalarExprEmitter::Emit ## OP); \
1490 llvm::Instruction::BinaryOps op = isInc ? llvm::Instruction::Add : local
    [all...]
  /external/clang/lib/Sema/
SemaExceptionSpec.cpp     [all...]
  /external/eigen/Eigen/src/Core/
Assign_MKL.h 40 template<typename Op> struct vml_call
  /external/llvm/include/llvm/Analysis/
InstructionSimplify.h 202 Value *SimplifyTruncInst(Value *Op, Type *Ty, const DataLayout *TD = 0,
ScalarEvolutionExpander.h 202 Instruction::CastOps Op,
  /external/llvm/lib/Analysis/IPA/
InlineCost.cpp 441 Value *Op = I.getOperand(0);
442 unsigned IntegerSize = Op->getType()->getScalarSizeInBits();
444 std::pair<Value *, APInt> BaseAndOffset = ConstantOffsetPtrs.lookup(Op);
452 if (lookupSROAArgAndCost(Op, SROAArg, CostIt))
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
LegalizeTypesGeneric.cpp 35 SDValue Op = DisintegrateMERGE_VALUES(N, ResNo);
36 GetExpandedOp(Op, Lo, Hi);
478 SDValue Op = DisintegrateMERGE_VALUES(N, ResNo);
479 GetSplitOp(Op, Lo, Hi);
  /external/llvm/lib/CodeGen/
TargetLoweringObjectFileImpl.cpp 810 StringRef Op = MDOption->getString();
813 if (Op.find(" ") != StringRef::npos) {
819 Escaped.append(Op);
822 Escaped.append(Op);
  /external/llvm/lib/Target/SystemZ/
SystemZInstrInfo.cpp 462 MachineOperand &Op = OldMI->getOperand(I);
463 if (Op.isReg() && Op.isKill())
464 LV->replaceKillInstruction(Op.getReg(), OldMI, NewMI);
  /external/llvm/lib/Transforms/Utils/
PromoteMemoryToRegister.cpp 384 Instruction *Op = dyn_cast<Instruction>(*OI);
385 if (!Op)
389 if (!Op->use_empty())
392 DeadInsts.push_back(Op);
    [all...]
  /external/llvm/utils/TableGen/
CodeGenDAGPatterns.cpp 707 Record *Op = PatFragRec->getOnlyTree()->getOperator();
708 ClassName = PatFragRec->getDAGPatterns().getSDNodeInfo(Op).getSDClassName();
    [all...]
  /external/skia/gm/
complexclip.cpp 85 SkRegion::Op fOp;
118 for (size_t op = 0; op < SK_ARRAY_COUNT(gOps); ++op) {
130 canvas->clipPath(clipB, gOps[op].fOp, fDoAAClip);
143 canvas->drawText(gOps[op].fName, strlen(gOps[op].fName),
145 txtX += paint.measureText(gOps[op].fName, strlen(gOps[op].fName));
  /external/skia/src/gpu/
GrStencil.cpp 236 SkRegion::Op op,
244 switch (op) {
274 switch (op) {
392 GrCrash("Unknown set op");
  /external/skia/src/pipe/
SkGPipeRead.cpp 239 canvas->clipPath(path, (SkRegion::Op)DrawOp_unpackData(op32), doAA);
246 canvas->clipRegion(rgn, (SkRegion::Op)DrawOp_unpackData(op32));
253 canvas->clipRect(*rect, (SkRegion::Op)DrawOp_unpackData(op32), doAA);
261 canvas->clipRRect(rrect, (SkRegion::Op)DrawOp_unpackData(op32), doAA);
623 unsigned op = PaintOp_unpackOp(p32);
626 // SkDebugf(" read %08X op=%d flags=%d data=%d\n", p32, op, done, data);
628 switch (op) {
829 unsigned op = DrawOp_unpackOp(op32);
830 // SkDEBUGCODE(DrawOps drawOp = (DrawOps)op;)
    [all...]
  /external/skia/src/utils/
SkDeferredCanvas.cpp 786 SkRegion::Op op,
788 this->drawingCanvas()->clipRect(rect, op, doAntiAlias);
789 bool val = this->INHERITED::clipRect(rect, op, doAntiAlias);
795 SkRegion::Op op,
797 this->drawingCanvas()->clipRRect(rrect, op, doAntiAlias);
798 bool val = this->INHERITED::clipRRect(rrect, op, doAntiAlias);
804 SkRegion::Op op,
    [all...]
  /external/skia/src/utils/debugger/
SkDrawCommand.cpp 176 SkClipPathCommand::SkClipPathCommand(const SkPath& path, SkRegion::Op op, bool doAA) {
178 fOp = op;
183 fInfo.push(SkObjectParser::RegionOpToString(op));
196 SkClipRegionCommand::SkClipRegionCommand(const SkRegion& region, SkRegion::Op op) {
198 fOp = op;
202 fInfo.push(SkObjectParser::RegionOpToString(op));
209 SkClipRectCommand::SkClipRectCommand(const SkRect& rect, SkRegion::Op op, bool doAA)
    [all...]
  /external/skia/tests/
CanvasStateTest.cpp 113 clipRegion.op(regionInterior, SkRegion::kDifference_Op);
116 const SkRegion::Op clipOps[] = { SkRegion::kIntersect_Op,
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
HeadsUpNotificationView.java 115 android.graphics.Region.Op.DIFFERENCE);
NotificationRowLayout.java 273 android.graphics.Region.Op.DIFFERENCE);
  /external/chromium_org/third_party/skia/src/core/
SkPicturePlayback.cpp 636 * Read the next op code and chunk size from 'reader'. The returned size
639 * to the next chunk's op code. This also means that the size of a chunk
644 uint32_t op; local
647 op = temp;
650 UNPACK_8_24(temp, op, *size);
655 return (DrawType) op;
731 DrawType op = read_op_and_size(&reader, &size); local
733 if (NOOP == op) {
739 if (this->preDraw(opIndex, op)) {
762 switch (op) {
    [all...]
  /external/skia/src/core/
SkPicturePlayback.cpp 636 * Read the next op code and chunk size from 'reader'. The returned size
639 * to the next chunk's op code. This also means that the size of a chunk
644 uint32_t op; local
647 op = temp;
650 UNPACK_8_24(temp, op, *size);
655 return (DrawType) op;
731 DrawType op = read_op_and_size(&reader, &size); local
733 if (NOOP == op) {
739 if (this->preDraw(opIndex, op)) {
762 switch (op) {
    [all...]
  /external/llvm/lib/Transforms/Scalar/
GVN.cpp     [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/cached/
toy.cpp 168 char Op;
171 BinaryExprAST(char op, ExprAST *lhs, ExprAST *rhs)
172 : Op(op), LHS(lhs), RHS(rhs) {}
224 unsigned Precedence; // Precedence if a binary op.
1040 if (Op == '=') {
1061 switch (Op) {
1076 Function *F = TheHelper->getFunction(MakeLegalFunctionName(std::string("binary")+Op));
    [all...]

Completed in 599 milliseconds

<<11121314151617181920>>