OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:allocated_with_custom
(Results
1 - 2
of
2
) sorted by null
/external/vulkan-validation-layers/layers/
object_tracker.h
249
auto
allocated_with_custom
= (pNode->status & OBJSTATUS_CUSTOM_ALLOCATOR) ? true : false;
local
250
if (
allocated_with_custom
&& !custom_allocator && expected_custom_allocator_code != VALIDATION_ERROR_UNDEFINED) {
257
} else if (!
allocated_with_custom
&& custom_allocator &&
/prebuilts/ndk/r16/sources/third_party/vulkan/src/layers/
object_tracker.cpp
298
auto
allocated_with_custom
= (pNode->status & OBJSTATUS_CUSTOM_ALLOCATOR) ? true : false;
local
299
if (custom_allocator ^
allocated_with_custom
) {
304
(
allocated_with_custom
? "" : "not "));
[
all
...]
Completed in 93 milliseconds