Searched refs:i87 (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.cpp166 int i87[] = {0, 1, 1, 1, 1, 0}; local
229 assert(std::is_heap_until(i87, i87+6) == i87+1);
H A Dis_heap.pass.cpp166 int i87[] = {0, 1, 1, 1, 1, 0}; local
229 assert(std::is_heap(i87, i87+6) == (std::is_heap_until(i87, i87+6) == i87+6));
H A Dis_heap_until_comp.pass.cpp167 int i87[] = {0, 1, 1, 1, 1, 0}; local
230 assert(std::is_heap_until(i87, i87+6, std::greater<int>()) == i87+5);
H A Dis_heap_comp.pass.cpp167 int i87[] = {0, 1, 1, 1, 1, 0}; local
230 assert(std::is_heap(i87, i87+6, std::greater<int>()) == (std::is_heap_until(i87, i87+6, std::greater<int>()) == i87+6));

Completed in 32 milliseconds