Home
last modified time | relevance | path

Searched refs:cmp (Results 1 – 2 of 2) sorted by relevance

/oneTBB/include/oneapi/tbb/detail/
H A D_concurrent_skip_list.h834 not_greater_compare cmp(my_compare); in internal_equal_range()
839 while (curr && cmp(get_key(curr), key)) { in internal_equal_range()
858 const Comparator& cmp ) const { in internal_find_position() argument
862 while (curr && cmp(get_key(curr), key)) { in internal_find_position()
874 const Comparator& cmp ) const { in internal_find_position() argument
878 while (curr && cmp(get_key(curr), get_key(node))) { in internal_find_position()
879 …if (allow_multimapping && cmp(get_key(node), get_key(curr)) && curr->index_number() > node->index_… in internal_find_position()
892 const Comparator& cmp, node_ptr head ) { in fill_prev_curr_arrays() argument
903 node_ptr curr = internal_find_position(level - 1, prev, key, cmp); in fill_prev_curr_arrays()
1014 node_ptr internal_get_bound( const K& key, const Comparator& cmp ) const { in internal_get_bound() argument
[all …]
/oneTBB/src/tbbmalloc/
H A Dtbbmalloc_internal.h162 inline void AtomicUpdate(std::atomic<Arg>& location, Arg newVal, const Compare &cmp) in AtomicUpdate() argument
166 for (; cmp(old, newVal); ) { in AtomicUpdate()