Home | History | Annotate | Download | only in Support

Lines Matching refs:End

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)
100 End = MaxAddress;
101 assert(End >= Address);
102 Size = End - Address;
128 const unsigned char *End) {
129 return new RawMemoryObject(Start, End);