HomeSort by relevance Sort by last modified time
    Searched defs:Offs (Results 1 - 10 of 10) 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...]
  /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...]
  /external/clang/include/clang/Basic/
SourceManager.h     [all...]
  /external/clang/lib/Basic/
SourceManager.cpp     [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/Frontend/
ASTUnit.cpp     [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
TargetLowering.cpp     [all...]
SelectionDAGBuilder.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/Transforms/Scalar/
LoopStrengthReduce.cpp     [all...]

Completed in 648 milliseconds