OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:DestructorNode
(Results
1 - 2
of
2
) sorted by null
/frameworks/base/libs/hwui/utils/
LinearAllocator.cpp
191
static_assert(std::is_standard_layout<
DestructorNode
>::value,
192
"
DestructorNode
must have standard layout");
193
static_assert(std::is_trivially_destructible<
DestructorNode
>::value,
194
"
DestructorNode
must be trivially destructable");
195
auto node = new (allocImpl(sizeof(
DestructorNode
)))
DestructorNode
();
204
DestructorNode
* previous = nullptr;
213
rewindIfLastAlloc(node, sizeof(
DestructorNode
));
223
// also rewind for the
DestructorNode
allocation which will
LinearAllocator.h
124
struct
DestructorNode
{
127
DestructorNode
* next = nullptr;
145
DestructorNode
* mDtorList = nullptr;
Completed in 93 milliseconds