Searched refs:less_than (Results 1 – 5 of 5) sorted by relevance
/third_party/node/deps/uv/src/ |
D | heap-inl.h | 54 heap_compare_fn less_than)); 57 heap_compare_fn less_than)); 58 HEAP_EXPORT(void heap_dequeue(struct heap* heap, heap_compare_fn less_than)); 108 heap_compare_fn less_than)) { in HEAP_EXPORT() argument 146 while (newnode->parent != NULL && less_than(newnode, newnode->parent)) in HEAP_EXPORT() 152 heap_compare_fn less_than)) { in HEAP_EXPORT() argument 222 if (child->left != NULL && less_than(child->left, smallest)) in HEAP_EXPORT() 224 if (child->right != NULL && less_than(child->right, smallest)) in HEAP_EXPORT() 235 while (child->parent != NULL && less_than(child, child->parent)) in HEAP_EXPORT() 239 HEAP_EXPORT(void heap_dequeue(struct heap* heap, heap_compare_fn less_than)) { in HEAP_EXPORT() argument [all …]
|
/third_party/libuv/src/ |
D | heap-inl.h | 54 heap_compare_fn less_than)); 57 heap_compare_fn less_than)); 58 HEAP_EXPORT(void heap_dequeue(struct heap* heap, heap_compare_fn less_than)); 108 heap_compare_fn less_than)) { in HEAP_EXPORT() argument 146 while (newnode->parent != NULL && less_than(newnode, newnode->parent)) in HEAP_EXPORT() 152 heap_compare_fn less_than)) { in HEAP_EXPORT() argument 222 if (child->left != NULL && less_than(child->left, smallest)) in HEAP_EXPORT() 224 if (child->right != NULL && less_than(child->right, smallest)) in HEAP_EXPORT() 235 while (child->parent != NULL && less_than(child, child->parent)) in HEAP_EXPORT() 239 HEAP_EXPORT(void heap_dequeue(struct heap* heap, heap_compare_fn less_than)) { in HEAP_EXPORT() argument [all …]
|
/third_party/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()
|
/third_party/node/deps/v8/src/compiler/ |
D | js-typed-lowering.cc | 753 const Operator* less_than; in ReduceJSComparison() local 757 less_than = simplified()->NumberLessThan(); in ReduceJSComparison() 762 less_than = simplified()->NumberLessThan(); in ReduceJSComparison() 766 less_than = simplified()->StringLessThan(); in ReduceJSComparison() 774 comparison = less_than; in ReduceJSComparison() 777 comparison = less_than; in ReduceJSComparison()
|
/third_party/python/Lib/test/ |
D | test_inspect.py | 1524 def less_than(a, b): function 1539 greater_than_five = curry(less_than, 5) 1544 {'arg1': 5, 'func': less_than})
|