(byte[] srcA, byte[] srcB, byte[] dst, int offset, int length)
| 242 | |
| 243 | /// Exposes SIMD APIs directly **all arrays MUST be aligned arrays** |
| 244 | public void mul(byte[] srcA, byte[] srcB, byte[] dst, int offset, int length) { |
| 245 | for (int i = offset, end = offset + length; i < end; i++) { |
| 246 | dst[i] = clampByte(srcA[i] * srcB[i]); |
| 247 | } |
| 248 | } |
| 249 | |
| 250 | /// Exposes SIMD APIs directly **all arrays MUST be aligned arrays** |
| 251 | public void min(byte[] srcA, byte[] srcB, byte[] dst, int offset, int length) { |