Searched refs:i126 (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.cpp268 int i126[] = {0, 0, 0, 0, 1, 1, 0}; local
395 assert(std::is_heap_until(i126, i126+7) == i126+4);
H A Dis_heap.pass.cpp268 int i126[] = {0, 0, 0, 0, 1, 1, 0}; local
395 assert(std::is_heap(i126, i126+7) == (std::is_heap_until(i126, i126+7) == i126+7));
H A Dis_heap_until_comp.pass.cpp269 int i126[] = {0, 0, 0, 0, 1, 1, 0}; local
396 assert(std::is_heap_until(i126, i126+7, std::greater<int>()) == i126+7);
H A Dis_heap_comp.pass.cpp269 int i126[] = {0, 0, 0, 0, 1, 1, 0}; local
396 assert(std::is_heap(i126, i126+7, std::greater<int>()) == (std::is_heap_until(i126, i126+7, std::greater<int>()) == i126+7));

Completed in 28 milliseconds