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

1234567891011>>

/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?");
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.bat40 GoTo End
70 GoTo End
75 GoTo End
79 GoTo End
83 GoTo End
87 :End label
/external/clang/test/Analysis/
H A Dcxx-for-range-cfg.cpp11 T *End; member in class:rdar11671507_vector
/external/llvm/include/llvm/ADT/
H A DStringSet.h38 void insert(const InputIt &Begin, const InputIt &End) { argument
39 for (auto It = Begin; It != End; ++It)
H A DSequence.h68 } // End detail namespace.
72 ValueT End) {
74 detail::value_sequence_iterator<ValueT>(End));
71 seq(ValueT Begin, ValueT End) argument
/external/llvm/unittests/Support/
H A DIteratorTest.cpp29 test_iterator Begin, End; local
31 End = test_iterator(V.end());
44 EXPECT_NE(I, End);
45 EXPECT_GT(End, I);
46 EXPECT_LT(I, End);
57 EXPECT_EQ(End, I);
70 test_iterator Begin, End; local
72 End = test_iterator(V.end());
85 EXPECT_NE(I, End);
86 EXPECT_GT(End,
[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/swiftshader/third_party/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.h50 SMLoc Start, End; member in class:llvm::SMRange
53 SMRange(SMLoc St, SMLoc En) : Start(St), End(En) {
54 assert(Start.isValid() == End.isValid() &&
/external/llvm/lib/CodeGen/
H A DMachineLoopInfo.cpp67 MachineFunction::iterator End = BotMBB->getParent()->end(); local
68 if (BotMBB->getIterator() != std::prev(End)) {
H A DSafeStackLayout.cpp27 OS << " " << i << ": [" << Regions[i].Start << ", " << Regions[i].End
51 unsigned LastRegionEnd = Regions.empty() ? 0 : Regions.back().End;
53 unsigned End = Start + Obj.Size; local
54 Regions.emplace_back(Start, End, Obj.Range);
55 ObjectOffsets[Obj.Handle] = End;
63 unsigned End = Start + Obj.Size; local
64 DEBUG(dbgs() << " First candidate: " << Start << " .. " << End << "\n"); local
66 DEBUG(dbgs() << " Examining region: " << R.Start << " .. " << R.End
68 assert(End >= R.Start);
69 if (Start >= R.End) {
77 DEBUG(dbgs() << " Overlaps. Next candidate: " << Start << " .. " << End local
[all...]
/external/llvm/lib/ProfileData/
H A DProfileSummaryBuilder.cpp63 auto End = CountFrequencies.end(); local
78 while (CurrSum < DesiredCount && Iter != End) {
/external/llvm/lib/Support/
H A DStringExtras.cpp43 StringRef::size_type End = Source.find_first_of(Delimiters, Start); local
45 return std::make_pair(Source.slice(Start, End), Source.substr(End));
/external/llvm/lib/Target/SystemZ/
H A DSystemZTargetTransformInfo.cpp151 unsigned Start, End; local
152 if (TII->isRxSBGMask(Imm.getZExtValue(), BitSize, Start, End))
/external/llvm/unittests/ADT/
H A DDAGDeltaAlgorithmTest.cpp49 std::set<unsigned> range(unsigned Start, unsigned End) { argument
51 while (Start != End)
/external/mesa3d/src/gallium/drivers/r300/compiler/
H A Dradeon_variable.h40 int End; member in struct:live_intervals
/external/swiftshader/third_party/LLVM/lib/CodeGen/
H A DAllocationOrder.h27 const unsigned *End; member in class:llvm::AllocationOrder
56 while (Pos != End) {
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
H A DTreePatternLexer.cs40 public const int End = 2; field in class:Antlr.Runtime.Tree.TreePatternLexer
101 return End;
/external/clang/include/clang/CodeGen/
H A DSwiftCallingConv.h48 CharUnits End; member in struct:clang::CodeGen::swiftcall::SwiftAggLowering::StorageEntry
52 return End - Begin;
/external/compiler-rt/lib/profile/
H A DInstrProfilingBuffer.c28 const __llvm_profile_data *End) {
29 intptr_t BeginI = (intptr_t)Begin, EndI = (intptr_t)End;
27 __llvm_profile_get_data_size(const __llvm_profile_data *Begin, const __llvm_profile_data *End) argument
/external/libcxx/benchmarks/
H A Dfilesystem.bench.cpp55 auto End = Iter(PP.native().end()); local
58 benchmark::DoNotOptimize(End);
60 const path P(Start, End);
/external/llvm/include/llvm/DebugInfo/DWARF/
H A DDWARFDebugLoc.h27 uint64_t End; member in struct:llvm::DWARFDebugLoc::Entry
/external/llvm/lib/DebugInfo/DWARF/
H A DDWARFDebugAbbrev.cpp103 const auto End = AbbrDeclSets.end(); local
104 if (PrevAbbrOffsetPos != End && PrevAbbrOffsetPos->first == CUAbbrOffset) {
109 if (Pos != End) {
/external/llvm/lib/MC/
H A DMCSymbol.cpp39 NameEntryStorageTy *End = Start + (Name ? 1 : 0); local
40 return End;

Completed in 1080 milliseconds

1234567891011>>