Searched refs:i164 (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.cpp306 int i164[] = {0, 1, 0, 1, 1, 0, 0}; local
433 assert(std::is_heap_until(i164, i164+7) == i164+1);
H A Dis_heap.pass.cpp306 int i164[] = {0, 1, 0, 1, 1, 0, 0}; local
433 assert(std::is_heap(i164, i164+7) == (std::is_heap_until(i164, i164+7) == i164+7));
H A Dis_heap_until_comp.pass.cpp307 int i164[] = {0, 1, 0, 1, 1, 0, 0}; local
434 assert(std::is_heap_until(i164, i164+7, std::greater<int>()) == i164+7);
H A Dis_heap_comp.pass.cpp307 int i164[] = {0, 1, 0, 1, 1, 0, 0}; local
434 assert(std::is_heap(i164, i164+7, std::greater<int>()) == (std::is_heap_until(i164, i164+7, std::greater<int>()) == i164+7));

Completed in 28 milliseconds