Searched refs:i241 (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.cpp383 int i241[] = {1, 1, 1, 1, 0, 0, 1}; local
510 assert(std::is_heap_until(i241, i241+7) == i241+7);
H A Dis_heap.pass.cpp383 int i241[] = {1, 1, 1, 1, 0, 0, 1}; local
510 assert(std::is_heap(i241, i241+7) == (std::is_heap_until(i241, i241+7) == i241+7));
H A Dis_heap_until_comp.pass.cpp384 int i241[] = {1, 1, 1, 1, 0, 0, 1}; local
511 assert(std::is_heap_until(i241, i241+7, std::greater<int>()) == i241+4);
H A Dis_heap_comp.pass.cpp384 int i241[] = {1, 1, 1, 1, 0, 0, 1}; local
511 assert(std::is_heap(i241, i241+7, std::greater<int>()) == (std::is_heap_until(i241, i241+7, std::greater<int>()) == i241+7));

Completed in 31 milliseconds