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

1 2 3 4 5 6 7 8 91011>>

  /external/llvm/lib/CodeGen/
SafeStackLayout.cpp 27 OS << " " << i << ": [" << Regions[i].Start << ", " << Regions[i].End
51 unsigned LastRegionEnd = Regions.empty() ? 0 : Regions.back().End;
53 unsigned End = Start + Obj.Size;
54 Regions.emplace_back(Start, End, Obj.Range);
55 ObjectOffsets[Obj.Handle] = End;
63 unsigned End = Start + Obj.Size;
64 DEBUG(dbgs() << " First candidate: " << Start << " .. " << End << "\n");
66 DEBUG(dbgs() << " Examining region: " << R.Start << " .. " << R.End
68 assert(End >= R.Start);
69 if (Start >= R.End) {
    [all...]
SafeStackLayout.h 24 unsigned End;
26 StackRegion(unsigned Start, unsigned End,
28 : Start(Start), End(End), Range(Range) {}
58 unsigned getFrameSize() { return Regions.empty() ? 0 : Regions.back().End; }
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/Eot/
CodeFragment.py 16 ## The description of comment contents and start & end position
25 # @param End The end position tuple.
28 def __init__(self, Str, Begin, End, CommentType):
31 self.EndPos = End
34 ## The description of preprocess directives and start & end position
43 # @param End The end position tuple.
45 def __init__(self, Str, Begin, End):
48 self.EndPos = End
    [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?");
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;
  /toolchain/binutils/binutils-2.25/binutils/testsuite/binutils-all/
testranges-ia64.d 9 Offset Begin End
11 00000000 <End of list>
13 00000010 <End of list>
testranges.d 9 Offset Begin End
11 00000000 <End of list>
13 00000010 <End of list>
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/Ecc/
CodeFragment.py 16 ## The description of comment contents and start & end position
25 # @param End The end position tuple.
28 def __init__(self, Str, Begin, End, CommentType):
31 self.EndPos = End
34 ## The description of preprocess directives and start & end position
43 # @param End The end position tuple.
45 def __init__(self, Str, Begin, End):
48 self.EndPos = End
    [all...]
  /external/llvm/utils/count/
count.c 15 char Buffer[4096], *End;
22 Count = strtol(argv[1], &End, 10);
23 if (*End != '\0' && End != argv[1]) {
  /external/swiftshader/third_party/LLVM/utils/count/
count.c 15 char Buffer[4096], *End;
22 Count = strtol(argv[1], &End, 10);
23 if (*End != '\0' && End != argv[1]) {
  /external/llvm/tools/sanstats/
sanstats.cpp 38 uint64_t ReadLE(char Size, const char *Begin, const char *End) {
41 while (Begin < End && Pos != Size) {
49 const char *ReadModule(char SizeofPtr, const char *Begin, const char *End) {
51 while (Begin != End && *Begin)
53 if (Begin == End)
58 if (Begin == End)
67 uint64_t Addr = ReadLE(SizeofPtr, Begin, End);
69 uint64_t Data = ReadLE(SizeofPtr, Begin, End);
72 if (Begin > End)
76 if (Begin == End)
    [all...]
  /external/valgrind/drd/tests/
unit_bitmap.stderr.exp 2 End of DRD BM unit test.
  /device/linaro/bootloader/edk2/UefiCpuPkg/PiSmmCpuDxeSmm/
SyncTimer.c 38 UINT64 End;
40 TimerFrequency = GetPerformanceCounterProperties (&Start, &End);
45 if (End < Start) {
47 mCycle = Start - End;
50 mCycle = End - Start;
  /external/compiler-rt/lib/esan/
esan_shadow.h 72 // Do not pass in the open-ended end value to the formula as it will fail.
94 uptr End;
140 static inline bool getAppRegion(u32 i, uptr *Start, uptr *End) {
144 *End = AppRegions[i].End;
151 if (Mem >= AppRegions[i].Start && Mem < AppRegions[i].End)
162 static inline bool getShadowRegion(u32 i, uptr *Start, uptr *End) {
177 // The formula fails for the end itself.
178 *End = appToShadow(AppRegions[AppIdx].End - 1) + 1
    [all...]
  /external/llvm/include/llvm/Support/
SMLoc.h 50 SMLoc Start, End;
53 SMRange(SMLoc St, SMLoc En) : Start(St), End(En) {
54 assert(Start.isValid() == End.isValid() &&
55 "Start and end should either both be valid or both be invalid!");
61 } // end namespace llvm
  /external/llvm/unittests/Support/
IteratorTest.cpp 29 test_iterator Begin, End;
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;
72 End = test_iterator(V.end());
    [all...]
  /bionic/libc/private/
bionic_systrace.h 24 // The trace will end when the contructor goes out of scope.
31 void End();
  /external/clang/test/Analysis/
cxx-for-range-cfg.cpp 11 T *End;
  /external/swiftshader/third_party/LLVM/lib/CodeGen/
AllocationOrder.h 27 const unsigned *End;
56 while (Pos != End) {
71 } // end namespace llvm
  /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);
91 iterator end() { return End; } function in class:clang::BumpVector
92 const_iterator end() const { return End; } function in class:clang::BumpVector
95 reverse_iterator rbegin() { return reverse_iterator(end()); }
96 const_reverse_iterator rbegin() const{ return const_reverse_iterator(end()); }
100 bool empty() const { return Begin == End; }
    [all...]
  /external/swiftshader/third_party/LLVM/lib/VMCore/
User.cpp 47 Use *End = Begin + N;
48 (void) new(End) Use::UserRef(const_cast<User*>(this), 1);
49 return Use::initTags(Begin, End);
59 Use *End = Start + Us;
60 User *Obj = reinterpret_cast<User*>(End);
63 Use::initTags(Start, End);
79 } // End llvm namespace
  /external/llvm/lib/Support/
StreamingMemoryObject.cpp 20 RawMemoryObject(const unsigned char *Start, const unsigned char *End) :
21 FirstChar(Start), LastChar(End) {
22 assert(LastChar >= FirstChar && "Invalid start/end range");
55 uint64_t End = Address + Size;
56 if (End > BufferSize)
57 End = BufferSize;
59 assert(static_cast<int64_t>(End - Address) >= 0);
60 Size = End - Address;
98 uint64_t End = Address + Size;
99 if (End > MaxAddress
    [all...]
  /external/clang/include/clang/AST/
ASTVector.h 35 T *Begin, *End;
38 void setEnd(T *P) { this->End = P; }
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) {
65 swap(End, O.End);
73 destroy_range(Begin, End);
94 iterator end() { return End; } function in class:clang::ASTVector
95 const_iterator end() const { return End; } function in class:clang::ASTVector
    [all...]
  /external/clang/include/clang/Rewrite/Core/
RewriteRope.h 67 unsigned End)
68 : StrData(std::move(Str)), StartOffs(Start), EndOffs(End) {}
100 // end iterator
147 iterator end() const { return iterator(); } function in class:clang::RopePieceBTree
183 iterator end() const { return Chunks.end(); } function in class:clang::RewriteRope
190 void assign(const char *Start, const char *End) {
192 if (Start != End)
193 Chunks.insert(0, MakeRopeString(Start, End));
196 void insert(unsigned Offset, const char *Start, const char *End) {
    [all...]
  /frameworks/base/tools/aapt2/compile/
Pseudolocalizer.h 34 virtual std::string End() { return {}; }
50 std::string End() { return impl_->End(); }
  /build/soong/androidmk/parser/
ast.go 10 End() Pos
35 func (x *Assignment) End() Pos { return x.Value.End() }
47 func (x *Comment) End() Pos { return Pos(int(x.CommentPos) + len(x.Comment)) }
61 func (x *Directive) End() Pos {
65 return x.Args.End()
84 func (x *Rule) End() Pos { return Pos(int(x.RecipePos) + len(x.Recipe)) }
91 func (x *Variable) End() Pos { return x.Name.End() }

Completed in 800 milliseconds

1 2 3 4 5 6 7 8 91011>>