Searched defs:i223 (Results 1 - 4 of 4) sorted by last modified time

/external/libcxx/test/algorithms/alg.sorting/alg.heap.operations/is.heap/
H A Dis_heap.pass.cpp365 int i223[] = {1, 1, 0, 0, 1, 1, 1}; local
492 assert(std::is_heap(i223, i223+7) == (std::is_heap_until(i223, i223+7) == i223+7));
H A Dis_heap_comp.pass.cpp366 int i223[] = {1, 1, 0, 0, 1, 1, 1}; local
493 assert(std::is_heap(i223, i223+7, std::greater<int>()) == (std::is_heap_until(i223, i223+7, std::greater<int>()) == i223+7));
H A Dis_heap_until.pass.cpp365 int i223[] = {1, 1, 0, 0, 1, 1, 1}; local
492 assert(std::is_heap_until(i223, i223+7) == i223+5);
H A Dis_heap_until_comp.pass.cpp366 int i223[] = {1, 1, 0, 0, 1, 1, 1}; local
493 assert(std::is_heap_until(i223, i223+7, std::greater<int>()) == i223+2);

Completed in 210 milliseconds