OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:BeginX
(Results
1 - 2
of
2
) sorted by null
/external/llvm/lib/Support/
SmallVector.cpp
27
if (
BeginX
== FirstEl) {
31
memcpy(NewElts, this->
BeginX
, CurSizeBytes);
34
NewElts = realloc(this->
BeginX
, NewCapacityInBytes);
38
this->
BeginX
= NewElts;
39
this->CapacityX = (char*)this->
BeginX
+ NewCapacityInBytes;
/external/llvm/include/llvm/ADT/
SmallVector.h
36
void *
BeginX
, *EndX, *CapacityX;
40
:
BeginX
(FirstEl), EndX(FirstEl), CapacityX((char*)FirstEl+Size) {}
49
return size_t((char*)EndX - (char*)
BeginX
);
54
return size_t((char*)CapacityX - (char*)
BeginX
);
57
bool LLVM_ATTRIBUTE_UNUSED_RESULT empty() const { return
BeginX
== EndX; }
88
return
BeginX
== static_cast<const void*>(&FirstEl);
93
BeginX
= EndX = CapacityX = &FirstEl;
113
iterator begin() { return (iterator)this->
BeginX
; }
114
const_iterator begin() const { return (const_iterator)this->
BeginX
; }
267
this->
BeginX
= NewElts
[
all
...]
Completed in 272 milliseconds