Searched refs:i82 (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.cpp161 int i82[] = {0, 1, 1, 0, 0, 1}; local
224 assert(std::is_heap_until(i82, i82+6) == i82+1);
H A Dis_heap.pass.cpp161 int i82[] = {0, 1, 1, 0, 0, 1}; local
224 assert(std::is_heap(i82, i82+6) == (std::is_heap_until(i82, i82+6) == i82+6));
H A Dis_heap_until_comp.pass.cpp162 int i82[] = {0, 1, 1, 0, 0, 1}; local
225 assert(std::is_heap_until(i82, i82+6, std::greater<int>()) == i82+3);
H A Dis_heap_comp.pass.cpp162 int i82[] = {0, 1, 1, 0, 0, 1}; local
225 assert(std::is_heap(i82, i82+6, std::greater<int>()) == (std::is_heap_until(i82, i82+6, std::greater<int>()) == i82+6));

Completed in 59 milliseconds