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

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

Completed in 116 milliseconds