/external/piex/src/image_type_recognition/ |
D | image_type_recognition_lite.cc | 50 return a->RequestedSize() < b->RequestedSize(); in Compare() 60 virtual size_t RequestedSize() const = 0; 69 return source.pointerToSubArray(0 /* pos */, RequestedSize()); in LimitSource() 152 virtual size_t RequestedSize() const { return 10000; } in RequestedSize() function in piex::image_type_recognition::__anonf8996e8c0111::ArwTypeChecker 178 if (!IsSignatureFound(limited_source, 0 /* offset */, RequestedSize(), in IsMyType() 197 limited_source, 0 /* offset */, RequestedSize(), in IsMyType() 209 virtual size_t RequestedSize() const { return 16; } in RequestedSize() function in piex::image_type_recognition::__anonf8996e8c0111::Cr2TypeChecker 239 virtual size_t RequestedSize() const { return 14; } in RequestedSize() function in piex::image_type_recognition::__anonf8996e8c0111::CrwTypeChecker 265 virtual size_t RequestedSize() const { return 5000; } in RequestedSize() function in piex::image_type_recognition::__anonf8996e8c0111::DcrTypeChecker 295 return IsSignatureFound(limited_source, 0 /* offset */, RequestedSize(), in IsMyType() [all …]
|
/external/tensorflow/tensorflow/core/common_runtime/gpu/ |
D | gpu_debug_allocator.cc | 100 size_t req_size = base_allocator_->RequestedSize(allocated_ptr); in AllocateRaw() 120 size_t GPUDebugAllocator::RequestedSize(const void* ptr) const { in RequestedSize() function in tensorflow::GPUDebugAllocator 121 auto req_size = base_allocator_->RequestedSize(static_cast<const char*>(ptr) - in RequestedSize() 149 size_t req_size = base_allocator_->RequestedSize(original_ptr); in CheckFooter() 172 size_t req_size = base_allocator_->RequestedSize(allocated_ptr); in AllocateRaw() 189 size_t req_size = base_allocator_->RequestedSize(ptr); in DeallocateRaw() 205 size_t GPUNanResetAllocator::RequestedSize(const void* ptr) const { in RequestedSize() function in tensorflow::GPUNanResetAllocator 206 return base_allocator_->RequestedSize(ptr); in RequestedSize()
|
D | gpu_debug_allocator.h | 43 size_t RequestedSize(const void* ptr) const override; 72 size_t RequestedSize(const void* ptr) const override;
|
D | gpu_bfc_allocator_test.cc | 122 size_t req_size = a.RequestedSize(ptrs[i - 1]); in TEST_P() 178 size_t req_size = a.RequestedSize(existing_ptrs[i - 1]); in TEST_P() 241 EXPECT_EQ(4, a.RequestedSize(t1)); in TEST_P() 305 size_t req_size = a.RequestedSize(existing_ptrs[i - 1]); in TEST_P() 471 a.RequestedSize(initial_ptrs[2 * i]) + in TestBinDebugInfo() 472 a.RequestedSize(initial_ptrs[2 * i + 1])); in TestBinDebugInfo() 519 EXPECT_EQ(requested_size, a.RequestedSize(initial_ptrs[2 * i])); in TestBinDebugInfo()
|
D | gpu_debug_allocator_test.cc | 250 EXPECT_EQ(4, a.RequestedSize(t1)); in TEST()
|
/external/llvm-project/compiler-rt/lib/scudo/ |
D | scudo_errors.cpp | 72 void NORETURN reportOutOfMemory(uptr RequestedSize) { in reportOutOfMemory() argument 74 RequestedSize); in reportOutOfMemory()
|
D | scudo_errors.h | 30 void NORETURN reportOutOfMemory(uptr RequestedSize);
|
/external/gwp_asan/gwp_asan/ |
D | common.h | 52 void RecordAllocation(uintptr_t Addr, size_t RequestedSize); 73 size_t RequestedSize = 0; member
|
D | common.cpp | 43 RequestedSize = AllocSize; in RecordAllocation()
|
D | guarded_pool_allocator.cpp | 123 Cb(Meta.Addr, Meta.RequestedSize, Arg); in iterate() 316 return Meta->RequestedSize; in getSize()
|
D | crash_handler.cpp | 106 return AllocationMeta->RequestedSize; in __gwp_asan_get_allocation_size()
|
/external/tensorflow/tensorflow/core/framework/ |
D | allocator.h | 241 virtual size_t RequestedSize(const void* ptr) const { in RequestedSize() function 255 return RequestedSize(ptr); in AllocatedSize() 325 size_t RequestedSize(const void* ptr) const override { in RequestedSize() function 326 return wrapped_->RequestedSize(ptr); in RequestedSize()
|
D | tracking_allocator_test.cc | 42 size_t RequestedSize(const void* ptr) const override { in RequestedSize() function in tensorflow::TestableSizeTrackingAllocator 92 EXPECT_EQ(4, ta->RequestedSize(p1)); in TEST() 98 EXPECT_EQ(12, ta->RequestedSize(p2)); in TEST()
|
D | tracking_allocator.cc | 116 size_t TrackingAllocator::RequestedSize(const void* ptr) const { in RequestedSize() function in tensorflow::TrackingAllocator 125 return allocator_->RequestedSize(ptr); in RequestedSize()
|
D | tracking_allocator.h | 65 size_t RequestedSize(const void* ptr) const override;
|
/external/tensorflow/tensorflow/core/common_runtime/ |
D | process_state.h | 141 size_t RequestedSize(const void* p) const override { in RequestedSize() function 142 return a_->RequestedSize(p); in RequestedSize()
|
D | scoped_allocator.h | 110 size_t RequestedSize(const void* ptr) const override { return 0; } in RequestedSize() function
|
/external/scudo/standalone/ |
D | report.cpp | 103 void NORETURN reportOutOfMemory(uptr RequestedSize) { in reportOutOfMemory() argument 105 Report.append("out of memory trying to allocate %zu bytes\n", RequestedSize); in reportOutOfMemory()
|
D | report.h | 35 void NORETURN reportOutOfMemory(uptr RequestedSize);
|
/external/llvm-project/compiler-rt/lib/scudo/standalone/ |
D | report.cpp | 103 void NORETURN reportOutOfMemory(uptr RequestedSize) { in reportOutOfMemory() argument 105 Report.append("out of memory trying to allocate %zu bytes\n", RequestedSize); in reportOutOfMemory()
|
D | report.h | 35 void NORETURN reportOutOfMemory(uptr RequestedSize);
|
/external/compiler-rt/lib/scudo/ |
D | scudo_allocator.cpp | 71 u64 RequestedSize : 40; // Needed for reallocation purposes. member 365 Header.RequestedSize = Size; in allocate() 410 uptr Size = NewHeader.RequestedSize; in deallocate() 480 NewHeader.RequestedSize = NewSize; in reallocate() 488 uptr OldSize = OldHeader.RequestedSize; in reallocate()
|
/external/gwp_asan/gwp_asan/tests/ |
D | crash_handler_api.cpp | 32 Metadata[Slot].RequestedSize = Size; in metadata() 83 EXPECT_EQ(Metadata[Index].RequestedSize, in checkMetadata()
|
/external/mesa3d/src/mesa/main/ |
D | transformfeedback.c | 316 if (obj->RequestedSize[i] == 0) { in compute_transform_feedback_buffer_sizes() 327 computed_size = MIN2(available_space, obj->RequestedSize[i]); in compute_transform_feedback_buffer_sizes() 1428 if (obj->RequestedSize[index] == 0 && in _mesa_GetTransformFeedbacki64_v() 1438 assert(obj->RequestedSize[index] > 0); in _mesa_GetTransformFeedbacki64_v() 1442 assert(obj->RequestedSize[index] > 0); in _mesa_GetTransformFeedbacki64_v()
|
D | transformfeedback.h | 170 tfObj->RequestedSize[index] = size; in _mesa_set_transform_feedback_binding()
|