Searched refs:i195 (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.cpp337 int i195[] = {1, 0, 0, 1, 0, 1, 1}; local
464 assert(std::is_heap_until(i195, i195+7) == i195+3);
H A Dis_heap.pass.cpp337 int i195[] = {1, 0, 0, 1, 0, 1, 1}; local
464 assert(std::is_heap(i195, i195+7) == (std::is_heap_until(i195, i195+7) == i195+7));
H A Dis_heap_until_comp.pass.cpp338 int i195[] = {1, 0, 0, 1, 0, 1, 1}; local
465 assert(std::is_heap_until(i195, i195+7, std::greater<int>()) == i195+1);
H A Dis_heap_comp.pass.cpp338 int i195[] = {1, 0, 0, 1, 0, 1, 1}; local
465 assert(std::is_heap(i195, i195+7, std::greater<int>()) == (std::is_heap_until(i195, i195+7, std::greater<int>()) == i195+7));

Completed in 56 milliseconds