HomeSort by relevance Sort by last modified time
    Searched refs:End (Results 1 - 25 of 251) sorted by null

1 2 3 4 5 6 7 8 91011

  /external/llvm/lib/MC/
MCModule.cpp 16 uint64_t Begin, uint64_t End) {
17 assert(Begin < End && "Creating MCAtom with endpoints reversed?");
21 assert((!I.valid() || I.start() < End) && "Offset range already occupied!");
24 MCAtom *NewAtom = new MCAtom(Type, this, Begin, End);
26 OffsetMap.insert(Begin, End, NewAtom);
43 Atom->End = NewEnd;
MCAtom.cpp 19 assert(Address < End+Size &&
20 "Instruction not contiguous with end of atom!");
21 if (Address > End)
22 Parent->remap(this, Begin, End+Size);
29 Parent->remap(this, Begin, End+1);
35 assert((SplitPt > Begin && SplitPt <= End) &&
38 // Compute the new begin/end points.
42 uint64_t RightEnd = End;
55 assert(I != Data.end() && "Split point not found in range!");
57 std::copy(I, Data.end(), RightAtom->Data.end())
    [all...]
  /external/llvm/utils/count/
count.c 15 char Buffer[4096], *End;
22 Count = strtol(argv[1], &End, 10);
23 if (*End != '\0' && End != argv[1]) {
  /external/valgrind/main/drd/tests/
unit_bitmap.stderr.exp 2 End of DRD BM unit test.
  /external/llvm/include/llvm/Support/
SMLoc.h 48 SMLoc Start, End;
51 SMRange(SMLoc Start, SMLoc End) : Start(Start), End(End) {
52 assert(Start.isValid() == End.isValid() &&
53 "Start and end should either both be valid or both be invalid!");
59 } // end namespace llvm
  /external/llvm/lib/CodeGen/
AllocationOrder.h 27 const unsigned *End;
56 while (Pos != End) {
71 } // end namespace llvm
CodePlacementOpt.cpp 58 MachineFunction::iterator End);
70 } // end anonymous namespace
128 /// Splice - Move the sequence of instructions [Begin,End) to just before
136 MachineFunction::iterator End) {
137 assert(Begin != MF.begin() && End != MF.begin() && InsertPt != MF.begin() &&
140 MachineFunction::iterator OldEndPrior = prior(End);
142 MF.splice(InsertPt, Begin, End);
188 MachineFunction::iterator End = llvm::next(Begin);
197 if (Prior->isSuccessor(End))
205 if (!Prior->isSuccessor(End))
    [all...]
AllocationOrder.cpp 28 : Begin(0), End(0), Pos(0), RCI(RegClassInfo), OwnedBegin(false) {
57 End = P;
67 End = O.end();
AntiDepBreaker.h 47 MachineBasicBlock::iterator End,
LiveRangeCalc.cpp 32 E = LiveIn.end(); I != E; ++I) {
40 SlotIndex Start, End;
41 tie(Start, End) = Indexes->getMBBRange(MBB);
46 I->LI->addRange(LiveRange(Start, End, VNI));
131 SlotIndex Start, End;
132 tie(Start, End) = Indexes->getMBBRange(Pred);
136 VNInfo *VNI = LI->extendInBlock(Start, End);
184 E = LiveIn.end(); I != E; ++I) {
238 SlotIndex Start, End;
239 tie(Start, End) = Indexes->getMBBRange(MBB)
    [all...]
MachineLoopInfo.cpp 69 MachineFunction::iterator End = BotMBB->getParent()->end();
70 if (BotMBB != prior(End)) {
  /external/llvm/lib/VMCore/
User.cpp 47 Use *End = Begin + N;
48 (void) new(End) Use::UserRef(const_cast<User*>(this), 1);
49 return Use::initTags(Begin, End);
59 Use *End = Start + Us;
60 User *Obj = reinterpret_cast<User*>(End);
63 Use::initTags(Start, End);
79 } // End llvm namespace
Use.cpp 137 const Use *End = getImpliedUser();
138 const UserRef *ref = reinterpret_cast<const UserRef*>(End);
141 : (User*)End;
144 } // End llvm namespace
  /external/clang/include/clang/Analysis/Support/
BumpVector.h 54 T *Begin, *End, *Capacity;
58 : Begin(NULL), End(NULL), Capacity(NULL) {
65 destroy_range(Begin, End);
86 iterator end() { return End; } function in class:clang::BumpVector
87 const_iterator end() const { return End; } function in class:clang::BumpVector
90 reverse_iterator rbegin() { return reverse_iterator(end()); }
91 const_reverse_iterator rbegin() const{ return const_reverse_iterator(end()); }
95 bool empty() const { return Begin == End; }
    [all...]
  /external/clang/test/CodeGenCXX/
alloca-align.cpp 4 int Start, End;
  /external/clang/include/clang/AST/
ASTVector.h 56 T *Begin, *End, *Capacity;
58 void setEnd(T *P) { this->End = P; }
63 : Begin(NULL), End(NULL), Capacity(NULL) {
70 destroy_range(Begin, End);
91 iterator end() { return End; } function in class:clang::ASTVector
92 const_iterator end() const { return End; } function in class:clang::ASTVector
95 reverse_iterator rbegin() { return reverse_iterator(end()); }
96 const_reverse_iterator rbegin() const{ return const_reverse_iterator(end()); }
    [all...]
  /external/clang/include/clang/Rewrite/
RewriteRope.h 64 RopePiece(RopeRefCountString *Str, unsigned Start, unsigned End)
65 : StrData(Str), StartOffs(Start), EndOffs(End) {
117 // end iterator
159 iterator end() const { return iterator(); } function in class:clang::RopePieceBTree
200 iterator end() const { return Chunks.end(); } function in class:clang::RewriteRope
207 void assign(const char *Start, const char *End) {
209 if (Start != End)
210 Chunks.insert(0, MakeRopeString(Start, End));
213 void insert(unsigned Offset, const char *Start, const char *End) {
    [all...]
  /external/llvm/include/llvm/ADT/
SetVector.h 53 SetVector(It Start, It End) {
54 insert(Start, End);
77 /// @brief Get an iterator to the end of the SetVector.
78 iterator end() { function in class:llvm::SetVector
79 return vector_.end();
82 /// @brief Get a const_iterator to the end of the SetVector.
83 const_iterator end() const { function in class:llvm::SetVector
84 return vector_.end();
110 void insert(It Start, It End) {
111 for (; Start != End; ++Start
    [all...]
  /external/llvm/include/llvm/MC/
MCAtom.h 39 uint64_t Begin, End;
46 : Type(T), Parent(P), Begin(B), End(E) { }
MCModule.h 52 MCAtom *createAtom(MCAtom::AtomType Type, uint64_t Begin, uint64_t End);
  /external/llvm/lib/Archive/
ArchiveReader.cpp 23 static inline unsigned readInteger(const char*&At, const char*End) {
28 if (At == End)
40 const char* End = At + size;
41 while (At < End) {
42 unsigned offset = readInteger(At, End);
43 if (At == End) {
48 unsigned length = readInteger(At, End);
49 if (At == End) {
54 if (At + length > End) {
71 Archive::parseMemberHeader(const char*& At, const char* End, std::string* error
    [all...]
  /external/llvm/lib/AsmParser/
LLLexer.h 86 uint64_t atoull(const char *Buffer, const char *End);
87 uint64_t HexIntToVal(const char *Buffer, const char *End);
88 void HexToIntPair(const char *Buffer, const char *End, uint64_t Pair[2]);
89 void FP80HexToIntPair(const char *Buff, const char *End, uint64_t Pair[2]);
91 } // end namespace llvm
  /external/chromium/sdch/open-vcdiff/src/
headerparser.h 27 // This class contains a contiguous memory buffer with start and end pointers,
40 const char* End() const { return end_; }
68 // Jumps the parsing position to the end of the data chunk.
107 // To achieve this end, one extra level of indirection (a pointer to a
140 const char* End() const {
141 return parseable_chunk_->End();
196 // (which may extend far past the end of the header.)
207 // was reached before the end of the element to be parsed.) Once one of these
217 // function after an error or end-of-data condition is legal and does nothing.
246 // reached before the end of the values to be parsed.) If return value i
    [all...]
  /external/llvm/lib/Support/
StringExtras.cpp 44 StringRef::size_type End = Source.find_first_of(Delimiters, Start);
46 return std::make_pair(Source.slice(Start, End), Source.substr(End));
FormattedStream.cpp 21 /// column we end up in after output.
27 for (const char *End = Ptr + Size; Ptr != End; ++Ptr) {
40 /// column we end up in after output.

Completed in 1321 milliseconds

1 2 3 4 5 6 7 8 91011