HomeSort by relevance Sort by last modified time
    Searched refs:i43 (Results 1 - 4 of 4) sorted by null

  /ndk/sources/cxx-stl/llvm-libc++/test/algorithms/alg.sorting/alg.heap.operations/is.heap/
is_heap_until.pass.cpp 91 int i43[] = {1, 0, 0, 0, 1}; local
122 assert(std::is_heap_until(i43, i43+5) == i43+4);
is_heap.pass.cpp 91 int i43[] = {1, 0, 0, 0, 1}; local
122 assert(std::is_heap(i43, i43+5) == (std::is_heap_until(i43, i43+5) == i43+5));
is_heap_until_comp.pass.cpp 92 int i43[] = {1, 0, 0, 0, 1}; local
123 assert(std::is_heap_until(i43, i43+5, std::greater<int>()) == i43+1);
is_heap_comp.pass.cpp 92 int i43[] = {1, 0, 0, 0, 1}; local
123 assert(std::is_heap(i43, i43+5, std::greater<int>()) == (std::is_heap_until(i43, i43+5, std::greater<int>()) == i43+5));
    [all...]

Completed in 72 milliseconds