Home
last modified time | relevance | path

Searched refs:RequestedSize (Results 1 – 25 of 29) sorted by relevance

12

/external/piex/src/image_type_recognition/
Dimage_type_recognition_lite.cc50 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/
Dgpu_debug_allocator.cc100 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()
Dgpu_debug_allocator.h43 size_t RequestedSize(const void* ptr) const override;
72 size_t RequestedSize(const void* ptr) const override;
Dgpu_bfc_allocator_test.cc122 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()
Dgpu_debug_allocator_test.cc250 EXPECT_EQ(4, a.RequestedSize(t1)); in TEST()
/external/llvm-project/compiler-rt/lib/scudo/
Dscudo_errors.cpp72 void NORETURN reportOutOfMemory(uptr RequestedSize) { in reportOutOfMemory() argument
74 RequestedSize); in reportOutOfMemory()
Dscudo_errors.h30 void NORETURN reportOutOfMemory(uptr RequestedSize);
/external/gwp_asan/gwp_asan/
Dcommon.h52 void RecordAllocation(uintptr_t Addr, size_t RequestedSize);
73 size_t RequestedSize = 0; member
Dcommon.cpp43 RequestedSize = AllocSize; in RecordAllocation()
Dguarded_pool_allocator.cpp123 Cb(Meta.Addr, Meta.RequestedSize, Arg); in iterate()
316 return Meta->RequestedSize; in getSize()
Dcrash_handler.cpp106 return AllocationMeta->RequestedSize; in __gwp_asan_get_allocation_size()
/external/tensorflow/tensorflow/core/framework/
Dallocator.h241 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()
Dtracking_allocator_test.cc42 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()
Dtracking_allocator.cc116 size_t TrackingAllocator::RequestedSize(const void* ptr) const { in RequestedSize() function in tensorflow::TrackingAllocator
125 return allocator_->RequestedSize(ptr); in RequestedSize()
Dtracking_allocator.h65 size_t RequestedSize(const void* ptr) const override;
/external/tensorflow/tensorflow/core/common_runtime/
Dprocess_state.h141 size_t RequestedSize(const void* p) const override { in RequestedSize() function
142 return a_->RequestedSize(p); in RequestedSize()
Dscoped_allocator.h110 size_t RequestedSize(const void* ptr) const override { return 0; } in RequestedSize() function
/external/scudo/standalone/
Dreport.cpp103 void NORETURN reportOutOfMemory(uptr RequestedSize) { in reportOutOfMemory() argument
105 Report.append("out of memory trying to allocate %zu bytes\n", RequestedSize); in reportOutOfMemory()
Dreport.h35 void NORETURN reportOutOfMemory(uptr RequestedSize);
/external/llvm-project/compiler-rt/lib/scudo/standalone/
Dreport.cpp103 void NORETURN reportOutOfMemory(uptr RequestedSize) { in reportOutOfMemory() argument
105 Report.append("out of memory trying to allocate %zu bytes\n", RequestedSize); in reportOutOfMemory()
Dreport.h35 void NORETURN reportOutOfMemory(uptr RequestedSize);
/external/compiler-rt/lib/scudo/
Dscudo_allocator.cpp71 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/
Dcrash_handler_api.cpp32 Metadata[Slot].RequestedSize = Size; in metadata()
83 EXPECT_EQ(Metadata[Index].RequestedSize, in checkMetadata()
/external/mesa3d/src/mesa/main/
Dtransformfeedback.c316 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()
Dtransformfeedback.h170 tfObj->RequestedSize[index] = size; in _mesa_set_transform_feedback_binding()

12