Searched defs:RequestedSize (Results 1 - 8 of 8) sorted by relevance

/external/tensorflow/tensorflow/core/common_runtime/sycl/
H A Dsycl_allocator.cc81 size_t SYCLAllocator::RequestedSize(void* ptr) { function in class:tensorflow::SYCLAllocator
/external/tensorflow/tensorflow/core/framework/
H A Dtracking_allocator.cc116 size_t TrackingAllocator::RequestedSize(const void* ptr) { function in class:tensorflow::TrackingAllocator
125 return allocator_->RequestedSize(ptr);
H A Dallocator.h140 // RequestedSize and AllocatedSize must be overridden if
159 virtual size_t RequestedSize(const void* ptr) { function in class:tensorflow::Allocator
165 // otherwise returns RequestedSize(ptr). AllocatedSize(ptr) is
166 // guaranteed to be >= RequestedSize(ptr).
172 virtual size_t AllocatedSize(const void* ptr) { return RequestedSize(ptr); }
315 size_t RequestedSize(const void* ptr) override {
316 return wrapped_->RequestedSize(ptr);
/external/tensorflow/tensorflow/core/common_runtime/gpu/
H A Dgpu_debug_allocator.cc98 size_t req_size = base_allocator_->RequestedSize(allocated_ptr);
124 size_t GPUDebugAllocator::RequestedSize(const void* ptr) { function in class:tensorflow::GPUDebugAllocator
125 auto req_size = base_allocator_->RequestedSize(static_cast<const char*>(ptr) -
153 size_t req_size = base_allocator_->RequestedSize(original_ptr);
173 size_t req_size = base_allocator_->RequestedSize(allocated_ptr);
186 size_t req_size = base_allocator_->RequestedSize(ptr);
206 size_t GPUNanResetAllocator::RequestedSize(const void* ptr) { function in class:tensorflow::GPUNanResetAllocator
207 return base_allocator_->RequestedSize(ptr);
/external/piex/src/image_type_recognition/
H A Dimage_type_recognition_lite.cc50 return a->RequestedSize() < b->RequestedSize();
60 virtual size_t RequestedSize() const = 0;
66 // Limits the source length to the RequestedSize(), using it guarantees that
69 return source.pointerToSubArray(0 /* pos */, RequestedSize());
152 virtual size_t RequestedSize() const { return 5000; } function in class:piex::image_type_recognition::__anon18722::ArwTypeChecker
178 if (!IsSignatureFound(limited_source, 0 /* offset */, RequestedSize(),
197 limited_source, 0 /* offset */, RequestedSize(),
209 virtual size_t RequestedSize() const { return 16; } function in class:piex::image_type_recognition::__anon18722::Cr2TypeChecker
239 virtual size_t RequestedSize() cons function in class:piex::image_type_recognition::__anon18722::CrwTypeChecker
265 virtual size_t RequestedSize() const { return 5000; } function in class:piex::image_type_recognition::__anon18722::DcrTypeChecker
307 virtual size_t RequestedSize() const { return 1024; } function in class:piex::image_type_recognition::__anon18722::DngTypeChecker
359 virtual size_t RequestedSize() const { return 5000; } function in class:piex::image_type_recognition::__anon18722::KdcTypeChecker
395 virtual size_t RequestedSize() const { return 5000; } function in class:piex::image_type_recognition::__anon18722::MosTypeChecker
421 virtual size_t RequestedSize() const { return 4; } function in class:piex::image_type_recognition::__anon18722::MrwTypeChecker
472 virtual size_t RequestedSize() const { function in class:piex::image_type_recognition::__anon18722::NefTypeChecker
510 virtual size_t RequestedSize() const { function in class:piex::image_type_recognition::__anon18722::NrwTypeChecker
549 virtual size_t RequestedSize() const { return 3000; } function in class:piex::image_type_recognition::__anon18722::OrfTypeChecker
584 virtual size_t RequestedSize() const { return 1280; } function in class:piex::image_type_recognition::__anon18722::PefTypeChecker
622 virtual size_t RequestedSize() const { return 8; } function in class:piex::image_type_recognition::__anon18722::QtkTypeChecker
642 virtual size_t RequestedSize() const { return 8; } function in class:piex::image_type_recognition::__anon18722::RafTypeChecker
658 virtual size_t RequestedSize() const { return 36; } function in class:piex::image_type_recognition::__anon18722::RawContaxNTypeChecker
675 virtual size_t RequestedSize() const { return 4; } function in class:piex::image_type_recognition::__anon18722::Rw2TypeChecker
698 virtual size_t RequestedSize() const { return 256; } function in class:piex::image_type_recognition::__anon18722::SrwTypeChecker
734 virtual size_t RequestedSize() const { return 4; } function in class:piex::image_type_recognition::__anon18722::X3fTypeChecker
796 size_t RequestedSize() const { function in class:piex::image_type_recognition::__anon18722::TypeCheckerList
[all...]
/external/tensorflow/tensorflow/core/common_runtime/
H A Dbfc_allocator.cc524 size_t BFCAllocator::RequestedSize(const void* ptr) { function in class:BFCAllocator
/external/compiler-rt/lib/scudo/
H A Dscudo_allocator.cpp71 u64 RequestedSize : 40; // Needed for reallocation purposes. member in struct:__scudo::UnpackedHeader
365 Header.RequestedSize = Size;
410 uptr Size = NewHeader.RequestedSize;
480 NewHeader.RequestedSize = NewSize;
488 uptr OldSize = OldHeader.RequestedSize;
/external/mesa3d/src/mesa/main/
H A Dmtypes.h1749 * RequestedSize and the actual size of the buffer.
1758 GLsizeiptr RequestedSize[MAX_FEEDBACK_BUFFERS]; member in struct:gl_transform_feedback_object

Completed in 492 milliseconds