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

Completed in 48 milliseconds