Searched refs:i92 (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.cpp171 int i92[] = {1, 0, 0, 0, 1, 1}; local
234 assert(std::is_heap_until(i92, i92+6) == i92+4);
H A Dis_heap.pass.cpp171 int i92[] = {1, 0, 0, 0, 1, 1}; local
234 assert(std::is_heap(i92, i92+6) == (std::is_heap_until(i92, i92+6) == i92+6));
H A Dis_heap_until_comp.pass.cpp172 int i92[] = {1, 0, 0, 0, 1, 1}; local
235 assert(std::is_heap_until(i92, i92+6, std::greater<int>()) == i92+1);
H A Dis_heap_comp.pass.cpp172 int i92[] = {1, 0, 0, 0, 1, 1}; local
235 assert(std::is_heap(i92, i92+6, std::greater<int>()) == (std::is_heap_until(i92, i92+6, std::greater<int>()) == i92+6));

Completed in 32 milliseconds