Searched refs:i115 (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.cpp194 int i115[] = {1, 1, 1, 0, 1, 0}; local
257 assert(std::is_heap_until(i115, i115+6) == i115+6);
H A Dis_heap.pass.cpp194 int i115[] = {1, 1, 1, 0, 1, 0}; local
257 assert(std::is_heap(i115, i115+6) == (std::is_heap_until(i115, i115+6) == i115+6));
H A Dis_heap_until_comp.pass.cpp195 int i115[] = {1, 1, 1, 0, 1, 0}; local
258 assert(std::is_heap_until(i115, i115+6, std::greater<int>()) == i115+3);
H A Dis_heap_comp.pass.cpp195 int i115[] = {1, 1, 1, 0, 1, 0}; local
258 assert(std::is_heap(i115, i115+6, std::greater<int>()) == (std::is_heap_until(i115, i115+6, std::greater<int>()) == i115+6));

Completed in 28 milliseconds