Class cv::Allocator#

Collaboration diagram for cv::Allocator:

Detailed Description#

The STL-compliant memory Allocator based on cv::fastMalloc() and cv::fastFree()

Member Typedef Documentation#

const_pointer#

typedef const value_type * cv::Allocator::const_pointer

const_reference#

typedef const value_type & cv::Allocator::const_reference

difference_type#

typedef ptrdiff_t cv::Allocator::difference_type

pointer#

typedef value_type * cv::Allocator::pointer

reference#

typedef value_type & cv::Allocator::reference

size_type#

typedef size_t cv::Allocator::size_type

value_type#

typedef _Tp cv::Allocator::value_type

Constructor & Destructor Documentation#

Allocator()#

cv::Allocator::Allocator()

Allocator()#

cv::Allocator::Allocator(Allocator const &)

Allocator()#

template<typename U>
cv::Allocator::Allocator(Allocator< U > const &)

~Allocator()#

cv::Allocator::~Allocator()

Member Function Documentation#

address()#

const_pointer cv::Allocator::address(const_reference r)

address()#

pointer cv::Allocator::address(reference r)

allocate()#

pointer cv::Allocator::allocate(
size_type count,
const void * = 0 )

Here is the call graph for this function:

cv::Allocator::allocate Node1 cv::Allocator::allocate Node2 cv::fastMalloc Node1->Node2

cv::Allocator::allocate Node1 cv::Allocator::allocate Node2 cv::fastMalloc Node1->Node2

construct()#

void cv::Allocator::construct(
pointer p,
const _Tp & v )

deallocate()#

void cv::Allocator::deallocate(
pointer p,
size_type )

Here is the call graph for this function:

cv::Allocator::deallocate Node1 cv::Allocator::deallocate Node2 cv::fastFree Node1->Node2

cv::Allocator::deallocate Node1 cv::Allocator::deallocate Node2 cv::fastFree Node1->Node2

destroy()#

void cv::Allocator::destroy(pointer p)

max_size()#

size_type cv::Allocator::max_size()

Here is the call graph for this function:

cv::Allocator::max_size Node1 cv::Allocator::max_size Node2 cv::max Node1->Node2

cv::Allocator::max_size Node1 cv::Allocator::max_size Node2 cv::max Node1->Node2

Source file#

The documentation for this class was generated from the following file: