| 105 | return x; |
| 106 | } |
| 107 | inline float32x4_t vexpq10_f32(float32x4_t x) |
| 108 | { |
| 109 | x = vmlaq_n_f32(vdupq_n_f32(1.0f), x, 0.0009765625f); // n = 10 |
| 110 | x = vmulq_f32(x, x); |
| 111 | x = vmulq_f32(x, x); |
| 112 | x = vmulq_f32(x, x); |
| 113 | x = vmulq_f32(x, x); |
| 114 | x = vmulq_f32(x, x); |
| 115 | x = vmulq_f32(x, x); |
| 116 | x = vmulq_f32(x, x); |
| 117 | x = vmulq_f32(x, x); |
| 118 | x = vmulq_f32(x, x); |
| 119 | x = vmulq_f32(x, x); |
| 120 | return x; |
| 121 | } |
| 122 | inline float32x2_t vexp10_f32(float32x2_t x) |
| 123 | { |
| 124 | x = vmla_n_f32(vdup_n_f32(1.0f), x, 0.0009765625f); // n = 10 |
no outgoing calls
no test coverage detected