Definition at line 24 of file GrMemoryPoolTest.cpp.
◆ A()
◆ ~A()
◆ checkValues()
virtual bool A::checkValues |
( |
int |
v | ) |
|
|
inlinevirtual |
Reimplemented in B, C, and E.
Definition at line 30 of file GrMemoryPoolTest.cpp.
30 {
31 return fChar == static_cast<char>(v & 0xFF);
32 }
◆ Create()
Definition at line 158 of file GrMemoryPoolTest.cpp.
158 {
160 case 0:
162 case 1:
164 case 2:
166 case 3:
168 case 4:
170 default:
171
172 return nullptr;
173 }
174}
uint32_t nextRangeU(uint32_t min, uint32_t max)
◆ operator delete()
void A::operator delete |
( |
void * |
p | ) |
|
|
inline |
Definition at line 43 of file GrMemoryPoolTest.cpp.
43 {
44 if (!gPool) {
46 } else {
47 return gPool->release(
p);
48 }
49 }
◆ operator new()
void * A::operator new |
( |
size_t |
size | ) |
|
|
inline |
Definition at line 35 of file GrMemoryPoolTest.cpp.
35 {
36 if (!gPool) {
37 return ::operator
new(
size);
38 } else {
39 return gPool->allocate(
size);
40 }
41 }
it will be possible to load the file into Perfetto s trace viewer disable asset Prevents usage of any non test fonts unless they were explicitly Loaded via prefetched default font Indicates whether the embedding started a prefetch of the default font manager before creating the engine run In non interactive keep the shell running after the Dart script has completed enable serial On low power devices with low core running concurrent GC tasks on threads can cause them to contend with the UI thread which could potentially lead to jank This option turns off all concurrent GC activities domain network JSON encoded network policy per domain This overrides the DisallowInsecureConnections switch Embedder can specify whether to allow or disallow insecure connections at a domain level old gen heap size
◆ ResetAllocator()
static void A::ResetAllocator |
( |
| ) |
|
|
inlinestatic |
◆ SetAllocator()
static void A::SetAllocator |
( |
size_t |
preallocSize, |
|
|
size_t |
minAllocSize |
|
) |
| |
|
inlinestatic |
Definition at line 53 of file GrMemoryPoolTest.cpp.
53 {
55 }
static std::unique_ptr< GrMemoryPool > Make(size_t preallocSize, size_t minAllocSize)
◆ setValues()
virtual void A::setValues |
( |
int |
v | ) |
|
|
inlinevirtual |
Reimplemented in B, C, and E.
Definition at line 27 of file GrMemoryPoolTest.cpp.
27 {
28 fChar = static_cast<char>(v & 0xFF);
29 }
◆ ValidatePool()
static void A::ValidatePool |
( |
| ) |
|
|
inlinestatic |
Definition at line 59 of file GrMemoryPoolTest.cpp.
59 {
60#ifdef SK_DEBUG
61 gPool->validate();
62#endif
63 }
The documentation for this class was generated from the following file: