HomeSort by relevance Sort by last modified time
    Searched refs:Offs (Results 1 - 17 of 17) sorted by null

  /external/clang/include/clang/Edit/
FileOffset.h 21 unsigned Offs;
23 FileOffset() : Offs(0) { }
24 FileOffset(FileID fid, unsigned offs) : FID(fid), Offs(offs) { }
29 unsigned getOffset() const { return Offs; }
33 NewOffs.Offs += offset;
38 return LHS.FID == RHS.FID && LHS.Offs == RHS.Offs;
46 return LHS.Offs < RHS.Offs
    [all...]
EditedSource.h 56 bool canInsertInOffset(SourceLocation OrigLoc, FileOffset Offs);
71 bool commitInsert(SourceLocation OrigLoc, FileOffset Offs, StringRef text,
73 bool commitInsertFromRange(SourceLocation OrigLoc, FileOffset Offs,
80 FileEditsTy::iterator getActionForOffset(FileOffset Offs);
Commit.h 112 FileOffset Offs, StringRef text, bool beforePreviousInsertions);
113 void addInsertFromRange(SourceLocation OrigLoc, FileOffset Offs,
116 void addRemove(SourceLocation OrigLoc, FileOffset Offs, unsigned Len);
121 bool canInsertInOffset(SourceLocation OrigLoc, FileOffset Offs);
122 bool canRemoveRange(CharSourceRange range, FileOffset &Offs, unsigned &Len);
124 FileOffset &Offs, unsigned &Len);
  /external/clang/lib/Edit/
Commit.cpp 48 FileOffset Offs;
49 if ((!afterToken && !canInsert(loc, Offs)) ||
50 ( afterToken && !canInsertAfterToken(loc, Offs, loc))) {
55 addInsert(loc, Offs, text, beforePreviousInsertions);
69 FileOffset Offs;
70 if ((!afterToken && !canInsert(loc, Offs)) ||
71 ( afterToken && !canInsertAfterToken(loc, Offs, loc))) {
82 addInsertFromRange(loc, Offs, RangeOffs, RangeLen, beforePreviousInsertions);
87 FileOffset Offs;
89 if (!canRemoveRange(range, Offs, Len))
    [all...]
EditedSource.cpp 30 bool EditedSource::canInsertInOffset(SourceLocation OrigLoc, FileOffset Offs) {
31 FileEditsTy::iterator FA = getActionForOffset(Offs);
33 if (FA->first != Offs)
53 FileOffset Offs, StringRef text,
55 if (!canInsertInOffset(OrigLoc, Offs))
68 FileEdit &FA = FileEdits[Offs];
85 FileOffset Offs,
136 return commitInsert(OrigLoc, Offs, StrVec.str(), beforePreviousInsertions);
240 StringRef text, FileOffset offs, unsigned len,
242 assert(!offs.getFID().isInvalid())
277 FileOffset offs = I->first; local
    [all...]
  /external/clang/include/clang/Basic/
SourceManagerInternals.h 47 static LineEntry get(unsigned Offs, unsigned Line, int Filename,
51 E.FileOffset = Offs;
SourceManager.h     [all...]
  /external/libvpx/vp8/common/ppc/
loopfilter_filters_altivec.asm 840 .macro hread_uv Dest, U, V, Offs, VMask
841 lvx \U, \Offs, r3
842 lvx \V, \Offs, r4
846 .macro hwrite_uv New, U, V, Offs, Umask, Vmask
849 stvx \U, \Offs, r3 ;# Write to frame buffer
850 stvx \V, \Offs, r4
1139 .macro RLV Offs
1140 stw r0, (\Offs*4)(r5)
1144 .macro WLV Offs
1145 lwz r0, (\Offs*4)(r5
    [all...]
  /external/llvm/lib/Target/CellSPU/
SPUISelDAGToDAG.cpp 516 SDValue Offs;
518 Offs = ((OpOpc == ISD::STORE) ? Op->getOperand(3) : Op->getOperand(2));
520 if (Offs.getOpcode() == ISD::Constant || Offs.getOpcode() == ISD::UNDEF) {
521 if (Offs.getOpcode() == ISD::UNDEF)
522 Offs = CurDAG->getTargetConstant(0, Offs.getValueType());
524 Base = Offs;
    [all...]
  /external/clang/lib/Basic/
SourceManager.cpp     [all...]
  /external/clang/lib/CodeGen/
CGCall.cpp     [all...]
  /external/clang/lib/Frontend/
ASTUnit.cpp     [all...]
  /external/llvm/include/llvm/CodeGen/
SelectionDAG.h 372 unsigned Align = 0, int Offs = 0, bool isT=false,
380 unsigned Align = 0, int Offs = 0, bool isT=false,
    [all...]
  /external/llvm/lib/Transforms/Scalar/
LoopStrengthReduce.cpp     [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineCompares.cpp 421 Value *Offs = ConstantInt::get(Idx->getType(), -FirstTrueElement);
422 Idx = Builder->CreateAdd(Idx, Offs);
435 Value *Offs = ConstantInt::get(Idx->getType(), -FirstFalseElement);
436 Idx = Builder->CreateAdd(Idx, Offs);
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
TargetLowering.cpp     [all...]
SelectionDAGBuilder.cpp     [all...]

Completed in 233 milliseconds