HomeSort by relevance Sort by last modified time
    Searched full:custom_allocator (Results 1 - 3 of 3) sorted by null

  /external/vulkan-validation-layers/layers/
object_tracker.h 205 bool custom_allocator = pAllocator != nullptr; local
215 pNewObjNode->status = custom_allocator ? OBJSTATUS_CUSTOM_ALLOCATOR : OBJSTATUS_NONE;
231 bool custom_allocator = pAllocator != nullptr; local
250 if (allocated_with_custom && !custom_allocator && expected_custom_allocator_code != VALIDATION_ERROR_UNDEFINED) {
257 } else if (!allocated_with_custom && custom_allocator &&
  /external/flatbuffers/docs/source/
CppUsage.md 129 - `native_custom_alloc`:"custom_allocator" (on a table or struct): When using the
140 table mytable(native_custom_alloc:"custom_allocator") {
144 with custom_allocator defined before flatbuffers.h is included, as:
146 template <typename T> struct custom_allocator : public std::allocator<T> {
152 typedef custom_allocator<U> other;
163 custom_allocator() throw() {}
165 custom_allocator(const custom_allocator<U>&) throw() {}
  /prebuilts/ndk/r16/sources/third_party/vulkan/src/layers/
object_tracker.cpp 261 bool custom_allocator = pAllocator != nullptr; local
269 pNewObjNode->status = custom_allocator ? OBJSTATUS_CUSTOM_ALLOCATOR : OBJSTATUS_NONE;
281 bool custom_allocator = pAllocator != nullptr; local
299 if (custom_allocator ^ allocated_with_custom) {
303 (custom_allocator ? "" : "not "), object_name[object_type], object_handle,
    [all...]

Completed in 113 milliseconds