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

/external/libcxx/test/algorithms/alg.sorting/alg.heap.operations/is.heap/
H A Dis_heap.pass.cpp90 int i42[] = {1, 0, 0, 0, 0}; local
121 assert(std::is_heap(i42, i42+5) == (std::is_heap_until(i42, i42+5) == i42+5));
H A Dis_heap_comp.pass.cpp91 int i42[] = {1, 0, 0, 0, 0}; local
122 assert(std::is_heap(i42, i42+5, std::greater<int>()) == (std::is_heap_until(i42, i42+5, std::greater<int>()) == i42+5));
H A Dis_heap_until.pass.cpp90 int i42[] = {1, 0, 0, 0, 0}; local
121 assert(std::is_heap_until(i42, i42+5) == i42+5);
H A Dis_heap_until_comp.pass.cpp91 int i42[] = {1, 0, 0, 0, 0}; local
122 assert(std::is_heap_until(i42, i42+5, std::greater<int>()) == i42+1);

Completed in 119 milliseconds