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

Completed in 22 milliseconds