Searched defs:i42 (Results 1 - 4 of 4) sorted by relevance
/external/libcxx/test/std/algorithms/alg.sorting/alg.heap.operations/is.heap/ |
H A D | is_heap.pass.cpp | 90 int i42[] = {1, 0, 0, 0, 0}; local 121 assert(std::is_heap(i42, i42+5) == (std::is_heap_until(i42, i42+5) == i42+5));
|
H A D | is_heap_comp.pass.cpp | 91 int i42[] = {1, 0, 0, 0, 0}; local 122 assert(std::is_heap(i42, i42+5, std::greater<int>()) == (std::is_heap_until(i42, i42+5, std::greater<int>()) == i42+5));
|
H A D | is_heap_until.pass.cpp | 90 int i42[] = {1, 0, 0, 0, 0}; local 121 assert(std::is_heap_until(i42, i42+5) == i42+5);
|
H A D | is_heap_until_comp.pass.cpp | 91 int i42[] = {1, 0, 0, 0, 0}; local 122 assert(std::is_heap_until(i42, i42+5, std::greater<int>()) == i42+1);
|
Completed in 127 milliseconds