Lines Matching full:element

103 			    IN void *const element, IN void *context);
107 * [in] Index of the element.
110 * [in] Pointer to an element at the specified index in the pointer vector.
139 IN const void *const element, IN void *context);
143 * [in] Index of the element.
146 * [in] Pointer to an element at the specified index in the
154 * Return CL_SUCCESS if the element was found. This stops pointer vector
392 * element.
395 * [in] Index of the element.
416 * The cl_ptr_vector_at function copies an element stored in a pointer
428 * an element.
431 * [in] Index of the element.
434 * [out] Pointer to storage for the pointer element. Contains a copy of
438 * CL_SUCCESS if an element was found at the specified index.
447 * desired element.
458 * The cl_ptr_vector_set function sets the element at the specified index.
464 IN const size_t index, IN const void *const element);
469 * an element.
472 * [in] Index of the element.
474 * element
478 * CL_SUCCESS if the element was successfully set.
481 * accommodate the new element.
485 * the new element, unless the grow_size parameter passed into the
497 * The cl_ptr_vector_insert function inserts an element into a pointer vector.
503 IN const void *const element, in cl_ptr_vector_insert() argument
511 status = cl_ptr_vector_set(p_vector, p_vector->size, element); in cl_ptr_vector_insert()
522 * an element.
524 * element
528 * [out] Pointer to the index of the element. Valid only if
532 * CL_SUCCESS if the element was successfully inserted.
535 * accommodate the new element.
538 * cl_ptr_vector_insert places the new element at the end of
542 * the new element, unless the grow_size parameter passed into the
566 * element.
569 * [in] Index of the element.
707 * every element in a pointer vector.
721 * [in] Function invoked for every element in the array.
732 * cl_ptr_vector_apply_func invokes the specified function for every element
768 * Index of the element, if found.
770 * Size of the pointer vector if the element was not found.
773 * cl_ptr_vector_find_from_start does not remove the found element from
774 * the pointer vector. The index of the element is returned when the function
810 * Index of the element, if found.
812 * Size of the pointer vector if the element was not found.
815 * cl_ptr_vector_find_from_end does not remove the found element from
816 * the pointer vector. The index of the element is returned when the function