Searched refs:i201 (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.cpp343 int i201[] = {1, 0, 1, 0, 0, 0, 1}; local
470 assert(std::is_heap_until(i201, i201+7) == i201+7);
H A Dis_heap.pass.cpp343 int i201[] = {1, 0, 1, 0, 0, 0, 1}; local
470 assert(std::is_heap(i201, i201+7) == (std::is_heap_until(i201, i201+7) == i201+7));
H A Dis_heap_until_comp.pass.cpp344 int i201[] = {1, 0, 1, 0, 0, 0, 1}; local
471 assert(std::is_heap_until(i201, i201+7, std::greater<int>()) == i201+1);
H A Dis_heap_comp.pass.cpp344 int i201[] = {1, 0, 1, 0, 0, 0, 1}; local
471 assert(std::is_heap(i201, i201+7, std::greater<int>()) == (std::is_heap_until(i201, i201+7, std::greater<int>()) == i201+7));

Completed in 28 milliseconds