Searched refs:i216 (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.cpp358 int i216[] = {1, 1, 0, 0, 0, 0, 0}; local
485 assert(std::is_heap_until(i216, i216+7) == i216+7);
H A Dis_heap.pass.cpp358 int i216[] = {1, 1, 0, 0, 0, 0, 0}; local
485 assert(std::is_heap(i216, i216+7) == (std::is_heap_until(i216, i216+7) == i216+7));
H A Dis_heap_until_comp.pass.cpp359 int i216[] = {1, 1, 0, 0, 0, 0, 0}; local
486 assert(std::is_heap_until(i216, i216+7, std::greater<int>()) == i216+2);
H A Dis_heap_comp.pass.cpp359 int i216[] = {1, 1, 0, 0, 0, 0, 0}; local
486 assert(std::is_heap(i216, i216+7, std::greater<int>()) == (std::is_heap_until(i216, i216+7, std::greater<int>()) == i216+7));

Completed in 32 milliseconds