diff -r 92e482410453 -r d345541018fa docs/api-2.1/stack_8h.html --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/docs/api-2.1/stack_8h.html Sat Feb 06 19:11:44 2021 +0100 @@ -0,0 +1,677 @@ + + +
+ + + + ++ |
+ ucx
+
+ UAP Common Extensions
+ |
+
Default stack memory allocation implementation. +More...
+ +Go to the source code of this file.
++Data Structures | |
struct | UcxStack |
UCX stack structure. More... | |
struct | ucx_stack_metadata |
Metadata for each UCX stack element. More... | |
+Macros | |
#define | ucx_stack_topsize(stack) |
Returns the size of the top most element. More... | |
#define | ucx_stack_pop(stack, dest) ucx_stack_popn(stack, dest, (size_t)-1) |
Removes the top most element from the stack and copies the content to dest , if specified. More... | |
#define | ucx_stack_empty(stack) (!(stack)->top) |
Checks, if the stack is empty. More... | |
#define | ucx_stack_dim(size, elems) |
Computes a recommended size for the stack memory area. More... | |
+Functions | |
void | ucx_stack_init (UcxStack *stack, char *space, size_t size) |
Initializes UcxStack structure with memory. More... | |
void * | ucx_stack_malloc (UcxStack *stack, size_t n) |
Allocates stack memory. More... | |
void * | ucx_stack_push (UcxStack *stack, size_t n, const void *data) |
Allocates memory with ucx_stack_malloc() and copies the specified data if the allocation was successful. More... | |
void * | ucx_stack_calloc (UcxStack *stack, size_t nelem, size_t elsize) |
Allocates an array of stack memory. More... | |
void * | ucx_stack_pusharr (UcxStack *stack, size_t nelem, size_t elsize, const void *data) |
Allocates memory with ucx_stack_calloc() and copies the specified data if the allocation was successful. More... | |
void * | ucx_stack_realloc (UcxStack *stack, void *ptr, size_t n) |
Reallocates memory on the stack. More... | |
void | ucx_stack_free (UcxStack *stack, void *ptr) |
Frees memory on the stack. More... | |
void | ucx_stack_popn (UcxStack *stack, void *dest, size_t n) |
Removes the top most element from the stack and copies the content to dest . More... | |
size_t | ucx_stack_avail (UcxStack *stack) |
Returns the remaining available memory on the specified stack. More... | |
Default stack memory allocation implementation.
+ +#define ucx_stack_dim | +( | ++ | size, | +
+ | + | + | elems | +
+ | ) | ++ |
Computes a recommended size for the stack memory area.
+Note, that reallocations have not been taken into account, so you might need to reserve twice as much memory to allow many reallocations.
+size | the approximate payload |
elems | the approximate count of element allocations |
#define ucx_stack_empty | +( | ++ | stack | ) | +(!(stack)->top) | +
Checks, if the stack is empty.
+stack | a pointer to the stack |
#define ucx_stack_pop | +( | ++ | stack, | +
+ | + | + | dest | +
+ | ) | +ucx_stack_popn(stack, dest, (size_t)-1) | +
Removes the top most element from the stack and copies the content to dest
, if specified.
Use ucx_stack_topsize()# to get the amount of memory that must be available at the location of dest
.
stack | a pointer to the stack |
dest | the location where the contents shall be written to, or NULL , if the element shall only be removed. |
#define ucx_stack_topsize | +( | ++ | stack | ) | ++ |
Returns the size of the top most element.
+stack | a pointer to the stack |
size_t ucx_stack_avail | +( | +UcxStack * | +stack | ) | ++ |
Returns the remaining available memory on the specified stack.
+stack | a pointer to the stack |
void* ucx_stack_calloc | +( | +UcxStack * | +stack, | +
+ | + | size_t | +nelem, | +
+ | + | size_t | +elsize | +
+ | ) | ++ |
Allocates an array of stack memory.
+The content of the allocated memory is set to zero.
+stack | a pointer to the stack |
nelem | amount of elements to allocate |
elsize | amount of memory per element |
void ucx_stack_free | +( | +UcxStack * | +stack, | +
+ | + | void * | +ptr | +
+ | ) | ++ |
Frees memory on the stack.
+Freeing stack memory behaves in a special way.
+If the element, that should be freed, is the top most element of the stack, it is removed from the stack. Otherwise it is marked as freed. Marked elements are removed, when they become the top most elements of the stack.
+stack | a pointer to the stack |
ptr | a pointer to the memory that shall be freed |
void ucx_stack_init | +( | +UcxStack * | +stack, | +
+ | + | char * | +space, | +
+ | + | size_t | +size | +
+ | ) | ++ |
void* ucx_stack_malloc | +( | +UcxStack * | +stack, | +
+ | + | size_t | +n | +
+ | ) | ++ |
Allocates stack memory.
+stack | a pointer to the stack |
n | amount of memory to allocate |
NULL
on stack overflow void ucx_stack_popn | +( | +UcxStack * | +stack, | +
+ | + | void * | +dest, | +
+ | + | size_t | +n | +
+ | ) | ++ |
Removes the top most element from the stack and copies the content to dest
.
This function copies at most n
bytes to the destination, but the element is always freed as a whole. If the element was larger than n
, the remaining data is lost.
stack | a pointer to the stack |
dest | the location where the contents shall be written to |
n | copies at most n bytes to dest |
void* ucx_stack_push | +( | +UcxStack * | +stack, | +
+ | + | size_t | +n, | +
+ | + | const void * | +data | +
+ | ) | ++ |
Allocates memory with ucx_stack_malloc() and copies the specified data if the allocation was successful.
+stack | a pointer to the stack |
n | amount of memory to allocate |
data | a pointer to the data to copy |
void* ucx_stack_pusharr | +( | +UcxStack * | +stack, | +
+ | + | size_t | +nelem, | +
+ | + | size_t | +elsize, | +
+ | + | const void * | +data | +
+ | ) | ++ |
Allocates memory with ucx_stack_calloc() and copies the specified data if the allocation was successful.
+stack | a pointer to the stack |
nelem | amount of elements to allocate |
elsize | amount of memory per element |
data | a pointer to the data |
void* ucx_stack_realloc | +( | +UcxStack * | +stack, | +
+ | + | void * | +ptr, | +
+ | + | size_t | +n | +
+ | ) | ++ |
Reallocates memory on the stack.
+Shrinking memory is always safe. Extending memory can be very expensive.
+stack | the stack |
ptr | a pointer to the memory that shall be reallocated |
n | the new size of the memory |