/external/rust/crates/itertools/src/ |
D | kmerge_impl.rs | 62 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/ |
D | while_loop_test.cc | 108 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()
|
D | c_api_function_test.cc | 922 TF_Operation* less_than = LessThan( in TEST_F() local 925 params->cond_output = {less_than, 0}; in TEST_F()
|
/external/skqp/src/pathops/ |
D | SkPathOpsWinding.cpp | 75 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/ |
D | SkPathOpsWinding.cpp | 76 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/ |
D | runtime_key_value_sort.cc | 32 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()
|
D | runtime_key_value_sort.h | 43 void (*less_than)(char*, char*, char**, char**, tensorflow::int64*));
|
/external/oss-fuzz/projects/hoextdown/ |
D | hoextdown.dict | 23 less_than="<"
|
/external/e2fsprogs/intl/ |
D | plural-exp.h | 50 less_than, /* Comparison. */ enumerator
|
D | eval-plural.h | 80 case less_than: in plural_eval()
|
D | plural.y | 307 lval->op = less_than; in yylex()
|
D | plural.c | 1416 lval->op = less_than; in yylex()
|
/external/webrtc/modules/rtp_rtcp/source/ |
D | forward_error_correction.cc | 488 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/ |
D | mod.rs | 563 let less_than = match self.fused { in next() localVariable 578 if less_than { in next()
|
/external/python/cpython3/Lib/test/ |
D | test_inspect.py | 1399 def less_than(a, b): function 1414 greater_than_five = curry(less_than, 5) 1419 {'arg1': 5, 'func': less_than})
|