| 99 | } |
| 100 | |
| 101 | void ArrayMath::addConstant(int size, |
| 102 | const float* in, |
| 103 | float constant, |
| 104 | float* out) |
| 105 | { |
| 106 | ippsAddC_32f(in, constant, out, size); |
| 107 | } |
| 108 | |
| 109 | void ArrayMath::max(int size, |
| 110 | const float* in, |
nothing calls this directly
no outgoing calls
no test coverage detected