HomeSort by relevance Sort by last modified time
    Searched refs:Begin (Results 1 - 25 of 671) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/llvm/tools/sanstats/
sanstats.cpp 38 uint64_t ReadLE(char Size, const char *Begin, const char *End) {
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) {
50 const char *FilenameBegin = Begin;
51 while (Begin != End && *Begin)
52 ++Begin;
53 if (Begin == End
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/tools/sanstats/
sanstats.cpp 38 uint64_t ReadLE(char Size, const char *Begin, const char *End) {
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) {
50 const char *FilenameBegin = Begin;
51 while (Begin != End && *Begin)
52 ++Begin;
53 if (Begin == End
    [all...]
  /external/llvm/unittests/Support/
IteratorTest.cpp 29 test_iterator Begin, End;
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)
    [all...]
  /external/e2fsprogs/
.missing-copyright 3 find . -type f \! -name \*~ \! -exec grep -q Begin-Header \{\} \; -print \
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/Eot/
CodeFragment.py 24 # @param Begin The start position tuple.
28 def __init__(self, Str, Begin, End, CommentType):
30 self.StartPos = Begin
42 # @param Begin The start position tuple.
45 def __init__(self, Str, Begin, End):
47 self.StartPos = Begin
58 # @param Begin The start position tuple.
61 def __init__(self, Lvalue, Op, Exp, Begin, End):
65 self.StartPos = Begin
76 # @param Begin The start position tuple.
    [all...]
  /external/swiftshader/third_party/LLVM/lib/MC/
MCModule.cpp 16 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;
MCAtom.cpp 22 Parent->remap(this, Begin, End+Size);
29 Parent->remap(this, Begin, End+1);
35 assert((SplitPt > Begin && SplitPt <= End) &&
38 // Compute the new begin/end points.
39 uint64_t LeftBegin = Begin;
53 std::vector<MCData>::iterator I = Data.begin() + (RightBegin - LeftBegin);
60 std::vector<std::pair<uint64_t, MCInst> >::iterator I = Text.begin();
77 assert((TruncPt >= Begin && TruncPt < End) &&
80 Parent->remap(this, Begin, TruncPt);
83 Data.resize(TruncPt - Begin + 1)
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/Ecc/
CodeFragment.py 24 # @param Begin The start position tuple.
28 def __init__(self, Str, Begin, End, CommentType):
30 self.StartPos = Begin
42 # @param Begin The start position tuple.
45 def __init__(self, Str, Begin, End):
47 self.StartPos = Begin
58 # @param Begin The start position tuple.
61 def __init__(self, Str, Begin, End):
63 self.StartPos = Begin
74 # @param Begin The start position tuple.
    [all...]
  /art/dexlayout/
dex_container.h 38 virtual uint8_t* Begin() = 0;
51 return Begin() + Size();
60 uint8_t* Begin() override {
  /external/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...]
  /external/swiftshader/third_party/LLVM/lib/CodeGen/
AllocationOrder.h 26 const unsigned *Begin;
51 Pos = Begin;
AllocationOrder.cpp 28 : Begin(0), End(0), Pos(0), RCI(RegClassInfo), OwnedBegin(false) {
53 Begin = P;
66 Begin = O.begin();
78 delete [] Begin;
  /external/llvm/include/llvm/ADT/
StringExtras.h 154 inline std::string join_impl(IteratorT Begin, IteratorT End,
157 if (Begin == End)
160 S += (*Begin);
161 while (++Begin != End) {
163 S += (*Begin);
169 inline std::string join_impl(IteratorT Begin, IteratorT End,
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).size()
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/unittests/ADT/
IteratorTest.cpp 49 test_iterator Begin, End;
50 Begin = V.begin();
53 test_iterator I = Begin;
57 EXPECT_EQ(I, Begin + i);
58 EXPECT_EQ(I, std::next(Begin, i));
59 test_iterator J = Begin;
62 EXPECT_EQ(*V[i], Begin[i]);
67 EXPECT_GE(I, Begin);
68 EXPECT_LE(Begin, I)
    [all...]
  /external/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...]
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Support/
Parallel.h 91 void parallel_for_each(IterTy Begin, IterTy End, FuncTy Fn) {
92 concurrency::parallel_for_each(Begin, End, Fn);
96 void parallel_for_each_n(IndexTy Begin, IndexTy End, FuncTy Fn) {
97 concurrency::parallel_for(Begin, End, Fn);
151 void parallel_for_each(IterTy Begin, IterTy End, FuncTy Fn) {
156 ptrdiff_t TaskSize = std::distance(Begin, End) / 1024;
161 while (TaskSize < std::distance(Begin, End)) {
162 TG.spawn([=, &Fn] { std::for_each(Begin, Begin + TaskSize, Fn); });
163 Begin += TaskSize
    [all...]
  /art/libartbase/base/
mem_map_test.cc 61 return map.Begin();
76 uint8_t* base0 = m0.Begin();
89 EXPECT_EQ(m0.Begin(), base0) << error_msg;
93 uint8_t* base1 = m1.Begin();
115 MemMap m2 = m1.RemapAtEnd(m1.Begin(),
177 void* source_addr = source.Begin();
178 void* dest_addr = dest.Begin();
183 memcpy(source.Begin(), data.data(), data.size());
193 ASSERT_EQ(memcmp(dest.Begin(), data.data(), dest.Size()), 0);
214 uint8_t* source_addr = source.Begin();
    [all...]
  /art/dex2oat/dex/
dex_to_dex_decompiler_test.cc 73 int cmp = memcmp(original_dex_file->Begin(),
74 updated_dex_file->Begin(),
81 cmp = memcmp(original_dex_file->Begin(), updated_dex_file->Begin(), updated_dex_file->Size());
102 cmp = memcmp(original_dex_file->Begin(), updated_dex_file->Begin(), updated_dex_file->Size());
  /external/clang/test/CodeGenCXX/
PR24289.cpp 6 const T *Begin;
10 : Begin(B), Size(S) {}
  /external/llvm/tools/llvm-pdbdump/
LinePrinter.h 42 void SetFilters(std::list<Regex> &List, Iter Begin, Iter End) {
44 for (; Begin != End; ++Begin)
45 List.emplace_back(StringRef(*Begin));
  /art/runtime/gc/collector/
immune_spaces_test.cc 35 DummyOatFile(uint8_t* begin, uint8_t* end) : OatFile("Location", /*executable=*/ false) {
36 begin_ = begin;
111 std::unique_ptr<DummyOatFile> oat_file(new DummyOatFile(oat_map.Begin(), oat_map.End()));
114 new (image_map.Begin()) ImageHeader(
117 /*image_begin=*/ PointerToLowMemUInt32(image_map.Begin()),
120 /*image_roots=*/ PointerToLowMemUInt32(image_map.Begin()) + 1,
123 /*oat_file_begin=*/ PointerToLowMemUInt32(oat_map.Begin()),
124 /*oat_data_begin=*/ PointerToLowMemUInt32(oat_map.Begin()),
125 /*oat_data_end=*/ PointerToLowMemUInt32(oat_map.Begin() + oat_size),
126 /*oat_file_end=*/ PointerToLowMemUInt32(oat_map.Begin() + oat_size)
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/EbcDxe/EbcDebugger/
EdbSupportString.c 572 CHAR16 *Begin;
575 Begin = (String == NULL) ? mLineBuffer : String;
576 if (Begin == NULL) {
580 Begin += StrSpn (Begin, CharSet);
581 if (*Begin == L'\0') {
586 End = StrBrk (Begin, CharSet);
593 return Begin;
611 CHAR16 *Begin;
615 Begin = (String == NULL) ? mFieldBuffer : String;
    [all...]
  /external/swiftshader/third_party/llvm-subzero/include/llvm/ADT/
StringExtras.h 161 inline std::string join_impl(IteratorT Begin, IteratorT End,
164 if (Begin == End)
167 S += (*Begin);
168 while (++Begin != End) {
170 S += (*Begin);
176 inline std::string join_impl(IteratorT Begin, IteratorT End,
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).size()
    [all...]
  /art/runtime/gc/accounting/
read_barrier_table.h 47 CHECK(mem_map_.IsValid() && mem_map_.Begin() != nullptr)
51 uint8_t* entry_start = EntryFromAddr(space->Begin());
74 memset(mem_map_.Begin(), kSetEntryValue, mem_map_.Size());
77 for (uint32_t* p = reinterpret_cast<uint32_t*>(mem_map_.Begin());
95 uint8_t* entry_addr = mem_map_.Begin() + reinterpret_cast<uintptr_t>(heap_addr) / kRegionSize;
111 uint8_t* begin = mem_map_.Begin(); local
113 return entry_addr >= begin && entry_addr < end;
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/AMDGPU/
GCNIterativeScheduler.cpp 62 MachineBasicBlock::iterator Begin,
67 auto BB = Begin->getParent();
70 auto I = Begin;
93 MachineBasicBlock::iterator Begin,
96 const auto BB = Begin->getParent();
99 const auto LiveIns = getLiveRegsBefore(*Begin, *LIS);
114 printRegion(OS, R->Begin, R->End, LIS, 1);
115 printLivenessInfo(OS, R->Begin, R->End, LIS);
126 printRegion(OS, R->Begin, R->End, LIS);
152 auto BB = R.Begin->getParent()
    [all...]

Completed in 939 milliseconds

1 2 3 4 5 6 7 8 91011>>