Searched defs:Begin (Results 1 - 25 of 185) sorted by relevance

12345678

/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
/external/clang/test/CodeGenCXX/
H A DPR24289.cpp6 const T *Begin; member in struct:std::initializer_list
10 : Begin(B), Size(S) {}
/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.h71 iterator_range<detail::value_sequence_iterator<ValueT>> seq(ValueT Begin, argument
73 return make_range(detail::value_sequence_iterator<ValueT>(Begin),
/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...]
/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/sfntly/cpp/src/sfntly/data/
H A Dgrowable_memory_byte_array.cc78 byte_t* GrowableMemoryByteArray::Begin() { function in class:sfntly::GrowableMemoryByteArray
H A Dmemory_byte_array.cc88 byte_t* MemoryByteArray::Begin() { function in class:sfntly::MemoryByteArray
/external/swiftshader/third_party/LLVM/lib/CodeGen/
H A DAllocationOrder.h26 const unsigned *Begin; member in class:llvm::AllocationOrder
51 Pos = Begin;
H A DMachineLoopInfo.cpp55 MachineFunction::iterator Begin = TopMBB->getParent()->begin(); local
56 if (TopMBB != Begin) {
60 if (TopMBB == Begin) break;
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
H A DTreePatternLexer.cs39 public const int Begin = 1; field in class:Antlr.Runtime.Tree.TreePatternLexer
96 return Begin;
/external/clang/include/clang/CodeGen/
H A DSwiftCallingConv.h47 CharUnits Begin; member in struct:clang::CodeGen::swiftcall::SwiftAggLowering::StorageEntry
52 return End - Begin;
/external/compiler-rt/lib/profile/
H A DInstrProfilingBuffer.c27 uint64_t __llvm_profile_get_data_size(const __llvm_profile_data *Begin, argument
29 intptr_t BeginI = (intptr_t)Begin, EndI = (intptr_t)End;
/external/llvm/include/llvm/DebugInfo/DWARF/
H A DDWARFDebugLoc.h25 uint64_t Begin; member in struct:llvm::DWARFDebugLoc::Entry
/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/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/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/v8/src/compiler/
H A Dpipeline-statistics.cc16 void PipelineStatistics::CommonStats::Begin( function in class:v8::internal::compiler::PipelineStatistics::CommonStats
61 total_stats_.Begin(this);
77 phase_kind_stats_.Begin(this);
92 phase_stats_.Begin(this);
/external/v8/tools/clang/rewrite_to_chrome_style/tests/
H A Dfunctions-expected.cc36 void Begin() {} function in namespace:blink
/external/clang/unittests/AST/
H A DCommentLexer.cpp65 SourceLocation Begin = SourceMgr.getLocForStartOfFile(File); local
67 Lexer L(Allocator, Diags, Traits, Begin, Source, Source + strlen(Source));
/external/libvpx/libvpx/test/
H A Divf_video_source.h48 virtual void Begin() { function in class:libvpx_test::IVFVideoSource
H A Dwebm_video_source.h41 virtual void Begin() { function in class:libvpx_test::WebMVideoSource
/external/llvm/include/llvm/MC/
H A DMCSectionCOFF.h54 MCSymbol *Begin)
55 : MCSection(SV_COFF, K, Begin), SectionName(Section),
52 MCSectionCOFF(StringRef Section, unsigned Characteristics, MCSymbol *COMDATSymbol, int Selection, SectionKind K, MCSymbol *Begin) argument
H A DMCWinEH.h32 const MCSymbol *Begin = nullptr; member in struct:llvm::WinEH::FrameInfo
49 : Begin(BeginFuncEHLabel), Function(Function) {}
52 : Begin(BeginFuncEHLabel), Function(Function),

Completed in 4262 milliseconds

12345678