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

Function print

Source/astcenc_vecmathlib_avx2_8.h:1183–1189  ·  view source on GitHub ↗

* @brief Debug function to print a vector of ints. */

Source from the content-addressed store, hash-verified

1181 * @brief Debug function to print a vector of ints.
1182 */
1183ASTCENC_SIMD_INLINE void print(vint8 a)
1184{
1185 alignas(32) int v[8];
1186 storea(a, v);
1187 printf("v8_i32:\n %8d %8d %8d %8d %8d %8d %8d %8d\n",
1188 v[0], v[1], v[2], v[3], v[4], v[5], v[6], v[7]);
1189}
1190
1191/**
1192 * @brief Debug function to print a vector of ints.

Callers

nothing calls this directly

Calls 3

storeaFunction · 0.70
selectFunction · 0.70
vint8Class · 0.70

Tested by

no test coverage detected