HomeSort by relevance Sort by last modified time
    Searched refs:i73 (Results 1 - 9 of 9) sorted by null

  /external/libcxx/test/std/algorithms/alg.sorting/alg.heap.operations/is.heap/
is_heap_until.pass.cpp 152 int i73[] = {0, 1, 0, 0, 0, 0}; local
215 assert(std::is_heap_until(i73, i73+6) == i73+1);
is_heap.pass.cpp 152 int i73[] = {0, 1, 0, 0, 0, 0}; local
215 assert(std::is_heap(i73, i73+6) == (std::is_heap_until(i73, i73+6) == i73+6));
is_heap_until_comp.pass.cpp 153 int i73[] = {0, 1, 0, 0, 0, 0}; local
216 assert(std::is_heap_until(i73, i73+6, std::greater<int>()) == i73+3);