Searched refs:i185 (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.cpp327 int i185[] = {1, 0, 0, 0, 0, 0, 1}; local
454 assert(std::is_heap_until(i185, i185+7) == i185+6);
H A Dis_heap.pass.cpp327 int i185[] = {1, 0, 0, 0, 0, 0, 1}; local
454 assert(std::is_heap(i185, i185+7) == (std::is_heap_until(i185, i185+7) == i185+7));
H A Dis_heap_until_comp.pass.cpp328 int i185[] = {1, 0, 0, 0, 0, 0, 1}; local
455 assert(std::is_heap_until(i185, i185+7, std::greater<int>()) == i185+1);
H A Dis_heap_comp.pass.cpp328 int i185[] = {1, 0, 0, 0, 0, 0, 1}; local
455 assert(std::is_heap(i185, i185+7, std::greater<int>()) == (std::is_heap_until(i185, i185+7, std::greater<int>()) == i185+7));

Completed in 54 milliseconds