Searched defs:i107 (Results 1 - 4 of 4) sorted by relevance

/external/libcxx/test/algorithms/alg.sorting/alg.heap.operations/is.heap/
H A Dis_heap.pass.cpp186 int i107[] = {1, 1, 0, 0, 1, 0}; local
249 assert(std::is_heap(i107, i107+6) == (std::is_heap_until(i107, i107+6) == i107+6));
H A Dis_heap_comp.pass.cpp187 int i107[] = {1, 1, 0, 0, 1, 0}; local
250 assert(std::is_heap(i107, i107+6, std::greater<int>()) == (std::is_heap_until(i107, i107+6, std::greater<int>()) == i107+6));
H A Dis_heap_until.pass.cpp186 int i107[] = {1, 1, 0, 0, 1, 0}; local
249 assert(std::is_heap_until(i107, i107+6) == i107+6);
H A Dis_heap_until_comp.pass.cpp187 int i107[] = {1, 1, 0, 0, 1, 0}; local
250 assert(std::is_heap_until(i107, i107+6, std::greater<int>()) == i107+2);

Completed in 93 milliseconds