MCPcopy Create free account
hub / github.com/ARM-software/astc-encoder / vint8_lit

Function vint8_lit

Source/UnitTest/test_simd.cpp:61–70  ·  view source on GitHub ↗

* @brief Construct from 8 scalar values. * * The value of @c a is stored to lane 0 (LSB) in the SIMD register. */

Source from the content-addressed store, hash-verified

59 * The value of @c a is stored to lane 0 (LSB) in the SIMD register.
60 */
61static vint8 vint8_lit(
62 int a, int b, int c, int d,
63 int e, int f, int g, int h
64) {
65 alignas(32) int data[8] {
66 a, b, c, d, e, f, g, h
67 };
68
69 return vint8(data);
70}
71
72#endif
73

Callers 1

TESTFunction · 0.85

Calls 1

vint8Class · 0.50

Tested by

no test coverage detected