HomeSort by relevance Sort by last modified time
    Searched refs:i44 (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 92 int i44[] = {1, 0, 0, 1, 0}; local
123 assert(std::is_heap_until(i44, i44+5) == i44+3);
is_heap.pass.cpp 92 int i44[] = {1, 0, 0, 1, 0}; local
123 assert(std::is_heap(i44, i44+5) == (std::is_heap_until(i44, i44+5) == i44+5));
is_heap_until_comp.pass.cpp 93 int i44[] = {1, 0, 0, 1, 0}; local
124 assert(std::is_heap_until(i44, i44+5, std::greater<int>()) == i44+1);
is_heap_comp.pass.cpp 93 int i44[] = {1, 0, 0, 1, 0}; local
124 assert(std::is_heap(i44, i44+5, std::greater<int>()) == (std::is_heap_until(i44, i44+5, std::greater<int>()) == i44+5));
    [all...]

Completed in 23 milliseconds