Lines Matching refs:comparison
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
113 B<sk_I<TYPE>_new_null>() allocates a new empty stack with no comparison
127 B<sk_I<TYPE>_new_reserve>() also sets the comparison function I<compare>
128 to the newly created stack. If I<compare> is NULL then no comparison
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.
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.
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.
219 Any comparison function supplied should use a metric suitable
264 B<sk_I<TYPE>_set_cmp_func>() returns the old comparison function or NULL if
265 there was no old comparison function.