Searched refs:i71 (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.cpp150 int i71[] = {0, 0, 1, 1, 1, 0}; local
213 assert(std::is_heap_until(i71, i71+6) == i71+2);
H A Dis_heap.pass.cpp150 int i71[] = {0, 0, 1, 1, 1, 0}; local
213 assert(std::is_heap(i71, i71+6) == (std::is_heap_until(i71, i71+6) == i71+6));
H A Dis_heap_until_comp.pass.cpp151 int i71[] = {0, 0, 1, 1, 1, 0}; local
214 assert(std::is_heap_until(i71, i71+6, std::greater<int>()) == i71+5);
H A Dis_heap_comp.pass.cpp151 int i71[] = {0, 0, 1, 1, 1, 0}; local
214 assert(std::is_heap(i71, i71+6, std::greater<int>()) == (std::is_heap_until(i71, i71+6, std::greater<int>()) == i71+6));

Completed in 54 milliseconds