MCPcopy Create free account
hub / github.com/Vectorized/function-selector-miner / V

Class V

cpp/main.cpp:36–45  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

34#include <immintrin.h>
35
36struct V
37{
38 __m256i v;
39 FORCE_INLINE V() {}
40 FORCE_INLINE V(const __m256i &v): v(v) {}
41 FORCE_INLINE V(uint64_t v0, uint64_t v1, uint64_t v2, uint64_t v3)
42 {
43 v = _mm256_set_epi64x(v3, v2, v1, v0);
44 }
45};
46
47FORCE_INLINE V operator ^ (const V &a, const V &b)
48{

Callers 6

operator ^Function · 0.85
operator |Function · 0.85
operator <<Function · 0.85
operator >>Function · 0.85
operator &Function · 0.85
operator ~Function · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected