HomeSort by relevance Sort by last modified time
    Searched refs:End (Results 1 - 25 of 407) 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 49 SMLoc Start, End;
52 SMRange(SMLoc St, SMLoc En) : Start(St), End(En) {
53 assert(Start.isValid() == End.isValid() &&
54 "Start and end should either both be valid or both be invalid!");
60 } // end namespace llvm
  /external/clang/test/Analysis/
cxx-for-range-cfg.cpp 11 T *End;
  /external/llvm/lib/IR/
User.cpp 50 Use *End = Begin + N;
51 (void) new(End) Use::UserRef(const_cast<User*>(this), 1);
52 return Use::initTags(Begin, End);
62 Use *End = Start + Us;
63 User *Obj = reinterpret_cast<User*>(End);
66 Use::initTags(Start, End);
90 } // 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/include/clang/AST/
DeclLookups.h 27 StoredDeclsMap::iterator It, End;
37 StoredDeclsMap::iterator End)
38 : It(It), End(End) {}
49 } while (It != End &&
74 return all_lookups_iterator(Map->begin(), Map->end());
83 return all_lookups_iterator(Map->end(), Map->end());
87 } // end namespace clang
ASTVector.h 58 T *Begin, *End, *Capacity;
60 void setEnd(T *P) { this->End = P; }
64 ASTVector() : Begin(NULL), End(NULL), Capacity(NULL) { }
67 : Begin(NULL), End(NULL), Capacity(NULL) {
74 destroy_range(Begin, End);
95 iterator end() { return End; } function in class:clang::ASTVector
96 const_iterator end() const { return End; } function in class:clang::ASTVector
99 reverse_iterator rbegin() { return reverse_iterator(end()); }
    [all...]
  /external/llvm/lib/CodeGen/
CodePlacementOpt.cpp 55 MachineFunction::iterator End);
67 } // end anonymous namespace
125 /// Splice - Move the sequence of instructions [Begin,End) to just before
133 MachineFunction::iterator End) {
134 assert(Begin != MF.begin() && End != MF.begin() && InsertPt != MF.begin() &&
137 MachineFunction::iterator OldEndPrior = prior(End);
139 MF.splice(InsertPt, Begin, End);
185 MachineFunction::iterator End = llvm::next(Begin);
194 if (Prior->isSuccessor(End))
202 if (!Prior->isSuccessor(End))
    [all...]
LiveRangeCalc.cpp 111 E = LiveIn.end(); I != E; ++I) {
116 SlotIndex Start, End;
117 tie(Start, End) = Indexes->getMBBRange(MBB);
121 End = I->Kill;
129 Updater.add(Start, End, I->Value);
219 SlotIndex Start, End;
220 tie(Start, End) = Indexes->getMBBRange(Pred);
224 VNInfo *VNI = LI->extendInBlock(Start, End);
247 array_pod_sort(WorkList.begin(), WorkList.end());
253 I = WorkList.begin(), E = WorkList.end(); I != E; ++I)
    [all...]
  /external/clang/test/CodeGenCXX/
alloca-align.cpp 4 int Start, End;
  /external/clang/include/clang/Rewrite/Core/
RewriteRope.h 65 RopePiece(RopeRefCountString *Str, unsigned Start, unsigned End)
66 : StrData(Str), StartOffs(Start), EndOffs(End) {
123 // end iterator
165 iterator end() const { return iterator(); } function in class:clang::RopePieceBTree
207 iterator end() const { return Chunks.end(); } function in class:clang::RewriteRope
214 void assign(const char *Start, const char *End) {
216 if (Start != End)
217 Chunks.insert(0, MakeRopeString(Start, End));
220 void insert(unsigned Offset, const char *Start, const char *End) {
    [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 27 static inline unsigned readInteger(const char*&At, const char*End) {
32 if (At == End)
44 const char* End = At + size;
45 while (At < End) {
46 unsigned offset = readInteger(At, End);
47 if (At == End) {
52 unsigned length = readInteger(At, End);
53 if (At == End) {
58 if (At + length > End) {
75 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/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));
  /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/compiler-rt/lib/msan/
msan_report.cc 44 const char *End() { return Default(); }
65 d.Origin(), d.End());
71 d.Origin(), d.End());
97 Printf("%s", d.End());
116 Printf("%s", d.End());
  /external/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/clang/unittests/Tooling/
CommentHandlerTest.cpp 92 CommentList::const_iterator End;
97 : Current(Comments.begin()), End(Comments.end()), PP(PP)
101 if (Current != End) {
102 EXPECT_TRUE(Current == End) << "Unexpected comment \""
109 EXPECT_TRUE(Current != End) << "Comment " << Message << " not found";
110 if (Current == End) return;
221 } // end namespace clang
TestVisitor.h 120 It = ExpectedMatches.begin(), End = ExpectedMatches.end();
121 It != End; ++It) {
135 It = DisallowedMatches.begin(), End = DisallowedMatches.end();
136 It != End; ++It) {
142 It = ExpectedMatches.begin(), End = ExpectedMatches.end();
143 It != End; ++It) {
  /external/compiler-rt/lib/ubsan/
ubsan_diag.h 91 Location Start, End;
95 Range() : Start(), End(), Text() {}
96 Range(MemoryLocation Start, MemoryLocation End, const char *Text)
97 : Start(Start), End(End), Text(Text) {}
99 Location getEnd() const { return End; }

Completed in 889 milliseconds

1 2 3 4 5 6 7 8 91011>>