Searched refs:max_num_values (Results 1 – 13 of 13) sorted by relevance
/external/ComputeLibrary/arm_compute/core/ |
D | IArray.h | 50 IArray(size_t max_num_values) in IArray() argument 51 : _num_values(0), _max_size(max_num_values) in IArray() 58 size_t max_num_values() const in max_num_values() function 81 if(_num_values >= max_num_values()) in push_back() 83 _num_values = max_num_values() + 1; in push_back() 102 return _num_values > max_num_values(); in overflow() 120 ARM_COMPUTE_ERROR_ON(index >= max_num_values()); in at() 130 ARM_COMPUTE_ERROR_ON(num > max_num_values()); in resize()
|
/external/ComputeLibrary/arm_compute/runtime/CL/ |
D | CLArray.h | 57 CLArray(size_t max_num_values) in CLArray() argument 58 …: ICLArray<T>(max_num_values), _buffer(CLScheduler::get().context(), CL_MEM_ALLOC_HOST_PTR | CL_ME… in CLArray() 94 … blocking ? CL_TRUE : CL_FALSE, CL_MAP_READ | CL_MAP_WRITE, 0, this->max_num_values() * sizeof(T))… in do_map()
|
/external/ComputeLibrary/arm_compute/runtime/ |
D | Array.h | 49 Array(size_t max_num_values) in Array() argument 50 …: IArray<T>(max_num_values), _values(arm_compute::support::cpp14::make_unique<T[]>(max_num_values)) in Array()
|
/external/webrtc/modules/video_coding/ |
D | histogram.cc | 19 Histogram::Histogram(size_t num_buckets, size_t max_num_values) { in Histogram() argument 21 RTC_DCHECK_GT(max_num_values, 0); in Histogram() 23 values_.reserve(max_num_values); in Histogram()
|
D | histogram.h | 23 Histogram(size_t num_buckets, size_t max_num_values);
|
/external/ComputeLibrary/arm_compute/core/CL/ |
D | ICLArray.h | 43 explicit ICLArray(size_t max_num_values) in ICLArray() argument 44 : IArray<T>(max_num_values), _mapping(nullptr) in ICLArray()
|
/external/ComputeLibrary/tests/validation/CL/UNIT/ |
D | TensorAllocator.cpp | 261 ARM_COMPUTE_EXPECT(quantization.scale->max_num_values() == 0, framework::LogLevel::ERRORS); in TEST_CASE() 262 ARM_COMPUTE_EXPECT(quantization.offset->max_num_values() == 0, framework::LogLevel::ERRORS); in TEST_CASE() 266 …ARM_COMPUTE_EXPECT(quantization.scale->max_num_values() == scale.size(), framework::LogLevel::ERRO… in TEST_CASE() 267 ARM_COMPUTE_EXPECT(quantization.offset->max_num_values() == 0, framework::LogLevel::ERRORS); in TEST_CASE()
|
/external/ComputeLibrary/src/runtime/CL/functions/ |
D | CLMinMaxLocation.cpp | 98 … size_t min_corner_size = std::min(static_cast<size_t>(min_count), _min_loc->max_num_values()); in run() 105 … size_t max_corner_size = std::min(static_cast<size_t>(max_count), _max_loc->max_num_values()); in run()
|
D | CLFastCorners.cpp | 132 size_t corner_size = std::min(static_cast<size_t>(get_num_corners), _corners->max_num_values()); in run()
|
/external/ComputeLibrary/src/core/CL/kernels/ |
D | CLMinMaxLocationKernel.cpp | 213 _kernel.setArg<cl_uint>(idx++, min_loc->max_num_values()); in configure() 218 _kernel.setArg<cl_uint>(idx++, max_loc->max_num_values()); in configure()
|
D | CLHOGDetectorKernel.cpp | 77 args_str << "-DMAX_NUM_DETECTION_WINDOWS=" << detection_windows->max_num_values() << " "; in configure()
|
D | CLFastCornersKernel.cpp | 169 _kernel.setArg<unsigned int>(idx++, _corners->max_num_values()); in configure()
|
/external/ComputeLibrary/src/core/NEON/kernels/ |
D | NEHOGDetectorKernel.cpp | 68 _max_num_detection_windows = detection_windows->max_num_values(); in configure()
|