Searched refs:i198 (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.cpp340 int i198[] = {1, 0, 0, 1, 1, 1, 0}; local
467 assert(std::is_heap_until(i198, i198+7) == i198+3);
H A Dis_heap.pass.cpp340 int i198[] = {1, 0, 0, 1, 1, 1, 0}; local
467 assert(std::is_heap(i198, i198+7) == (std::is_heap_until(i198, i198+7) == i198+7));
H A Dis_heap_until_comp.pass.cpp341 int i198[] = {1, 0, 0, 1, 1, 1, 0}; local
468 assert(std::is_heap_until(i198, i198+7, std::greater<int>()) == i198+1);
H A Dis_heap_comp.pass.cpp341 int i198[] = {1, 0, 0, 1, 1, 1, 0}; local
468 assert(std::is_heap(i198, i198+7, std::greater<int>()) == (std::is_heap_until(i198, i198+7, std::greater<int>()) == i198+7));

Completed in 28 milliseconds