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

Function cpy8

Source/ThirdParty/tinyexr.h:996–1008  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

994
995#if 0
996static void inline cpy8(tinyexr::tinyexr_uint64 *dst_val, const tinyexr::tinyexr_uint64 *src_val) {
997 unsigned char *dst = reinterpret_cast<unsigned char *>(dst_val);
998 const unsigned char *src = reinterpret_cast<const unsigned char *>(src_val);
999
1000 dst[0] = src[0];
1001 dst[1] = src[1];
1002 dst[2] = src[2];
1003 dst[3] = src[3];
1004 dst[4] = src[4];
1005 dst[5] = src[5];
1006 dst[6] = src[6];
1007 dst[7] = src[7];
1008}
1009#endif
1010
1011static void inline swap8(tinyexr::tinyexr_uint64 *val) {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected