Searched refs:Begin (Results 1 - 25 of 302) sorted by relevance

1234567891011>>

/external/llvm/tools/sanstats/
H A Dsanstats.cpp38 uint64_t ReadLE(char Size, const char *Begin, const char *End) { argument
41 while (Begin < End && Pos != Size) {
42 Result |= uint64_t(uint8_t(*Begin)) << (Pos * 8);
43 ++Begin;
49 const char *ReadModule(char SizeofPtr, const char *Begin, const char *End) { argument
50 const char *FilenameBegin = Begin;
51 while (Begin != End && *Begin)
52 ++Begin;
53 if (Begin
124 const char *Begin = MB->getBufferStart(), *End = MB->getBufferEnd(); local
[all...]
/external/llvm/unittests/Support/
H A DIteratorTest.cpp29 test_iterator Begin, End; local
30 Begin = V.begin();
33 test_iterator I = Begin;
37 EXPECT_EQ(I, Begin + i);
38 EXPECT_EQ(I, std::next(Begin, i));
39 test_iterator J = Begin;
42 EXPECT_EQ(*V[i], Begin[i]);
47 EXPECT_GE(I, Begin);
48 EXPECT_LE(Begin, I);
50 EXPECT_EQ(i, I - Begin);
70 test_iterator Begin, End; local
[all...]
H A DYAMLParserTest.cpp269 auto Begin = Node->begin(); local
272 EXPECT_TRUE(Begin != End);
273 EXPECT_FALSE(Begin != Begin);
284 auto Begin = Node->begin(); local
287 EXPECT_FALSE(Begin == End);
288 EXPECT_TRUE(Begin == Begin);
302 auto Begin = Node->begin(); local
308 EXPECT_TRUE(Begin !
323 auto Begin = Node->begin(); local
[all...]
/external/e2fsprogs/
H A D.missing-copyright3 find . -type f \! -name \*~ \! -exec grep -q Begin-Header \{\} \; -print \
/external/swiftshader/third_party/LLVM/lib/MC/
H A DMCModule.cpp16 uint64_t Begin, uint64_t End) {
17 assert(Begin < End && "Creating MCAtom with endpoints reversed?");
20 IntervalMap<uint64_t, MCAtom*>::iterator I = OffsetMap.find(Begin);
24 MCAtom *NewAtom = new MCAtom(Type, this, Begin, End);
26 OffsetMap.insert(Begin, End, NewAtom);
33 IntervalMap<uint64_t, MCAtom*>::iterator I = OffsetMap.find(Atom->Begin);
42 Atom->Begin = NewBegin;
15 createAtom(MCAtom::AtomType Type, uint64_t Begin, uint64_t End) argument
H A DMCAtom.cpp22 Parent->remap(this, Begin, End+Size);
29 Parent->remap(this, Begin, End+1);
35 assert((SplitPt > Begin && SplitPt <= End) &&
39 uint64_t LeftBegin = Begin;
77 assert((TruncPt >= Begin && TruncPt < End) &&
80 Parent->remap(this, Begin, TruncPt);
83 Data.resize(TruncPt - Begin + 1);
/external/clang/include/clang/Analysis/Support/
H A DBumpVector.h59 T *Begin, *End, *Capacity; member in class:clang::BumpVector
63 : Begin(nullptr), End(nullptr), Capacity(nullptr) {
70 destroy_range(Begin, End);
89 iterator begin() { return Begin; }
90 const_iterator begin() const { return Begin; }
100 bool empty() const { return Begin == End; }
101 size_type size() const { return End-Begin; }
104 assert(Begin + idx < End);
105 return Begin[idx];
108 assert(Begin
[all...]
/external/llvm/include/llvm/ADT/
H A DStringExtras.h154 inline std::string join_impl(IteratorT Begin, IteratorT End, argument
157 if (Begin == End)
160 S += (*Begin);
161 while (++Begin != End) {
163 S += (*Begin);
169 inline std::string join_impl(IteratorT Begin, IteratorT End, argument
172 if (Begin == End)
175 size_t Len = (std::distance(Begin, End) - 1) * Separator.size();
176 for (IteratorT I = Begin; I != End; ++I)
177 Len += (*Begin)
190 join(IteratorT Begin, IteratorT End, StringRef Separator) argument
[all...]
H A DStringSet.h38 void insert(const InputIt &Begin, const InputIt &End) { argument
39 for (auto It = Begin; It != End; ++It)
/external/clang/test/CodeGenCXX/
H A DPR24289.cpp6 const T *Begin; member in struct:std::initializer_list
10 : Begin(B), Size(S) {}
/external/swiftshader/third_party/LLVM/lib/CodeGen/
H A DAllocationOrder.h26 const unsigned *Begin; member in class:llvm::AllocationOrder
51 Pos = Begin;
H A DAllocationOrder.cpp28 : Begin(0), End(0), Pos(0), RCI(RegClassInfo), OwnedBegin(false) {
53 Begin = P;
66 Begin = O.begin();
78 delete [] Begin;
H A DMachineLoopInfo.cpp55 MachineFunction::iterator Begin = TopMBB->getParent()->begin(); local
56 if (TopMBB != Begin) {
60 if (TopMBB == Begin) break;
H A DCodePlacementOpt.cpp57 MachineFunction::iterator Begin,
128 /// Splice - Move the sequence of instructions [Begin,End) to just before
135 MachineFunction::iterator Begin,
137 assert(Begin != MF.begin() && End != MF.begin() && InsertPt != MF.begin() &&
139 MachineFunction::iterator OldBeginPrior = prior(Begin);
142 MF.splice(InsertPt, Begin, End);
144 prior(Begin)->updateTerminator();
187 MachineFunction::iterator Begin = Pred; local
188 MachineFunction::iterator End = llvm::next(Begin);
189 while (Begin !
133 Splice(MachineFunction &MF, MachineFunction::iterator InsertPt, MachineFunction::iterator Begin, MachineFunction::iterator End) argument
308 MachineFunction::iterator Begin = BB; local
[all...]
/external/clang/include/clang/AST/
H A DASTVector.h35 T *Begin, *End; member in class:clang::ASTVector
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; }
[all...]
/external/swiftshader/third_party/llvm-subzero/include/llvm/ADT/
H A DStringExtras.h161 inline std::string join_impl(IteratorT Begin, IteratorT End, argument
164 if (Begin == End)
167 S += (*Begin);
168 while (++Begin != End) {
170 S += (*Begin);
176 inline std::string join_impl(IteratorT Begin, IteratorT End, argument
179 if (Begin == End)
182 size_t Len = (std::distance(Begin, End) - 1) * Separator.size();
183 for (IteratorT I = Begin; I != End; ++I)
184 Len += (*Begin)
232 join(IteratorT Begin, IteratorT End, StringRef Separator) argument
[all...]
/external/swiftshader/third_party/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) { }
/external/llvm/tools/llvm-pdbdump/
H A DLinePrinter.h42 void SetFilters(std::list<Regex> &List, Iter Begin, Iter End) { argument
44 for (; Begin != End; ++Begin)
45 List.emplace_back(StringRef(*Begin));
/external/llvm/include/llvm/MC/
H A DMCWinEH.h32 const MCSymbol *Begin = nullptr; member in struct:llvm::WinEH::FrameInfo
49 : Begin(BeginFuncEHLabel), Function(Function) {}
52 : Begin(BeginFuncEHLabel), Function(Function),
/external/llvm/lib/CodeGen/
H A DMachineLoopInfo.cpp52 MachineFunction::iterator Begin = TopMBB->getParent()->begin(); local
53 if (TopMBB->getIterator() != Begin) {
57 if (TopMBB->getIterator() == Begin)
H A DSlotIndexes.cpp142 MachineBasicBlock::iterator Begin,
148 while (Begin != MBB->begin() && !hasIndex(*Begin))
149 --Begin;
153 bool includeStart = (Begin == MBB->begin());
158 startIdx = getInstructionIndex(*Begin);
174 while (ListI != ListB || MBBI != Begin || (includeStart && !pastStart)) {
181 bool MBBIAtBegin = MBBI == Begin && (!includeStart || pastStart);
185 if (MBBI != Begin)
190 if (MBBI != Begin)
141 repairIndexesInRange(MachineBasicBlock *MBB, MachineBasicBlock::iterator Begin, MachineBasicBlock::iterator End) argument
[all...]
/external/swiftshader/third_party/LLVM/lib/VMCore/
H A DUser.cpp46 Use *Begin = static_cast<Use*>(::operator new(size)); local
47 Use *End = Begin + N;
49 return Use::initTags(Begin, End);
/external/capstone/bindings/vb6/
H A DForm1.frm3 Begin VB.Form Form1
13 Begin VB.CommandButton Command2
21 Begin VB.CommandButton Command1
30 Begin VB.CommandButton Command1
39 Begin VB.CommandButton Command1
48 Begin VB.CommandButton Command1
57 Begin VB.CommandButton Command1
66 Begin MSComctlLib.ListView lv
98 Begin VB.ListBox List1
114 Begin V
[all...]
/external/clang/lib/Sema/
H A DSemaFixItUtils.cpp60 const SourceLocation Begin = FullExpr->getSourceRange().getBegin(); local
99 S, Begin, VK_LValue);
110 CharSourceRange::getTokenRange(Begin, Begin)));
113 Hints.push_back(FixItHint::CreateInsertion(Begin, "*("));
116 Hints.push_back(FixItHint::CreateInsertion(Begin, "*"));
137 S, Begin, VK_RValue);
144 CharSourceRange::getTokenRange(Begin, Begin)));
147 Hints.push_back(FixItHint::CreateInsertion(Begin, "
[all...]
/external/llvm/lib/MC/
H A DStringTableBuilder.cpp49 static void multikey_qsort(StringPair **Begin, StringPair **End, int Pos) { argument
51 if (End - Begin <= 1)
54 // Partition items. Items in [Begin, P) are greater than the pivot,
56 int Pivot = charTailAt(*Begin, Pos);
57 StringPair **P = Begin;
59 for (StringPair **R = Begin + 1; R < Q;) {
69 multikey_qsort(Begin, P, Pos);
73 Begin = P;

Completed in 535 milliseconds

1234567891011>>