Searched refs:i101 (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.cpp180 int i101[] = {1, 0, 1, 1, 0, 0}; local
243 assert(std::is_heap_until(i101, i101+6) == i101+3);
H A Dis_heap.pass.cpp180 int i101[] = {1, 0, 1, 1, 0, 0}; local
243 assert(std::is_heap(i101, i101+6) == (std::is_heap_until(i101, i101+6) == i101+6));
H A Dis_heap_until_comp.pass.cpp181 int i101[] = {1, 0, 1, 1, 0, 0}; local
244 assert(std::is_heap_until(i101, i101+6, std::greater<int>()) == i101+1);
H A Dis_heap_comp.pass.cpp181 int i101[] = {1, 0, 1, 1, 0, 0}; local
244 assert(std::is_heap(i101, i101+6, std::greater<int>()) == (std::is_heap_until(i101, i101+6, std::greater<int>()) == i101+6));

Completed in 64 milliseconds