Searched defs:End (Results 1 - 25 of 129) sorted by relevance

123456

/external/llvm/lib/MC/
H A DMCModule.cpp16 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;
15 createAtom(MCAtom::AtomType Type, uint64_t Begin, uint64_t End) argument
/external/bison/djgpp/
H A Ddjunpack.bat41 GoTo End
71 GoTo End
76 GoTo End
80 GoTo End
84 GoTo End
88 :End label
H A Dconfig.bat431 goto End
435 goto End
439 goto End
443 goto End
447 goto End
451 goto End
455 goto End
459 goto End
463 goto End
469 :End label
[all...]
/external/llvm/utils/count/
H A Dcount.c15 char Buffer[4096], *End; local
22 Count = strtol(argv[1], &End, 10);
23 if (*End != '\0' && End != argv[1]) {
/external/clang/test/CodeGenCXX/
H A Dalloca-align.cpp4 int Start, End; member in struct:s0
/external/llvm/include/llvm/Support/
H A DSMLoc.h48 SMLoc Start, End; member in class:llvm::SMRange
51 SMRange(SMLoc Start, SMLoc End) : Start(Start), End(End) { argument
52 assert(Start.isValid() == End.isValid() &&
/external/llvm/lib/CodeGen/
H A DAllocationOrder.h27 const unsigned *End; member in class:llvm::AllocationOrder
56 while (Pos != End) {
H A DMachineLoopInfo.cpp69 MachineFunction::iterator End = BotMBB->getParent()->end(); local
70 if (BotMBB != prior(End)) {
H A DLiveRangeCalc.cpp40 SlotIndex Start, End; local
41 tie(Start, End) = Indexes->getMBBRange(MBB);
46 I->LI->addRange(LiveRange(Start, End, VNI));
131 SlotIndex Start, End; local
132 tie(Start, End) = Indexes->getMBBRange(Pred);
136 VNInfo *VNI = LI->extendInBlock(Start, End);
238 SlotIndex Start, End; local
239 tie(Start, End) = Indexes->getMBBRange(MBB);
250 I->LI->addRange(LiveRange(Start, End, VNI));
/external/clang/lib/Sema/
H A DSemaFixItUtils.cpp60 const SourceLocation End = S.PP.getLocForEndOfToken(FullExpr->getSourceRange() local
113 Hints.push_back(FixItHint::CreateInsertion(End, ")"));
147 Hints.push_back(FixItHint::CreateInsertion(End, ")"));
/external/llvm/include/llvm/MC/
H A DMCAtom.h39 uint64_t Begin, End; member in class:llvm::MCAtom
46 : Type(T), Parent(P), Begin(B), End(E) { }
H A DMCWin64EH.h64 MCWin64EHUnwindInfo() : Begin(0), End(0), ExceptionHandler(0),
70 MCSymbol *End; member in struct:llvm::MCWin64EHUnwindInfo
/external/llvm/lib/Support/
H A DStringExtras.cpp44 StringRef::size_type End = Source.find_first_of(Delimiters, Start); local
46 return std::make_pair(Source.slice(Start, End), Source.substr(End));
/external/llvm/lib/VMCore/
H A DUse.cpp137 const Use *End = getImpliedUser(); local
138 const UserRef *ref = reinterpret_cast<const UserRef*>(End);
141 : (User*)End;
144 } // End llvm namespace
H A DUser.cpp47 Use *End = Begin + N; local
48 (void) new(End) Use::UserRef(const_cast<User*>(this), 1);
49 return Use::initTags(Begin, End);
59 Use *End = Start + Us; local
60 User *Obj = reinterpret_cast<User*>(End);
63 Use::initTags(Start, End);
79 } // End llvm namespace
/external/llvm/unittests/ADT/
H A DDAGDeltaAlgorithmTest.cpp49 std::set<unsigned> range(unsigned Start, unsigned End) { argument
51 while (Start != End)
H A DDeltaAlgorithmTest.cpp64 std::set<unsigned> range(unsigned Start, unsigned End) { argument
66 while (Start != End)
/external/llvm/include/llvm/ADT/
H A DSetVector.h53 SetVector(It Start, It End) { argument
54 insert(Start, End);
110 void insert(It Start, It End) {
111 for (; Start != End; ++Start)
170 SmallSetVector(It Start, It End) {
171 this->insert(Start, End);
175 } // End llvm namespace
/external/llvm/tools/llvm-objdump/
H A DMCFunction.cpp32 uint64_t End, const MCInstrAnalysis *Ana,
52 for (;Index < End; Index += Size) {
30 createFunctionFromMC(StringRef Name, const MCDisassembler *DisAsm, const MemoryObject &Region, uint64_t Start, uint64_t End, const MCInstrAnalysis *Ana, raw_ostream &DebugOut, SmallVectorImpl<uint64_t> &Calls) argument
/external/chromium/chrome/browser/ui/gtk/
H A Dslide_animator_gtk.cc92 void SlideAnimatorGtk::End() { function in class:SlideAnimatorGtk
93 animation_->End();
/external/chromium/sdch/open-vcdiff/src/
H A Dheaderparser.h40 const char* End() const { return end_; } function in class:open_vcdiff::ParseableChunk
140 const char* End() const { function in class:open_vcdiff::DeltaWindowSection
141 return parseable_chunk_->End();
332 const char* End() const { function in class:open_vcdiff::VCDiffHeaderParser
333 return parseable_chunk_.End();
/external/clang/test/SemaTemplate/
H A Dexample-dynarray.cpp16 dynarray() { Start = Last = End = 0; }
20 Last = End = Start + other.size();
44 Last = End = NewStart + other.size();
49 unsigned capacity() const { return End - Start; }
91 T* Start, *Last, *End; member in class:dynarray
96 if (Last == End) {
113 End = Start + NewCapacity;
/external/llvm/include/llvm/Object/
H A DMachOObject.h118 size_t End = getStringTableData().find('\0', Index); local
119 return getStringTableData().slice(Index, End);
/external/llvm/lib/Target/X86/Utils/
H A DX86ShuffleDecode.cpp177 unsigned End = NumLaneElts / 2; local
179 for (unsigned i = Start; i != End; ++i) {
185 End += NumLaneElts;
/external/webkit/Source/WebCore/rendering/svg/
H A DSVGMarkerData.h38 End enumerator in enum:WebCore::SVGMarkerData::Type
66 case End:

Completed in 514 milliseconds

123456