HomeSort by relevance Sort by last modified time
    Searched defs:Begin (Results 126 - 150 of 458) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/llvm/lib/CodeGen/AsmPrinter/
CodeViewDebug.h 97 const MCSymbol *Begin = nullptr;
  /external/llvm/lib/ExecutionEngine/IntelJITEvents/
IntelJITEventListener.cpp 149 DILineInfoTable::iterator Begin = Lines.begin();
151 for (DILineInfoTable::iterator It = Begin; It != End; ++It) {
176 FunctionMessage.line_number_table = &*LineInfo.begin();
208 for (MethodAddressVector::iterator FI = Functions.begin(),
  /external/llvm/lib/MC/
MCContext.cpp 287 MCSymbol *Begin = nullptr;
289 Begin = createTempSymbol(BeginSymName, false);
293 Segment, Section, TypeAndAttributes, Reserved2, Kind, Begin);
369 MCSymbol *Begin = nullptr;
371 Begin = createTempSymbol(BeginSymName, false);
375 Begin, Associated);
407 MCSymbol *Begin = nullptr;
409 Begin = createTempSymbol(BeginSymName, false);
413 CachedName, Characteristics, COMDATSymbol, Selection, Kind, Begin);
MCELFStreamer.cpp 74 DF->getContents().append(Code.begin(), Code.end());
86 DF->getContents().append(EF->getContents().begin(), EF->getContents().end());
152 auto *Begin = cast_or_null<MCSymbolELF>(Section->getBeginSymbol());
153 if (!Begin) {
154 Begin = Ctx.getOrCreateSectionSymbol(*SectionELF);
155 Section->setBeginSymbol(Begin);
157 if (Begin->isUndefined()) {
158 Asm.registerSymbol(*Begin);
159 Begin->setType(ELF::STT_SECTION);
521 CEIF->getContents().append(Code.begin(), Code.end())
    [all...]
  /external/llvm/lib/Transforms/ObjCARC/
ObjCARCContract.cpp 170 Retain = dyn_cast_or_null<CallInst>(*DependingInstructions.begin());
287 BasicBlock::iterator Begin = Store->getParent()->begin();
288 while (I != Begin && GetBasicARCInstKind(&*I) != ARCInstKind::Retain) {
440 if (BBI == InstParent->begin()) {
  /external/llvm/lib/Transforms/Utils/
CloneFunction.cpp 49 for (BasicBlock::const_iterator II = BB->begin(), IE = BB->end();
135 for (Function::const_iterator BI = OldFunc->begin(), BE = OldFunc->end();
428 PFC.CloneBlock(BB, BB->begin(), CloneWorklist);
447 for (BasicBlock::const_iterator I = BI.begin(), E = BI.end(); I != E; ++I) {
503 PHINode *PN = cast<PHINode>(NewBB->begin());
520 BasicBlock::iterator I = NewBB->begin();
533 PN = cast<PHINode>(NewBB->begin());
535 BasicBlock::iterator I = NewBB->begin();
536 BasicBlock::const_iterator OldI = OldBB->begin();
563 Function::iterator Begin = cast<BasicBlock>(VMap[StartingBB])->getIterator()
    [all...]
  /external/swiftshader/third_party/llvm-subzero/include/llvm/Support/
Allocator.h 168 DeallocateSlabs(Slabs.begin(), Slabs.end());
173 DeallocateSlabs(Slabs.begin(), Slabs.end());
205 __asan_poison_memory_region(*Slabs.begin(), computeSlabSize(0));
206 DeallocateSlabs(std::next(Slabs.begin()), Slabs.end());
207 Slabs.erase(std::next(Slabs.begin()), Slabs.end());
277 for (auto I = Slabs.begin(), E = Slabs.end(); I != E; ++I)
278 TotalMemory += computeSlabSize(std::distance(Slabs.begin(), I));
342 computeSlabSize(std::distance(Slabs.begin(), I));
386 auto DestroyElements = [](char *Begin, char *End) {
387 assert(Begin == (char *)alignAddr(Begin, alignof(T)))
    [all...]
  /external/v8/src/zone/
zone-chunk-list.h 88 ForwardZoneChunkListIterator<T> begin();
92 ForwardZoneChunkListIterator<const T> begin() const;
211 static ForwardZoneChunkListIterator<T> Begin(ZoneChunkList<T>* list) {
215 if (list->back_ == nullptr) return Begin(list);
262 static ReverseZoneChunkListIterator<T> Begin(ZoneChunkList<T>* list) {
411 ForwardZoneChunkListIterator<T> ZoneChunkList<T>::begin() { function in class:v8::internal::ZoneChunkList::ZoneChunkList
412 return ForwardZoneChunkListIterator<T>::Begin(this);
422 return ReverseZoneChunkListIterator<T>::Begin(this);
431 ForwardZoneChunkListIterator<const T> ZoneChunkList<T>::begin() const { function in class:v8::internal::ZoneChunkList::ZoneChunkList
432 return ForwardZoneChunkListIterator<const T>::Begin(this)
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/clang/include/clang/AST/
ASTVector.h 35 T *Begin, *End;
48 ASTVector() : Begin(nullptr), End(nullptr), Capacity(nullptr, false) {}
50 ASTVector(ASTVector &&O) : Begin(O.Begin), End(O.End), Capacity(O.Capacity) {
51 O.Begin = O.End = nullptr;
57 : Begin(nullptr), End(nullptr), Capacity(nullptr, false) {
64 swap(Begin, O.Begin);
73 destroy_range(Begin, End);
92 iterator begin() { return Begin; function in class:clang::ASTVector
93 const_iterator begin() const { return Begin; } function in class:clang::ASTVector
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/clang/include/clang/Analysis/Support/
BumpVector.h 59 T *Begin, *End, *Capacity;
63 : Begin(nullptr), End(nullptr), Capacity(nullptr) {
70 destroy_range(Begin, End);
89 iterator begin() { return Begin; } function in class:clang::BumpVector
90 const_iterator begin() const { return Begin; } function in class:clang::BumpVector
97 reverse_iterator rend() { return reverse_iterator(begin()); }
98 const_reverse_iterator rend() const { return const_reverse_iterator(begin());}
100 bool empty() const { return Begin == End;
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/MC/
MCSection.h 59 MCSymbol *Begin;
95 MCSection(SectionVariant V, SectionKind K, MCSymbol *Begin);
106 MCSymbol *getBeginSymbol() { return Begin; }
111 assert(!Begin);
112 Begin = Sym;
156 iterator begin() { return Fragments.begin(); } function in class:llvm::MCSection
157 const_iterator begin() const { return Fragments.begin(); } function in class:llvm::MCSection
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Support/
Allocator.h 167 DeallocateSlabs(Slabs.begin(), Slabs.end());
172 DeallocateSlabs(Slabs.begin(), Slabs.end());
205 __asan_poison_memory_region(*Slabs.begin(), computeSlabSize(0));
206 DeallocateSlabs(std::next(Slabs.begin()), Slabs.end());
207 Slabs.erase(std::next(Slabs.begin()), Slabs.end());
283 for (auto I = Slabs.begin(), E = Slabs.end(); I != E; ++I)
284 TotalMemory += computeSlabSize(std::distance(Slabs.begin(), I));
356 computeSlabSize(std::distance(Slabs.begin(), I));
404 auto DestroyElements = [](char *Begin, char *End) {
405 assert(Begin == (char *)alignAddr(Begin, alignof(T)))
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/clang/AST/
ASTVector.h 35 T *Begin, *End;
48 ASTVector() : Begin(nullptr), End(nullptr), Capacity(nullptr, false) {}
50 ASTVector(ASTVector &&O) : Begin(O.Begin), End(O.End), Capacity(O.Capacity) {
51 O.Begin = O.End = nullptr;
57 : Begin(nullptr), End(nullptr), Capacity(nullptr, false) {
64 swap(Begin, O.Begin);
73 destroy_range(Begin, End);
92 iterator begin() { return Begin; function in class:clang::ASTVector
93 const_iterator begin() const { return Begin; } function in class:clang::ASTVector
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/clang/Analysis/Support/
BumpVector.h 59 T *Begin, *End, *Capacity;
63 : Begin(nullptr), End(nullptr), Capacity(nullptr) {
70 destroy_range(Begin, End);
89 iterator begin() { return Begin; } function in class:clang::BumpVector
90 const_iterator begin() const { return Begin; } function in class:clang::BumpVector
97 reverse_iterator rend() { return reverse_iterator(begin()); }
98 const_reverse_iterator rend() const { return const_reverse_iterator(begin());}
100 bool empty() const { return Begin == End;
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/MC/
MCSection.h 59 MCSymbol *Begin;
95 MCSection(SectionVariant V, SectionKind K, MCSymbol *Begin);
106 MCSymbol *getBeginSymbol() { return Begin; }
111 assert(!Begin);
112 Begin = Sym;
156 iterator begin() { return Fragments.begin(); } function in class:llvm::MCSection
157 const_iterator begin() const { return Fragments.begin(); } function in class:llvm::MCSection
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/Support/
Allocator.h 167 DeallocateSlabs(Slabs.begin(), Slabs.end());
172 DeallocateSlabs(Slabs.begin(), Slabs.end());
205 __asan_poison_memory_region(*Slabs.begin(), computeSlabSize(0));
206 DeallocateSlabs(std::next(Slabs.begin()), Slabs.end());
207 Slabs.erase(std::next(Slabs.begin()), Slabs.end());
283 for (auto I = Slabs.begin(), E = Slabs.end(); I != E; ++I)
284 TotalMemory += computeSlabSize(std::distance(Slabs.begin(), I));
356 computeSlabSize(std::distance(Slabs.begin(), I));
404 auto DestroyElements = [](char *Begin, char *End) {
405 assert(Begin == (char *)alignAddr(Begin, alignof(T)))
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/clang/AST/
ASTVector.h 35 T *Begin, *End;
48 ASTVector() : Begin(nullptr), End(nullptr), Capacity(nullptr, false) {}
50 ASTVector(ASTVector &&O) : Begin(O.Begin), End(O.End), Capacity(O.Capacity) {
51 O.Begin = O.End = nullptr;
57 : Begin(nullptr), End(nullptr), Capacity(nullptr, false) {
64 swap(Begin, O.Begin);
73 destroy_range(Begin, End);
92 iterator begin() { return Begin; function in class:clang::ASTVector
93 const_iterator begin() const { return Begin; } function in class:clang::ASTVector
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/clang/Analysis/Support/
BumpVector.h 59 T *Begin, *End, *Capacity;
63 : Begin(nullptr), End(nullptr), Capacity(nullptr) {
70 destroy_range(Begin, End);
89 iterator begin() { return Begin; } function in class:clang::BumpVector
90 const_iterator begin() const { return Begin; } function in class:clang::BumpVector
97 reverse_iterator rend() { return reverse_iterator(begin()); }
98 const_reverse_iterator rend() const { return const_reverse_iterator(begin());}
100 bool empty() const { return Begin == End;
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/llvm/MC/
MCSection.h 59 MCSymbol *Begin;
95 MCSection(SectionVariant V, SectionKind K, MCSymbol *Begin);
106 MCSymbol *getBeginSymbol() { return Begin; }
111 assert(!Begin);
112 Begin = Sym;
156 iterator begin() { return Fragments.begin(); } function in class:llvm::MCSection
157 const_iterator begin() const { return Fragments.begin(); } function in class:llvm::MCSection
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/llvm/Support/
Allocator.h 167 DeallocateSlabs(Slabs.begin(), Slabs.end());
172 DeallocateSlabs(Slabs.begin(), Slabs.end());
205 __asan_poison_memory_region(*Slabs.begin(), computeSlabSize(0));
206 DeallocateSlabs(std::next(Slabs.begin()), Slabs.end());
207 Slabs.erase(std::next(Slabs.begin()), Slabs.end());
283 for (auto I = Slabs.begin(), E = Slabs.end(); I != E; ++I)
284 TotalMemory += computeSlabSize(std::distance(Slabs.begin(), I));
356 computeSlabSize(std::distance(Slabs.begin(), I));
404 auto DestroyElements = [](char *Begin, char *End) {
405 assert(Begin == (char *)alignAddr(Begin, alignof(T)))
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/clang/AST/
ASTVector.h 35 T *Begin, *End;
48 ASTVector() : Begin(nullptr), End(nullptr), Capacity(nullptr, false) {}
50 ASTVector(ASTVector &&O) : Begin(O.Begin), End(O.End), Capacity(O.Capacity) {
51 O.Begin = O.End = nullptr;
57 : Begin(nullptr), End(nullptr), Capacity(nullptr, false) {
64 swap(Begin, O.Begin);
73 destroy_range(Begin, End);
92 iterator begin() { return Begin; function in class:clang::ASTVector
93 const_iterator begin() const { return Begin; } function in class:clang::ASTVector
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/clang/Analysis/Support/
BumpVector.h 59 T *Begin, *End, *Capacity;
63 : Begin(nullptr), End(nullptr), Capacity(nullptr) {
70 destroy_range(Begin, End);
89 iterator begin() { return Begin; } function in class:clang::BumpVector
90 const_iterator begin() const { return Begin; } function in class:clang::BumpVector
97 reverse_iterator rend() { return reverse_iterator(begin()); }
98 const_reverse_iterator rend() const { return const_reverse_iterator(begin());}
100 bool empty() const { return Begin == End;
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/llvm/DebugInfo/PDB/
UDTLayout.h 57 uint32_t Begin = getOffsetInParent();
58 uint32_t End = Begin + getSize();
59 return (Off >= Begin && Off < End);
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/llvm/MC/
MCSection.h 59 MCSymbol *Begin;
95 MCSection(SectionVariant V, SectionKind K, MCSymbol *Begin);
106 MCSymbol *getBeginSymbol() { return Begin; }
111 assert(!Begin);
112 Begin = Sym;
156 iterator begin() { return Fragments.begin(); } function in class:llvm::MCSection
157 const_iterator begin() const { return Fragments.begin(); } function in class:llvm::MCSection
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/llvm/Support/
Allocator.h 167 DeallocateSlabs(Slabs.begin(), Slabs.end());
172 DeallocateSlabs(Slabs.begin(), Slabs.end());
205 __asan_poison_memory_region(*Slabs.begin(), computeSlabSize(0));
206 DeallocateSlabs(std::next(Slabs.begin()), Slabs.end());
207 Slabs.erase(std::next(Slabs.begin()), Slabs.end());
286 for (auto I = Slabs.begin(), E = Slabs.end(); I != E; ++I)
287 TotalMemory += computeSlabSize(std::distance(Slabs.begin(), I));
359 computeSlabSize(std::distance(Slabs.begin(), I));
407 auto DestroyElements = [](char *Begin, char *End) {
408 assert(Begin == (char *)alignAddr(Begin, alignof(T)))
    [all...]

Completed in 854 milliseconds

1 2 3 4 56 7 8 91011>>