MCPcopy Create free account
hub / github.com/IoLanguage/io / UArray_multiply_

Function UArray_multiply_

libs/basekit/source/UArray_math.c:111–120  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

109}
110
111void 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
122void UArray_divide_(UArray *self, const UArray *other) {
123 if (self->itemType == CTYPE_float32_t &&

Callers 2

UArray_squareFunction · 0.85
IoSeq_mutable.cFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected