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

Function print

Source/astcenc_vecmathlib_common_4.h:378–384  ·  view source on GitHub ↗

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

Source from the content-addressed store, hash-verified

376 * @brief Debug function to print a vector of ints.
377 */
378ASTCENC_SIMD_INLINE void print(vint4 a)
379{
380 ASTCENC_ALIGNAS int v[4];
381 storea(a, v);
382 printf("v4_i32:\n %8d %8d %8d %8d\n",
383 v[0], v[1], v[2], v[3]);
384}
385
386/**
387 * @brief Debug function to print a vector of ints.

Callers

nothing calls this directly

Calls 3

storeaFunction · 0.70
selectFunction · 0.70
vint4Class · 0.70

Tested by

no test coverage detected