Lines Matching defs:cl_vector_t

79 *	The cl_vector_t structure should be treated as opaque and should be
84 * cl_vector_t
282 /****s* Component Library: Vector/cl_vector_t
284 * cl_vector_t
289 * The cl_vector_t structure should be treated as opaque and should be
306 } cl_vector_t;
355 void cl_vector_construct(IN cl_vector_t * const p_vector);
359 * [in] Pointer to a cl_vector_t structure to construct.
384 cl_vector_init(IN cl_vector_t * const p_vector,
394 * [in] Pointer to a cl_vector_t structure to inititalize.
445 void cl_vector_destroy(IN cl_vector_t * const p_vector);
449 * [in] Pointer to a cl_vector_t structure to destroy.
475 cl_vector_get_capacity(IN const cl_vector_t * const p_vector)
486 * [in] Pointer to a cl_vector_t structure whose capacity to return.
509 static inline size_t cl_vector_get_size(IN const cl_vector_t * const p_vector)
520 * [in] Pointer to a cl_vector_t structure whose size to return.
539 static inline void *cl_vector_get_ptr(IN const cl_vector_t * const p_vector,
551 * [in] Pointer to a cl_vector_t structure from which to get a
581 cl_vector_get(IN const cl_vector_t * const p_vector,
598 * [in] Pointer to a cl_vector_t structure from which to get a copy of
637 cl_vector_at(IN const cl_vector_t * const p_vector,
642 * [in] Pointer to a cl_vector_t structure from which to get a copy of
677 cl_vector_set(IN cl_vector_t * const p_vector,
682 * [in] Pointer to a cl_vector_t structure into which to store
717 cl_vector_set_capacity(IN cl_vector_t * const p_vector,
722 * [in] Pointer to a cl_vector_t structure whose capacity to set.
755 cl_vector_set_size(IN cl_vector_t * const p_vector, IN const size_t size);
759 * [in] Pointer to a cl_vector_t structure whose size to set.
795 cl_vector_set_min_size(IN cl_vector_t * const p_vector,
800 * [in] Pointer to a cl_vector_t structure whose minimum size to set.
833 cl_vector_apply_func(IN const cl_vector_t * const p_vector,
839 * [in] Pointer to a cl_vector_t structure whose elements to iterate.
872 cl_vector_find_from_start(IN const cl_vector_t * const p_vector,
878 * [in] Pointer to a cl_vector_t structure to inititalize.
913 cl_vector_find_from_end(IN const cl_vector_t * const p_vector,
919 * [in] Pointer to a cl_vector_t structure to inititalize.