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