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

/external/libcxx/test/std/algorithms/alg.sorting/alg.heap.operations/is.heap/
H A Dis_heap.pass.cpp76 int i28[] = {0, 0, 0, 1, 0}; local
107 assert(std::is_heap(i28, i28+5) == (std::is_heap_until(i28, i28+5) == i28+5));
H A Dis_heap_comp.pass.cpp77 int i28[] = {0, 0, 0, 1, 0}; local
108 assert(std::is_heap(i28, i28+5, std::greater<int>()) == (std::is_heap_until(i28, i28+5, std::greater<int>()) == i28+5));
H A Dis_heap_until.pass.cpp76 int i28[] = {0, 0, 0, 1, 0}; local
107 assert(std::is_heap_until(i28, i28+5) == i28+3);
H A Dis_heap_until_comp.pass.cpp77 int i28[] = {0, 0, 0, 1, 0}; local
108 assert(std::is_heap_until(i28, i28+5, std::greater<int>()) == i28+5);

Completed in 111 milliseconds