MCPcopy Create free account
hub / github.com/emscripten-core/emscripten / create_f32x4

Function create_f32x4

test/test_fp16.c:136–146  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

134}
135
136v128_t create_f32x4(float l0,
137 float l1,
138 float l2,
139 float l3) {
140 v128_t v;
141 v = wasm_f32x4_replace_lane(v, 0, l0);
142 v = wasm_f32x4_replace_lane(v, 1, l1);
143 v = wasm_f32x4_replace_lane(v, 2, l2);
144 v = wasm_f32x4_replace_lane(v, 3, l3);
145 return v;
146}
147
148v128_t create_f16x8(float l0,
149 float l1,

Callers 1

mainFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected