Searched refs:i66 (Results 1 - 4 of 4) sorted by relevance

/external/libcxx/test/std/algorithms/alg.sorting/alg.heap.operations/is.heap/
H A Dis_heap_until.pass.cpp145 int i66[] = {0, 0, 1, 0, 0, 1}; local
208 assert(std::is_heap_until(i66, i66+6) == i66+2);
H A Dis_heap.pass.cpp145 int i66[] = {0, 0, 1, 0, 0, 1}; local
208 assert(std::is_heap(i66, i66+6) == (std::is_heap_until(i66, i66+6) == i66+6));
H A Dis_heap_until_comp.pass.cpp146 int i66[] = {0, 0, 1, 0, 0, 1}; local
209 assert(std::is_heap_until(i66, i66+6, std::greater<int>()) == i66+6);
H A Dis_heap_comp.pass.cpp146 int i66[] = {0, 0, 1, 0, 0, 1}; local
209 assert(std::is_heap(i66, i66+6, std::greater<int>()) == (std::is_heap_until(i66, i66+6, std::greater<int>()) == i66+6));

Completed in 53 milliseconds