Home
last modified time | relevance | path

Searched refs:less_than (Results 1 – 15 of 15) sorted by relevance

/external/rust/crates/itertools/src/
Dkmerge_impl.rs62 fn heapify<T, S>(data: &mut [T], mut less_than: S) in heapify()
66 sift_down(data, i, &mut less_than); in heapify()
71 fn sift_down<T, S>(heap: &mut [T], index: usize, mut less_than: S) in sift_down()
82 if right < heap.len() && less_than(&heap[right], &heap[child]) { in sift_down()
87 if !less_than(&heap[child], &heap[pos]) { in sift_down()
156 less_than: F, field
169 pub fn kmerge_by<I, F>(iterable: I, mut less_than: F) in kmerge_by()
179 heapify(&mut heap, |a, b| less_than.kmerge_pred(&a.head, &b.head)); in kmerge_by()
180 KMergeBy { heap, less_than } in kmerge_by()
188 clone_fields!(heap, less_than);
[all …]
/external/tensorflow/tensorflow/c/
Dwhile_loop_test.cc108 TF_Operation* less_than = in CreateCondGraph() local
111 params_->cond_output = {less_than, 0}; in CreateCondGraph()
157 TF_Operation* less_than = in TEST_F() local
161 params_->cond_output = {less_than, 0}; in TEST_F()
228 TF_Operation* less_than = in TEST_F() local
231 params_->cond_output = {less_than, 0}; in TEST_F()
418 TF_Operation* less_than = in TEST_F() local
421 params_->cond_output = {less_than, 0}; in TEST_F()
Dc_api_function_test.cc922 TF_Operation* less_than = LessThan( in TEST_F() local
925 params->cond_output = {less_than, 0}; in TEST_F()
/external/skqp/src/pathops/
DSkPathOpsWinding.cpp75 static bool less_than(SkOpRayDir dir) { in less_than() function
110 bool checkLessThan = less_than(dir); in rayCheck()
127 bool checkLessThan = less_than(dir); in rayCheck()
268 ? less_than(dir) ? hit_compare_y : reverse_hit_compare_y in sortableTop()
269 : less_than(dir) ? hit_compare_x : reverse_hit_compare_x); in sortableTop()
/external/skia/src/pathops/
DSkPathOpsWinding.cpp76 static bool less_than(SkOpRayDir dir) { in less_than() function
111 bool checkLessThan = less_than(dir); in rayCheck()
128 bool checkLessThan = less_than(dir); in rayCheck()
269 xy_index(dir) ? less_than(dir) ? hit_compare_y : reverse_hit_compare_y in sortableTop()
270 : less_than(dir) ? hit_compare_x : reverse_hit_compare_x); in sortableTop()
/external/tensorflow/tensorflow/compiler/xla/service/cpu/
Druntime_key_value_sort.cc32 void (*less_than)(char*, char*, char**, char**, tensorflow::int64*)) { in __xla_cpu_runtime_KeyValueSort()
82 less_than(&result, run_options, comparison_values.get(), nullptr, in __xla_cpu_runtime_KeyValueSort()
Druntime_key_value_sort.h43 void (*less_than)(char*, char*, char**, char**, tensorflow::int64*));
/external/oss-fuzz/projects/hoextdown/
Dhoextdown.dict23 less_than="<"
/external/e2fsprogs/intl/
Dplural-exp.h50 less_than, /* Comparison. */ enumerator
Deval-plural.h80 case less_than: in plural_eval()
Dplural.y307 lval->op = less_than; in yylex()
Dplural.c1416 lval->op = less_than; in yylex()
/external/webrtc/modules/rtp_rtcp/source/
Dforward_error_correction.cc488 SortablePacket::LessThan less_than; in AssignRecoveredPackets() local
490 if (less_than(*it_p, *it_r)) { in AssignRecoveredPackets()
492 } else if (less_than(*it_r, *it_p)) { in AssignRecoveredPackets()
/external/rust/crates/itertools/src/adaptors/
Dmod.rs563 let less_than = match self.fused { in next() localVariable
578 if less_than { in next()
/external/python/cpython3/Lib/test/
Dtest_inspect.py1399 def less_than(a, b): function
1414 greater_than_five = curry(less_than, 5)
1419 {'arg1': 5, 'func': less_than})