Searched refs:less_than (Results 1 - 5 of 5) sorted by relevance
/third_party/libuv/src/ |
H A D | heap-inl.h | 55 heap_compare_fn less_than)); 58 heap_compare_fn less_than)); 59 HEAP_EXPORT(void heap_dequeue(struct heap* heap, heap_compare_fn less_than)); 109 heap_compare_fn less_than)) { in HEAP_EXPORT() 147 while (newnode->parent != NULL && less_than(newnode, newnode->parent)) in HEAP_EXPORT() 153 heap_compare_fn less_than)) { in HEAP_EXPORT() 229 if (child->left != NULL && less_than(child->left, smallest)) in HEAP_EXPORT() 231 if (child->right != NULL && less_than(child->right, smallest)) in HEAP_EXPORT() 242 while (child->parent != NULL && less_than(child, child->parent)) in HEAP_EXPORT() 246 HEAP_EXPORT(void heap_dequeue(struct heap* heap, heap_compare_fn less_than)) { in HEAP_EXPORT() argument 107 HEAP_EXPORT(void heap_insert(struct heap* heap, struct heap_node* newnode, heap_compare_fn less_than)) HEAP_EXPORT() argument 151 HEAP_EXPORT(void heap_remove(struct heap* heap, struct heap_node* node, heap_compare_fn less_than)) HEAP_EXPORT() argument [all...] |
/third_party/node/deps/uv/src/ |
H A 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() 146 while (newnode->parent != NULL && less_than(newnode, newnode->parent)) in HEAP_EXPORT() 152 heap_compare_fn less_than)) { in HEAP_EXPORT() 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 106 HEAP_EXPORT(void heap_insert(struct heap* heap, struct heap_node* newnode, heap_compare_fn less_than)) HEAP_EXPORT() argument 150 HEAP_EXPORT(void heap_remove(struct heap* heap, struct heap_node* node, heap_compare_fn less_than)) HEAP_EXPORT() argument [all...] |
/third_party/skia/src/pathops/ |
H A 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/ |
H A 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/ |
H A D | test_inspect.py | 1554 def less_than(a, b): function 1569 greater_than_five = curry(less_than, 5) 1574 {'arg1': 5, 'func': less_than})
|
Completed in 19 milliseconds