Halide
Halide::Runtime::Internal::BlockStorage Class Reference

#include <block_storage.h>

Classes

struct  Config
 

Public Member Functions

 BlockStorage (void *user_context, const Config &cfg, const SystemMemoryAllocatorFns &sma=default_allocator())
 
 BlockStorage (const BlockStorage &other)
 
 ~BlockStorage ()
 
void initialize (void *user_context, const Config &cfg, const SystemMemoryAllocatorFns &sma=default_allocator())
 
BlockStorageoperator= (const BlockStorage &other)
 
bool operator== (const BlockStorage &other) const
 
bool operator!= (const BlockStorage &other) const
 
void reserve (void *user_context, size_t capacity, bool free_existing=false)
 
void resize (void *user_context, size_t entry_count, bool realloc=true)
 
void assign (void *user_context, size_t index, const void *entry_ptr)
 
void insert (void *user_context, size_t index, const void *entry_ptr)
 
void prepend (void *user_context, const void *entry_ptr)
 
void append (void *user_context, const void *entry_ptr)
 
void remove (void *user_context, size_t index)
 
void fill (void *user_context, const void *array, size_t array_size)
 
void insert (void *user_context, size_t index, const void *array, size_t array_size)
 
void replace (void *user_context, size_t index, const void *array, size_t array_size)
 
void prepend (void *user_context, const void *array, size_t array_size)
 
void append (void *user_context, const void *array, size_t array_size)
 
void remove (void *user_context, size_t index, size_t entry_count)
 
void pop_front (void *user_context)
 
void pop_back (void *user_context)
 
void shrink_to_fit (void *user_context)
 
void clear (void *user_context)
 
void destroy (void *user_context)
 
bool empty () const
 
bool full () const
 
bool is_valid (size_t index) const
 
size_t stride () const
 
size_t size () const
 
void * operator[] (size_t index)
 logical entry index (returns ptr = data() + (index * stride()) More...
 
const void * operator[] (size_t index) const
 
void * data ()
 
void * front ()
 
void * back ()
 
const void * data () const
 
const void * front () const
 
const void * back () const
 
const Configcurrent_config () const
 
const SystemMemoryAllocatorFnscurrent_allocator () const
 

Static Public Member Functions

static const Configdefault_config ()
 
static const SystemMemoryAllocatorFnsdefault_allocator ()
 

Static Public Attributes

static constexpr size_t default_capacity = 32
 

Detailed Description

Definition at line 18 of file block_storage.h.

Constructor & Destructor Documentation

◆ BlockStorage() [1/2]

Halide::Runtime::Internal::BlockStorage::BlockStorage ( void *  user_context,
const Config cfg,
const SystemMemoryAllocatorFns sma = default_allocator() 
)

Definition at line 94 of file block_storage.h.

◆ BlockStorage() [2/2]

Halide::Runtime::Internal::BlockStorage::BlockStorage ( const BlockStorage other)

◆ ~BlockStorage()

Halide::Runtime::Internal::BlockStorage::~BlockStorage ( )

Definition at line 112 of file block_storage.h.

References destroy().

Member Function Documentation

◆ initialize()

void Halide::Runtime::Internal::BlockStorage::initialize ( void *  user_context,
const Config cfg,
const SystemMemoryAllocatorFns sma = default_allocator() 
)

Definition at line 125 of file block_storage.h.

◆ operator=()

BlockStorage & Halide::Runtime::Internal::BlockStorage::operator= ( const BlockStorage other)

◆ operator==()

bool Halide::Runtime::Internal::BlockStorage::operator== ( const BlockStorage other) const

◆ operator!=()

bool Halide::Runtime::Internal::BlockStorage::operator!= ( const BlockStorage other) const

Definition at line 156 of file block_storage.h.

◆ reserve()

void Halide::Runtime::Internal::BlockStorage::reserve ( void *  user_context,
size_t  capacity,
bool  free_existing = false 
)

Definition at line 194 of file block_storage.h.

◆ resize()

void Halide::Runtime::Internal::BlockStorage::resize ( void *  user_context,
size_t  entry_count,
bool  realloc = true 
)

Definition at line 204 of file block_storage.h.

Referenced by BlockStorage(), and operator=().

◆ assign()

void Halide::Runtime::Internal::BlockStorage::assign ( void *  user_context,
size_t  index,
const void *  entry_ptr 
)

Definition at line 168 of file block_storage.h.

◆ insert() [1/2]

void Halide::Runtime::Internal::BlockStorage::insert ( void *  user_context,
size_t  index,
const void *  entry_ptr 
)

Definition at line 245 of file block_storage.h.

◆ prepend() [1/2]

void Halide::Runtime::Internal::BlockStorage::prepend ( void *  user_context,
const void *  entry_ptr 
)

Definition at line 172 of file block_storage.h.

◆ append() [1/2]

void Halide::Runtime::Internal::BlockStorage::append ( void *  user_context,
const void *  entry_ptr 
)

Definition at line 176 of file block_storage.h.

◆ remove() [1/2]

void Halide::Runtime::Internal::BlockStorage::remove ( void *  user_context,
size_t  index 
)

Definition at line 249 of file block_storage.h.

◆ fill()

void Halide::Runtime::Internal::BlockStorage::fill ( void *  user_context,
const void *  array,
size_t  array_size 
)

Definition at line 160 of file block_storage.h.

◆ insert() [2/2]

void Halide::Runtime::Internal::BlockStorage::insert ( void *  user_context,
size_t  index,
const void *  array,
size_t  array_size 
)

Definition at line 300 of file block_storage.h.

◆ replace()

void Halide::Runtime::Internal::BlockStorage::replace ( void *  user_context,
size_t  index,
const void *  array,
size_t  array_size 
)

Definition at line 278 of file block_storage.h.

◆ prepend() [2/2]

void Halide::Runtime::Internal::BlockStorage::prepend ( void *  user_context,
const void *  array,
size_t  array_size 
)

Definition at line 315 of file block_storage.h.

◆ append() [2/2]

void Halide::Runtime::Internal::BlockStorage::append ( void *  user_context,
const void *  array,
size_t  array_size 
)

Definition at line 319 of file block_storage.h.

◆ remove() [2/2]

void Halide::Runtime::Internal::BlockStorage::remove ( void *  user_context,
size_t  index,
size_t  entry_count 
)

Definition at line 253 of file block_storage.h.

◆ pop_front()

void Halide::Runtime::Internal::BlockStorage::pop_front ( void *  user_context)

Definition at line 180 of file block_storage.h.

◆ pop_back()

void Halide::Runtime::Internal::BlockStorage::pop_back ( void *  user_context)

Definition at line 185 of file block_storage.h.

◆ shrink_to_fit()

void Halide::Runtime::Internal::BlockStorage::shrink_to_fit ( void *  user_context)

Definition at line 231 of file block_storage.h.

◆ clear()

void Halide::Runtime::Internal::BlockStorage::clear ( void *  user_context)

Definition at line 190 of file block_storage.h.

◆ destroy()

void Halide::Runtime::Internal::BlockStorage::destroy ( void *  user_context)

Definition at line 116 of file block_storage.h.

Referenced by ~BlockStorage().

◆ empty()

bool Halide::Runtime::Internal::BlockStorage::empty ( ) const

Definition at line 324 of file block_storage.h.

Referenced by Halide::Runtime::Internal::StringStorage::contains().

◆ full()

bool Halide::Runtime::Internal::BlockStorage::full ( ) const

Definition at line 328 of file block_storage.h.

◆ is_valid()

bool Halide::Runtime::Internal::BlockStorage::is_valid ( size_t  index) const

Definition at line 332 of file block_storage.h.

◆ stride()

size_t Halide::Runtime::Internal::BlockStorage::stride ( ) const

◆ size()

◆ operator[]() [1/2]

void * Halide::Runtime::Internal::BlockStorage::operator[] ( size_t  index)

◆ operator[]() [2/2]

const void * Halide::Runtime::Internal::BlockStorage::operator[] ( size_t  index) const

◆ data() [1/2]

const void * Halide::Runtime::Internal::BlockStorage::data ( )

◆ front() [1/2]

const void * Halide::Runtime::Internal::BlockStorage::front ( )

Definition at line 358 of file block_storage.h.

References halide_abort_if_false.

◆ back() [1/2]

const void * Halide::Runtime::Internal::BlockStorage::back ( )

◆ data() [2/2]

const void* Halide::Runtime::Internal::BlockStorage::data ( ) const

◆ front() [2/2]

const void* Halide::Runtime::Internal::BlockStorage::front ( ) const

◆ back() [2/2]

const void* Halide::Runtime::Internal::BlockStorage::back ( ) const

◆ current_config()

const BlockStorage::Config & Halide::Runtime::Internal::BlockStorage::current_config ( ) const

Definition at line 424 of file block_storage.h.

◆ default_config()

const BlockStorage::Config & Halide::Runtime::Internal::BlockStorage::default_config ( )
static

Definition at line 418 of file block_storage.h.

◆ current_allocator()

const SystemMemoryAllocatorFns & Halide::Runtime::Internal::BlockStorage::current_allocator ( ) const

◆ default_allocator()

Member Data Documentation

◆ default_capacity

constexpr size_t Halide::Runtime::Internal::BlockStorage::default_capacity = 32
staticconstexpr

Definition at line 20 of file block_storage.h.


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