Searched refs:i103 (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.cpp182 int i103[] = {1, 0, 1, 1, 1, 0}; local
245 assert(std::is_heap_until(i103, i103+6) == i103+3);
H A Dis_heap.pass.cpp182 int i103[] = {1, 0, 1, 1, 1, 0}; local
245 assert(std::is_heap(i103, i103+6) == (std::is_heap_until(i103, i103+6) == i103+6));
H A Dis_heap_until_comp.pass.cpp183 int i103[] = {1, 0, 1, 1, 1, 0}; local
246 assert(std::is_heap_until(i103, i103+6, std::greater<int>()) == i103+1);
H A Dis_heap_comp.pass.cpp183 int i103[] = {1, 0, 1, 1, 1, 0}; local
246 assert(std::is_heap(i103, i103+6, std::greater<int>()) == (std::is_heap_until(i103, i103+6, std::greater<int>()) == i103+6));

Completed in 111 milliseconds