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

<<11121314151617181920>>

  /external/llvm/lib/Analysis/
BasicAliasAnalysis.cpp 283 const Operator *Op = dyn_cast<Operator>(V);
284 if (Op == 0) {
295 if (Op->getOpcode() == Instruction::BitCast) {
296 V = Op->getOperand(0);
300 const GEPOperator *GEPOp = dyn_cast<GEPOperator>(Op);
    [all...]
  /external/llvm/lib/IR/
AsmWriter.cpp 653 if (const MDNode *Op = dyn_cast_or_null<MDNode>(N->getOperand(i)))
654 CreateMetadataSlot(Op);
714 AtomicRMWInst::BinOp Op) {
715 switch (Op) {
716 default: Out << " <unknown operation " << Op << ">"; break;
    [all...]
Core.cpp 510 void LLVMSetOperand(LLVMValueRef Val, unsigned Index, LLVMValueRef Op) {
511 unwrap<User>(Val)->setOperand(Index, unwrap(Op));
620 MDNode *Op = Val ? unwrap<MDNode>(Val) : NULL;
621 if (Op)
622 N->addOperand(Op);
    [all...]
  /external/llvm/lib/Target/ARM/
ARMLoadStoreOptimizer.cpp 699 /// register into the LDM/STM/VLDM{D|S}/VSTM{D|S} op when possible:
844 /// register into the LDR/STR/FLD{D|S}/FST{D|S} op when possible:
    [all...]
  /external/clang/lib/AST/
Expr.cpp     [all...]
  /frameworks/base/libs/hwui/
DisplayListOp.h 82 // NOTE: it would be nice to declare constants and overriding the implementation in each op to
100 * State operations are applied directly to the renderer, but can cause the deferred drawing op
149 status |= ops[i].op->applyDraw(renderer, dirty);
168 * Query the conservative, local bounds (unmapped) bounds of the op.
195 // Helper method for determining op opaqueness. Assumes op fills its bounds in local
341 // setup the snapshot for deferral, and re-issue the op at flush time
501 ClipOp(SkRegion::Op op) : mOp(op) {}
1471 DrawTextOp& op = *((DrawTextOp*)ops[i].op); local
    [all...]
  /external/llvm/lib/Target/X86/
X86FastISel.cpp 379 // Look past no-op inttoptrs.
385 // Look past no-op ptrtoints.
428 const Value *Op = *i;
431 Disp += SL->getElementOffset(cast<ConstantInt>(Op)->getZExtValue());
439 if (const ConstantInt *CI = dyn_cast<ConstantInt>(Op)) {
444 if (isa<AddOperator>(Op) &&
445 (!isa<Instruction>(Op) ||
446 FuncInfo.MBBMap[cast<Instruction>(Op)->getParent()]
448 isa<ConstantInt>(cast<AddOperator>(Op)->getOperand(1))) {
452 cast<ConstantInt>(cast<AddOperator>(Op)->getOperand(1))
    [all...]
  /external/chromium_org/third_party/re2/re2/
prefilter.cc 20 Prefilter::Prefilter(Op op) {
21 op_ = op;
68 // Combines two Prefilters together to create an "op" (AND or OR).
71 Prefilter* Prefilter::AndOr(Op op, Prefilter* a, Prefilter* b) {
72 // If a, b can be rewritten as op, do so.
76 // Canonicalize: a->op <= b->op.
77 if (a->op() > b->op())
    [all...]
  /external/chromium_org/third_party/skia/src/core/
SkCanvas.cpp 183 fClip.op(SkIRect::MakeWH(width, height), SkRegion::kIntersect_Op);
188 updateClip->op(SkIRect::MakeXYWH(x, y, width, height),
637 (void)rec->fRasterClip->op(bounds, SkRegion::kIntersect_Op);
805 !fMCRec->fRasterClip->op(ir, SkRegion::kIntersect_Op)) {
    [all...]
  /external/clang/lib/Parse/
ParseExprCXX.cpp     [all...]
  /external/llvm/include/llvm/Analysis/
ScalarEvolutionExpressions.h 59 const SCEV *Op;
63 unsigned SCEVTy, const SCEV *op, Type *ty);
66 const SCEV *getOperand() const { return Op; }
85 const SCEV *op, Type *ty);
102 const SCEV *op, Type *ty);
119 const SCEV *op, Type *ty);
  /external/llvm/include/llvm/CodeGen/
MachineInstr.h 493 /// instruction (of the form "X = op Y, Z, ..."), which produces the same
716 /// %reg1024:6 = OP.
    [all...]
  /external/llvm/utils/TableGen/
CodeGenDAGPatterns.h 326 TreePatternNode(Record *Op, const std::vector<TreePatternNode*> &Ch,
328 : Operator(Op), Val(0), TransformFn(0), Children(Ch) {
  /external/regex-re2/re2/
prefilter.cc 20 Prefilter::Prefilter(Op op) {
21 op_ = op;
68 // Combines two Prefilters together to create an "op" (AND or OR).
71 Prefilter* Prefilter::AndOr(Op op, Prefilter* a, Prefilter* b) {
72 // If a, b can be rewritten as op, do so.
76 // Canonicalize: a->op <= b->op.
77 if (a->op() > b->op())
    [all...]
  /external/skia/src/core/
SkCanvas.cpp 183 fClip.op(SkIRect::MakeWH(width, height), SkRegion::kIntersect_Op);
188 updateClip->op(SkIRect::MakeXYWH(x, y, width, height),
637 (void)rec->fRasterClip->op(bounds, SkRegion::kIntersect_Op);
805 !fMCRec->fRasterClip->op(ir, SkRegion::kIntersect_Op)) {
    [all...]
  /external/skia/tests/
AAClipTest.cpp 101 rgn->op(rand_rect(rand, 100), SkRegion::kXOR_Op);
155 static const SkRegion::Op gRgnOps[] = {
258 SkRegion::Op op = gRgnOps[j]; local
261 bool nonEmptyAA = clip2.op(clip0, clip1, op);
262 bool nonEmptyBW = rgn2.op(rgn0, rgn1, op);
358 rc0.op(r, SkRegion::kIntersect_Op, false);
360 rc1.op(r, SkRegion::kIntersect_Op, true)
    [all...]
  /external/valgrind/main/lackey/
lk_main.c 297 typedef enum { OpLoad=0, OpStore=1, OpAlu=2 } Op;
353 static void instrument_detail(IRSB* sb, Op op, IRType type)
359 tl_assert(op < N_OPS);
362 argv = mkIRExprVec_1( mkIRExpr_HWord( (HWord)&detailCounts[op][typeIx] ) );
422 load-op-store instructions (x86, amd64), the instr is treated as if
592 Int op, tyIx; local
595 for (op = 0; op < N_OPS; op++
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/
ImageWallpaper.java 31 import android.graphics.Region.Op;
428 Op.DIFFERENCE);
  /frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/
GcSnapshot.java 486 if (regionOp == Region.Op.INTERSECT.nativeInt && mLayers.size() > 0) {
497 if (regionOp == Region.Op.REPLACE.nativeInt) {
  /external/chromium_org/third_party/skia/src/gpu/
GrStencil.h 106 uint8_t fPassOps[2]; // op to perform when faces pass (GrStencilOp)
107 uint8_t fFailOps[2]; // op to perform when faces fail (GrStencilOp)
189 void setPassOp(Face f, GrStencilOp op) { fPassOps[f] = op; fFlags = 0;}
190 void setFailOp(Face f, GrStencilOp op) { fFailOps[f] = op; fFlags = 0;}
313 * Given a thing to draw into the stencil clip, a fill type, and a set op
322 * @param op the set op to combine this element with the
335 static bool GetClipPasses(SkRegion::Op op
    [all...]
  /external/chromium_org/third_party/skia/src/pathops/
SkPathOpsOp.cpp 103 bool windingIsOp, PathOp op) {
109 switch (op) {
125 return gOpLookup[op][opActive][windingIsOp];
129 static bool bridgeOp(SkTArray<SkOpContour*, true>& contourList, const SkPathOp op,
151 if (current->activeOp(index, endIndex, xorMask, xorOpMask, op)) {
166 &unsortable, op, xorMask, xorOpMask);
234 bool Op(const SkPath& one, const SkPath& two, SkPathOp op, SkPath* result) {
239 DebugShowPath(one, two, op, debugName);
242 op = gOpInverse[op][one.isInverseFillType()][two.isInverseFillType()]
    [all...]
  /external/clang/include/clang/AST/
DeclarationName.h 377 /// operator corresponding to Op.
378 DeclarationName getCXXOperatorName(OverloadedOperatorKind Op);
  /external/llvm/include/llvm-c/
Core.h     [all...]
  /external/opencv/cvaux/src/
cvmat.cpp 552 _CvMAT_LOGIC_::Op op = mat_logic.op;
559 switch( op )
656 _CvMAT_LOGIC_::Op op = mat_logic.op;
663 switch( op )
742 switch( dot_op.op )
  /external/skia/src/gpu/
GrStencil.h 106 uint8_t fPassOps[2]; // op to perform when faces pass (GrStencilOp)
107 uint8_t fFailOps[2]; // op to perform when faces fail (GrStencilOp)
189 void setPassOp(Face f, GrStencilOp op) { fPassOps[f] = op; fFlags = 0;}
190 void setFailOp(Face f, GrStencilOp op) { fFailOps[f] = op; fFlags = 0;}
313 * Given a thing to draw into the stencil clip, a fill type, and a set op
322 * @param op the set op to combine this element with the
335 static bool GetClipPasses(SkRegion::Op op
    [all...]

Completed in 667 milliseconds

<<11121314151617181920>>