Generated from cl_ptr_vector.h with ROBODoc v3.2.3 on Sat Jan 18 07:05:18 2003

TABLE OF CONTENTS

  1. Component Library/Pointer Vector
  2. Component Library: Pointer Vector/cl_pfn_ptr_vec_apply_t
  3. Component Library: Pointer Vector/cl_pfn_ptr_vec_find_t
  4. Component Library: Pointer Vector/cl_ptr_vector_apply_func
  5. Component Library: Pointer Vector/cl_ptr_vector_at
  6. Component Library: Pointer Vector/cl_ptr_vector_construct
  7. Component Library: Pointer Vector/cl_ptr_vector_destroy
  8. Component Library: Pointer Vector/cl_ptr_vector_find_from_end
  9. Component Library: Pointer Vector/cl_ptr_vector_find_from_start
  10. Component Library: Pointer Vector/cl_ptr_vector_get
  11. Component Library: Pointer Vector/cl_ptr_vector_get_capacity
  12. Component Library: Pointer Vector/cl_ptr_vector_get_size
  13. Component Library: Pointer Vector/cl_ptr_vector_init
  14. Component Library: Pointer Vector/cl_ptr_vector_insert
  15. Component Library: Pointer Vector/cl_ptr_vector_remove
  16. Component Library: Pointer Vector/cl_ptr_vector_set
  17. Component Library: Pointer Vector/cl_ptr_vector_set_capacity
  18. Component Library: Pointer Vector/cl_ptr_vector_set_min_size
  19. Component Library: Pointer Vector/cl_ptr_vector_set_size
  20. Component Library: Pointer Vector/cl_ptr_vector_t

Component Library/Pointer Vector

NAME
    Pointer Vector

DESCRIPTION
    The Pointer Vector is a self-sizing array of pointers. Like a traditonal 
    array, a pointer vector allows efficient constant time access to elements
    with a specified index.  A pointer vector grows transparently as the 
    user adds elements to the array.

    The cl_pointer vector_t structure should be treated as opaque and should be
    manipulated only through the provided functions.

SEE ALSO
    Structures:
        cl_ptr_vector_t

    Callbacks:
        cl_pfn_ptr_vec_apply_t, cl_pfn_ptr_vec_find_t

    Item Manipulation:
        cl_ptr_vector_set_obj, cl_ptr_vector_obj

    Initialization:
        cl_ptr_vector_construct, cl_ptr_vector_init, cl_ptr_vector_destroy

    Manipulation:
        cl_ptr_vector_get_capacity, cl_ptr_vector_set_capacity, 
        cl_ptr_vector_get_size, cl_ptr_vector_set_size, cl_ptr_vector_set_min_size
        cl_ptr_vector_get_ptr, cl_ptr_vector_get, cl_ptr_vector_at, cl_ptr_vector_set

    Search:
        cl_ptr_vector_find_from_start, cl_ptr_vector_find_from_end
        cl_ptr_vector_apply_func

Component Library: Pointer Vector/cl_pfn_ptr_vec_apply_t

NAME
    cl_pfn_ptr_vec_apply_t

DESCRIPTION
    The cl_pfn_ptr_vec_apply_t function type defines the prototype for
    functions used to iterate elements in a pointer vector.

SYNOPSIS
typedef void
(*cl_pfn_ptr_vec_apply_t)(
    IN  const size_t        index,
    IN  void* const         element,
    IN  void*               context );

PARAMETERS
    index
        [in] Index of the element.

    p_element
        [in] Pointer to an element at the specified index in the pointer vector.

    context
        [in] Context provided in a call to cl_ptr_vector_apply_func.

RETURN VALUE
    This function does not return a value.

NOTES
    This function type is provided as function prototype reference for
    the function passed by users as a parameter to the cl_ptr_vector_apply_func
    function.

SEE ALSO
    Pointer Vector, cl_ptr_vector_apply_func

Component Library: Pointer Vector/cl_pfn_ptr_vec_find_t

NAME
    cl_pfn_ptr_vec_find_t

DESCRIPTION
    The cl_pfn_ptr_vec_find_t function type defines the prototype for
    functions used to find elements in a pointer vector.

SYNOPSIS
typedef cl_status_t
(*cl_pfn_ptr_vec_find_t)(
    IN  const size_t        index,
    IN  const void* const   element,
    IN  void*               context );

PARAMETERS
    index
        [in] Index of the element.

    p_element
        [in] Pointer to an element at the specified index in the 
        pointer vector.

    context
        [in] Context provided in a call to cl_ptr_vector_find_from_start or
        cl_ptr_vector_find_from_end.

RETURN VALUES
    Return CL_SUCCESS if the element was found. This stops pointer vector 
    iteration.

    CL_NOT_FOUND to continue the pointer vector iteration.

NOTES
    This function type is provided as function prototype reference for the
    function provided by users as a parameter to the 
    cl_ptr_vector_find_from_start and cl_ptr_vector_find_from_end functions.

SEE ALSO
    Pointer Vector, cl_ptr_vector_find_from_start, cl_ptr_vector_find_from_end

Component Library: Pointer Vector/cl_ptr_vector_apply_func

NAME
    cl_ptr_vector_apply_func

DESCRIPTION
    The cl_ptr_vector_apply_func function invokes a specified function for
    every element in a pointer vector.

SYNOPSIS
void
cl_ptr_vector_apply_func(
    IN  const cl_ptr_vector_t* const    p_vector,
    IN  cl_pfn_ptr_vec_apply_t          pfn_callback,
    IN  const void* const               context );

PARAMETERS
    p_vector
        [in] Pointer to a cl_ptr_vector_t structure whose elements to iterate.

    pfn_callback
        [in] Function invoked for every element in the array.
        See the cl_pfn_ptr_vec_apply_t function type declaration for details
        about the callback function.

    context
        [in] Value to pass to the callback function.

RETURN VALUE
    This function does not return a value.

NOTES
    cl_ptr_vector_apply_func invokes the specified function for every element
    in the pointer vector, starting from the beginning of the pointer vector.

SEE ALSO
    Pointer Vector, cl_ptr_vector_find_from_start, cl_ptr_vector_find_from_end,
    cl_pfn_ptr_vec_apply_t

Component Library: Pointer Vector/cl_ptr_vector_at

NAME
    cl_ptr_vector_at

DESCRIPTION
    The cl_ptr_vector_at function copies an element stored in a pointer 
    vector at a specified index, performing boundary checks.

SYNOPSIS
cl_status_t
cl_ptr_vector_at(
    IN  const cl_ptr_vector_t* const    p_vector,
    IN  const size_t                    index,
    OUT void** const                    p_element );

PARAMETERS
    p_vector
        [in] Pointer to a cl_ptr_vector_t structure from which to get a copy of
        an element.

    index
        [in] Index of the element.

    p_element
        [out] Pointer to storage for the pointer element. Contains a copy of
        the desired pointer upon successful completion of the call.

RETURN VALUES
    CL_SUCCESS if an element was found at the specified index.

    CL_INVALID_SETTING if the index was out of range.

NOTES
    cl_ptr_vector_at provides constant time access regardless of 
    the index, and performs boundary checking on the pointer vector.

    Upon success, the p_element parameter contains a copy of the 
    desired element.

SEE ALSO
    Pointer Vector, cl_ptr_vector_get

Component Library: Pointer Vector/cl_ptr_vector_construct

NAME
    cl_ptr_vector_construct

DESCRIPTION
    The cl_ptr_vector_construct function constructs a pointer vector.

SYNOPSIS
void
cl_ptr_vector_construct(
    IN  cl_ptr_vector_t* const  p_vector );

PARAMETERS
    p_vector
        [in] Pointer to a cl_ptr_vector_t structure to construct.

RETURN VALUE
    This function does not return a value.

NOTES
    Allows calling cl_ptr_vector_destroy without first calling 
    cl_ptr_vector_init.

    Calling cl_ptr_vector_construct is a prerequisite to calling any other
    pointer vector function except cl_ptr_vector_init.

SEE ALSO
    Pointer Vector, cl_ptr_vector_init, cl_ptr_vector_destroy

Component Library: Pointer Vector/cl_ptr_vector_destroy

NAME
    cl_ptr_vector_destroy

DESCRIPTION
    The cl_ptr_vector_destroy function destroys a pointer vector.

SYNOPSIS
void
cl_ptr_vector_destroy(
    IN  cl_ptr_vector_t* const  p_vector );

PARAMETERS
    p_vector
        [in] Pointer to a cl_ptr_vector_t structure to destroy.

RETURN VALUE
    This function does not return a value.

NOTES
    cl_ptr_vector_destroy frees all memory allocated for the pointer vector. 

    This function should only be called after a call to cl_ptr_vector_construct
    or cl_ptr_vector_init.

SEE ALSO
    Pointer Vector, cl_ptr_vector_construct, cl_ptr_vector_init

Component Library: Pointer Vector/cl_ptr_vector_find_from_end

NAME
    cl_ptr_vector_find_from_end

DESCRIPTION
    The cl_ptr_vector_find_from_end function uses a specified function to
    search for elements in a pointer vector starting from the highest index.

SYNOPSIS
size_t
cl_ptr_vector_find_from_end(
    IN  const cl_ptr_vector_t* const    p_vector,
    IN  cl_pfn_ptr_vec_find_t           pfn_callback,
    IN  const void* const               context );

PARAMETERS
    p_vector
        [in] Pointer to a cl_ptr_vector_t structure to inititalize.

    pfn_callback
        [in] Function invoked to determine if a match was found.
        See the cl_pfn_ptr_vec_find_t function type declaration for details
        about the callback function.

    context
        [in] Value to pass to the callback function.

RETURN VALUES
    Index of the element, if found.

    Size of the pointer vector if the element was not found.

NOTES
    cl_ptr_vector_find_from_end does not remove the found element from
    the pointer vector. The index of the element is returned when the function
    provided by the pfn_callback parameter returns CL_SUCCESS.

SEE ALSO
    Pointer Vector, cl_ptr_vector_find_from_start, cl_ptr_vector_apply_func,
    cl_pfn_ptr_vec_find_t

Component Library: Pointer Vector/cl_ptr_vector_find_from_start

NAME
    cl_ptr_vector_find_from_start

DESCRIPTION
    The cl_ptr_vector_find_from_start function uses a specified function to
    search for elements in a pointer vector starting from the lowest index.

SYNOPSIS
size_t
cl_ptr_vector_find_from_start(
    IN  const cl_ptr_vector_t* const    p_vector,
    IN  cl_pfn_ptr_vec_find_t           pfn_callback,
    IN  const void* const               context );

PARAMETERS
    p_vector
        [in] Pointer to a cl_ptr_vector_t structure to inititalize.

    pfn_callback
        [in] Function invoked to determine if a match was found.
        See the cl_pfn_ptr_vec_find_t function type declaration for details
        about the callback function.

    context
        [in] Value to pass to the callback function.

RETURN VALUES
    Index of the element, if found.

    Size of the pointer vector if the element was not found.

NOTES
    cl_ptr_vector_find_from_start does not remove the found element from
    the pointer vector. The index of the element is returned when the function
    provided by the pfn_callback parameter returns CL_SUCCESS.

SEE ALSO
    Pointer Vector, cl_ptr_vector_find_from_end, cl_ptr_vector_apply_func, 
    cl_pfn_ptr_vec_find_t

Component Library: Pointer Vector/cl_ptr_vector_get

NAME
    cl_ptr_vector_get

DESCRIPTION
    The cl_ptr_vector_get function returns the pointer stored in a 
    pointer vector at a specified index.

SYNOPSIS
 void*
cl_ptr_vector_get(
    IN  const cl_ptr_vector_t* const    p_vector,
    IN  const size_t                    index ;
PARAMETERS
    p_vector
        [in] Pointer to a cl_ptr_vector_t structure from which to get an
        element.

    index
        [in] Index of the element.

RETURN VALUE
    Value of the pointer stored at the specified index.

NOTES
    cl_ptr_vector_get provides constant access times regardless of the index.

    cl_ptr_vector_get does not perform boundary checking. Callers are
    responsible for providing an index that is within the range of the pointer
    vector.

SEE ALSO
    Pointer Vector, cl_ptr_vector_at, cl_ptr_vector_set, cl_ptr_vector_get_size

Component Library: Pointer Vector/cl_ptr_vector_get_capacity

NAME
    cl_ptr_vector_get_capacity

DESCRIPTION
    The cl_ptr_vector_get_capacity function returns the capacity of 
    a pointer vector.

SYNOPSIS
 size_t
cl_ptr_vector_get_capacity(
    IN  const cl_ptr_vector_t* const    p_vector ;
PARAMETERS
    p_vector
        [in] Pointer to a cl_ptr_vector_t structure whose capacity to return.

RETURN VALUE
    Capacity, in elements, of the pointer vector.

NOTES
    The capacity is the number of elements that the pointer vector can store,
    and can be greater than the number of elements stored. To get the number
    of elements stored in the pointer vector, use cl_ptr_vector_get_size.

SEE ALSO
    Pointer Vector, cl_ptr_vector_set_capacity, cl_ptr_vector_get_size

Component Library: Pointer Vector/cl_ptr_vector_get_size

NAME
    cl_ptr_vector_get_size

DESCRIPTION
    The cl_ptr_vector_get_size function returns the size of a pointer vector.

SYNOPSIS
 size_t
cl_ptr_vector_get_size(
    IN  const cl_ptr_vector_t* const    p_vector ;
PARAMETERS
    p_vector
        [in] Pointer to a cl_ptr_vector_t structure whose size to return.

RETURN VALUE
    Size, in elements, of the pointer vector.

SEE ALSO
    Pointer Vector, cl_ptr_vector_set_size, cl_ptr_vector_get_capacity

Component Library: Pointer Vector/cl_ptr_vector_init

NAME
    cl_ptr_vector_init

DESCRIPTION
    The cl_ptr_vector_init function initializes a pointer vector for use.

SYNOPSIS
cl_status_t
cl_ptr_vector_init(
    IN  cl_ptr_vector_t* const  p_vector,
    IN  const size_t            min_size,
    IN  const size_t            grow_size );

PARAMETERS
    p_vector
        [in] Pointer to a cl_ptr_vector_t structure to inititalize.

    initial_size
        [in] Initial number of elements.

    grow_size
        [in] Number of elements to allocate when incrementally growing
        the pointer vector.  A value of zero disables automatic growth.

RETURN VALUES
    CL_SUCCESS if the pointer vector was initialized successfully.

    CL_INSUFFICIENT_MEMORY if the initialization failed.

SEE ALSO
    Pointer Vector, cl_ptr_vector_construct, cl_ptr_vector_destroy, 
    cl_ptr_vector_set, cl_ptr_vector_get, cl_ptr_vector_at

Component Library: Pointer Vector/cl_ptr_vector_insert

NAME
    cl_ptr_vector_insert

DESCRIPTION
    The cl_ptr_vector_insert function inserts an element into a pointer vector.

SYNOPSIS
 cl_status_t
cl_ptr_vector_insert(
    IN  cl_ptr_vector_t* const  p_vector,
    IN  const void* const       element,
    OUT size_t* const           p_index OPTIONAL ;
PARAMETERS
    p_vector
        [in] Pointer to a cl_ptr_vector_t structure into which to store
        an element.

    element
        [in] Pointer to store in the pointer vector.

    p_index
        [out] Pointer to the index of the element.  Valid only if 
        insertion was successful.

RETURN VALUES
    CL_SUCCESS if the element was successfully inserted.

    CL_INSUFFICIENT_MEMORY if the pointer vector could not be resized to
    accommodate the new element.

NOTES
    cl_ptr_vector_insert places the new element at the end of 
    the pointer vector.

    cl_ptr_vector_insert grows the pointer vector as needed to accommodate 
    the new element, unless the grow_size parameter passed into the 
    cl_ptr_vector_init function was zero.

SEE ALSO
    Pointer Vector, cl_ptr_vector_remove, cl_ptr_vector_set

Component Library: Pointer Vector/cl_ptr_vector_remove

NAME
    cl_ptr_vector_remove

DESCRIPTION
    The cl_ptr_vector_remove function removes and returns the pointer stored 
    in a pointer vector at a specified index.  Items beyond the removed item
    are shifted down and the size of the pointer vector is decremented.

SYNOPSIS
void*
cl_ptr_vector_remove(
    IN  cl_ptr_vector_t* const  p_vector,
    IN  const size_t            index );

PARAMETERS
    p_vector
        [in] Pointer to a cl_ptr_vector_t structure from which to get an
        element.

    index
        [in] Index of the element.

RETURN VALUE
    Value of the pointer stored at the specified index.

NOTES
    cl_ptr_vector_get does not perform boundary checking. Callers are
    responsible for providing an index that is within the range of the pointer
    vector.

SEE ALSO
    Pointer Vector, cl_ptr_vector_insert, cl_ptr_vector_get_size

Component Library: Pointer Vector/cl_ptr_vector_set

NAME
    cl_ptr_vector_set

DESCRIPTION
    The cl_ptr_vector_set function sets the element at the specified index.

SYNOPSIS
cl_status_t
cl_ptr_vector_set(
    IN  cl_ptr_vector_t* const  p_vector,
    IN  const size_t            index,
    IN  const void* const       element );

PARAMETERS
    p_vector
        [in] Pointer to a cl_ptr_vector_t structure into which to store
        an element.

    index
        [in] Index of the element.

    element
        [in] Pointer to store in the pointer vector.

RETURN VALUES
    CL_SUCCESS if the element was successfully set.

    CL_INSUFFICIENT_MEMORY if the pointer vector could not be resized to
    accommodate the new element.

NOTES
    cl_ptr_vector_set grows the pointer vector as needed to accommodate 
    the new element, unless the grow_size parameter passed into the 
    cl_ptr_vector_init function was zero.

SEE ALSO
    Pointer Vector, cl_ptr_vector_get

Component Library: Pointer Vector/cl_ptr_vector_set_capacity

NAME
    cl_ptr_vector_set_capacity

DESCRIPTION
    The cl_ptr_vector_set_capacity function reserves memory in a 
    pointer vector for a specified number of pointers.

SYNOPSIS
cl_status_t
cl_ptr_vector_set_capacity(
    IN  cl_ptr_vector_t* const  p_vector,
    IN  const size_t            new_capacity );

PARAMETERS
    p_vector
        [in] Pointer to a cl_ptr_vector_t structure whose capacity to set.

    new_capacity
        [in] Total number of elements for which the pointer vector should
        allocate memory.

RETURN VALUES
    CL_SUCCESS if the capacity was successfully set.

    CL_INSUFFICIENT_MEMORY if there was not enough memory to satisfy the
    operation. The pointer vector is left unchanged.

NOTES
    cl_ptr_vector_set_capacity increases the capacity of the pointer vector. 
    It does not change the size of the pointer vector. If the requested 
    capacity is less than the current capacity, the pointer vector is left 
    unchanged.

SEE ALSO
    Pointer Vector, cl_ptr_vector_get_capacity, cl_ptr_vector_set_size,
    cl_ptr_vector_set_min_size

Component Library: Pointer Vector/cl_ptr_vector_set_min_size

NAME
    cl_ptr_vector_set_min_size

DESCRIPTION
    The cl_ptr_vector_set_min_size function resizes a pointer vector to a 
    specified size if the pointer vector is smaller than the specified size.

SYNOPSIS
cl_status_t
cl_ptr_vector_set_min_size(
    IN  cl_ptr_vector_t* const  p_vector,
    IN  const size_t            min_size );

PARAMETERS
    p_vector
        [in] Pointer to a cl_ptr_vector_t structure whose minimum size to set.

    min_size
        [in] Minimum number of elements that the pointer vector should contain.

RETURN VALUES
    CL_SUCCESS if the pointer vector size is greater than or equal to min_size.
    This could indicate that the pointer vector's capacity was increased to 
    min_size or that the pointer vector was already of sufficient size.

    CL_INSUFFICIENT_MEMORY if there was not enough memory to resize the 
    pointer vector.  The pointer vector is left unchanged.

NOTES
    If min_size is smaller than the current size of the pointer vector, 
    the pointer vector is unchanged. The pointer vector is unchanged if the 
    size could not be changed due to insufficient memory being available to 
    perform the operation.

SEE ALSO
    Pointer Vector, cl_ptr_vector_get_size, cl_ptr_vector_set_size, 
    cl_ptr_vector_set_capacity

Component Library: Pointer Vector/cl_ptr_vector_set_size

NAME
    cl_ptr_vector_set_size

DESCRIPTION
    The cl_ptr_vector_set_size function resizes a pointer vector, either 
    increasing or decreasing its size.

SYNOPSIS
cl_status_t
cl_ptr_vector_set_size(
    IN  cl_ptr_vector_t* const  p_vector,
    IN  const size_t            size );

PARAMETERS
    p_vector
        [in] Pointer to a cl_ptr_vector_t structure whose size to set.

    size
        [in] Number of elements desired in the pointer vector.

RETURN VALUES
    CL_SUCCESS if the size of the pointer vector was set successfully.

    CL_INSUFFICIENT_MEMORY if there was not enough memory to complete the
    operation. The pointer vector is left unchanged.

NOTES
    cl_ptr_vector_set_size sets the pointer vector to the specified size. 
    If size is smaller than the current size of the pointer vector, the size
    is reduced.

    This function can only fail if size is larger than the current capacity.

SEE ALSO
    Pointer Vector, cl_ptr_vector_get_size, cl_ptr_vector_set_min_size,
    cl_ptr_vector_set_capacity

Component Library: Pointer Vector/cl_ptr_vector_t

NAME
    cl_ptr_vector_t

DESCRIPTION
    Pointer Vector structure.

    The cl_ptr_vector_t structure should be treated as opaque and should be
    manipulated only through the provided functions.

SYNOPSIS
typedef struct _cl_ptr_vector
{
    size_t              size;
    size_t              grow_size;
    size_t              capacity;
    const void          **p_ptr_array;
    cl_state_t          state;

} cl_ptr_vector_t;

FIELDS
    size
         Number of elements successfully initialized in the pointer vector.

    grow_size
         Number of elements to allocate when growing.

    capacity
         total # of elements allocated.

    alloc_list
         List of allocations.

    p_ptr_array
         Internal array of pointers to elements.

    state
        State of the pointer vector.

SEE ALSO
    Pointer Vector