HomeSort by relevance Sort by last modified time
    Searched refs:i22 (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 55 int i22[] = {1, 0, 1, 1}; local
70 assert(std::is_heap_until(i22, i22+4) == i22+3);
is_heap.pass.cpp 55 int i22[] = {1, 0, 1, 1}; local
70 assert(std::is_heap(i22, i22+4) == (std::is_heap_until(i22, i22+4) == i22+4));
is_heap_until_comp.pass.cpp 56 int i22[] = {1, 0, 1, 1}; local
71 assert(std::is_heap_until(i22, i22+4, std::greater<int>()) == i22+1);
is_heap_comp.pass.cpp 56 int i22[] = {1, 0, 1, 1}; local
71 assert(std::is_heap(i22, i22+4, std::greater<int>()) == (std::is_heap_until(i22, i22+4, std::greater<int>()) == i22+4));
    [all...]

Completed in 25 milliseconds