Searched defs:i153 (Results 1 - 4 of 4) sorted by path

/external/libcxx/test/algorithms/alg.sorting/alg.heap.operations/is.heap/
H A Dis_heap.pass.cpp295 int i153[] = {0, 1, 0, 0, 0, 0, 1}; local
422 assert(std::is_heap(i153, i153+7) == (std::is_heap_until(i153, i153+7) == i153+7));
H A Dis_heap_comp.pass.cpp296 int i153[] = {0, 1, 0, 0, 0, 0, 1}; local
423 assert(std::is_heap(i153, i153+7, std::greater<int>()) == (std::is_heap_until(i153, i153+7, std::greater<int>()) == i153+7));
H A Dis_heap_until.pass.cpp295 int i153[] = {0, 1, 0, 0, 0, 0, 1}; local
422 assert(std::is_heap_until(i153, i153+7) == i153+1);
H A Dis_heap_until_comp.pass.cpp296 int i153[] = {0, 1, 0, 0, 0, 0, 1}; local
423 assert(std::is_heap_until(i153, i153+7, std::greater<int>()) == i153+3);

Completed in 249 milliseconds