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

/external/libcxx/test/algorithms/alg.sorting/alg.heap.operations/is.heap/
H A Dis_heap.pass.cpp311 int i169[] = {0, 1, 1, 0, 0, 0, 1}; local
438 assert(std::is_heap(i169, i169+7) == (std::is_heap_until(i169, i169+7) == i169+7));
H A Dis_heap_comp.pass.cpp312 int i169[] = {0, 1, 1, 0, 0, 0, 1}; local
439 assert(std::is_heap(i169, i169+7, std::greater<int>()) == (std::is_heap_until(i169, i169+7, std::greater<int>()) == i169+7));
H A Dis_heap_until.pass.cpp311 int i169[] = {0, 1, 1, 0, 0, 0, 1}; local
438 assert(std::is_heap_until(i169, i169+7) == i169+1);
H A Dis_heap_until_comp.pass.cpp312 int i169[] = {0, 1, 1, 0, 0, 0, 1}; local
439 assert(std::is_heap_until(i169, i169+7, std::greater<int>()) == i169+3);

Completed in 95 milliseconds