Searched defs:i73 (Results 1 - 4 of 4) sorted by last modified time

/external/libcxx/test/algorithms/alg.sorting/alg.heap.operations/is.heap/
H A Dis_heap.pass.cpp152 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));
H A Dis_heap_comp.pass.cpp153 int i73[] = {0, 1, 0, 0, 0, 0}; local
216 assert(std::is_heap(i73, i73+6, std::greater<int>()) == (std::is_heap_until(i73, i73+6, std::greater<int>()) == i73+6));
H A Dis_heap_until.pass.cpp152 int i73[] = {0, 1, 0, 0, 0, 0}; local
215 assert(std::is_heap_until(i73, i73+6) == i73+1);
H A Dis_heap_until_comp.pass.cpp153 int i73[] = {0, 1, 0, 0, 0, 0}; local
216 assert(std::is_heap_until(i73, i73+6, std::greater<int>()) == i73+3);

Completed in 96 milliseconds