Searched defs:i50 (Results 1 - 4 of 4) sorted by path

/external/libcxx/test/algorithms/alg.sorting/alg.heap.operations/is.heap/
H A Dis_heap.pass.cpp98 int i50[] = {1, 1, 0, 0, 0}; local
129 assert(std::is_heap(i50, i50+5) == (std::is_heap_until(i50, i50+5) == i50+5));
H A Dis_heap_comp.pass.cpp99 int i50[] = {1, 1, 0, 0, 0}; local
130 assert(std::is_heap(i50, i50+5, std::greater<int>()) == (std::is_heap_until(i50, i50+5, std::greater<int>()) == i50+5));
H A Dis_heap_until.pass.cpp98 int i50[] = {1, 1, 0, 0, 0}; local
129 assert(std::is_heap_until(i50, i50+5) == i50+5);
H A Dis_heap_until_comp.pass.cpp99 int i50[] = {1, 1, 0, 0, 0}; local
130 assert(std::is_heap_until(i50, i50+5, std::greater<int>()) == i50+2);

Completed in 327 milliseconds