HomeSort by relevance Sort by last modified time
    Searched defs:i17 (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.pass.cpp 50 int i17[] = {0, 1, 1, 0}; local
65 assert(std::is_heap(i17, i17+4) == (std::is_heap_until(i17, i17+4) == i17+4));
is_heap_comp.pass.cpp 51 int i17[] = {0, 1, 1, 0}; local
66 assert(std::is_heap(i17, i17+4, std::greater<int>()) == (std::is_heap_until(i17, i17+4, std::greater<int>()) == i17+4));
    [all...]
is_heap_until.pass.cpp 50 int i17[] = {0, 1, 1, 0}; local
65 assert(std::is_heap_until(i17, i17+4) == i17+1);
is_heap_until_comp.pass.cpp 51 int i17[] = {0, 1, 1, 0}; local
66 assert(std::is_heap_until(i17, i17+4, std::greater<int>()) == i17+3);

Completed in 1082 milliseconds