Searched refs:i89 (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.cpp168 int i89[] = {1, 0, 0, 0, 0, 0}; local
231 assert(std::is_heap_until(i89, i89+6) == i89+6);
H A Dis_heap.pass.cpp168 int i89[] = {1, 0, 0, 0, 0, 0}; local
231 assert(std::is_heap(i89, i89+6) == (std::is_heap_until(i89, i89+6) == i89+6));
H A Dis_heap_until_comp.pass.cpp169 int i89[] = {1, 0, 0, 0, 0, 0}; local
232 assert(std::is_heap_until(i89, i89+6, std::greater<int>()) == i89+1);
H A Dis_heap_comp.pass.cpp169 int i89[] = {1, 0, 0, 0, 0, 0}; local
232 assert(std::is_heap(i89, i89+6, std::greater<int>()) == (std::is_heap_until(i89, i89+6, std::greater<int>()) == i89+6));

Completed in 32 milliseconds