Lines Matching refs:function

86 B<STACK_OF>(B<I<TYPE>>) and each function name begins with B<sk_I<TYPE>_>.
96 except B<FUNCNAME> is used in the function names:
109 B<sk_I<TYPE>_new>() allocates a new empty stack using comparison function
110 I<compare>. If I<compare> is NULL then no comparison function is used. This
111 function is equivalent to B<sk_I<TYPE>_new_reserve>(I<compare>, 0).
114 function. This function is equivalent to B<sk_I<TYPE>_new_reserve>(NULL, 0).
127 B<sk_I<TYPE>_new_reserve>() also sets the comparison function I<compare>
129 function is used.
131 B<sk_I<TYPE>_set_cmp_func>() sets the comparison function of I<sk> to
132 I<compare>. The previous comparison function is returned or NULL if there
133 was no previous comparison function.
142 free function freefunc() is called on each element to free it.
174 where no comparison function has been specified, the function performs
177 where a comparison function has been specified, I<sk> is sorted and
179 is no match. Note that, in this case the comparison function will usually
187 comparison function has been specified and no matching element is found.
190 present in I<sk>. The function also does not guarantee that the first matching
195 no comparison function has been specified the I<*pnum> will be always set
198 B<sk_I<TYPE>_sort>() sorts I<sk> using the supplied comparison function.
209 The function freefunc() is only called if an error occurs.
219 Any comparison function supplied should use a metric suitable
257 B<sk_I<TYPE>_set_cmp_func>() returns the old comparison function or NULL if
258 there was no old comparison function.