| 109 | } |
| 110 | |
| 111 | void UArray_multiply_(UArray *self, const UArray *other) { |
| 112 | if (self->itemType == CTYPE_float32_t && |
| 113 | other->itemType == CTYPE_float32_t) { |
| 114 | vfloat32_mult((float32_t *)self->data, (float32_t *)other->data, |
| 115 | UArray_minSizeWith_(self, other)); |
| 116 | return; |
| 117 | } |
| 118 | |
| 119 | DUARRAY_OP(UARRAY_BASICOP_TYPES, *=, self, other); |
| 120 | } |
| 121 | |
| 122 | void UArray_divide_(UArray *self, const UArray *other) { |
| 123 | if (self->itemType == CTYPE_float32_t && |
no outgoing calls
no test coverage detected