| 263 | } |
| 264 | |
| 265 | static int countNonZero16u( const ushort* src, int len ) |
| 266 | { return countNonZero_(src, len); } |
| 267 | |
| 268 | static int countNonZero32s( const int* src, int len ) |
| 269 | { return countNonZero_(src, len); } |
nothing calls this directly
no test coverage detected