Searched refs:CountZero (Results 1 – 1 of 1) sorted by relevance
540 constexpr int CountZero(const int *p, const int *q) { in CountZero() function541 return p == q ? 0 : (*p == 0) + CountZero(p+1, q); in CountZero()544 static_assert(CountZero(arr, arr + 40) == 36, "");