Home
last modified time | relevance | path

Searched refs:CountZero (Results 1 – 1 of 1) sorted by relevance

/external/clang/test/SemaCXX/
Dconstant-expression-cxx11.cpp540 constexpr int CountZero(const int *p, const int *q) { in CountZero() function
541 return p == q ? 0 : (*p == 0) + CountZero(p+1, q); in CountZero()
544 static_assert(CountZero(arr, arr + 40) == 36, "");