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

Function print

Source/astcenc_vecmathlib_rvv_n.h:1180–1190  ·  view source on GitHub ↗

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

Source from the content-addressed store, hash-verified

1178 * @brief Debug function to print a vector of ints.
1179 */
1180ASTCENC_SIMD_INLINE void print(vint a)
1181{
1182 int v[ASTCENC_SIMD_WIDTH];
1183 __riscv_vse32(v, a.m, vint::vl());
1184 printf("v%zu_i32:\n ", (size_t)ASTCENC_SIMD_WIDTH);
1185 for (size_t i = 0; i < ASTCENC_SIMD_WIDTH; i++)
1186 {
1187 printf(" %8d", v[i]);
1188 }
1189 puts("");
1190}
1191
1192/**
1193 * @brief Debug function to print a vector of ints.

Callers

nothing calls this directly

Calls 2

vintClass · 0.85
selectFunction · 0.70

Tested by

no test coverage detected