| 172 | |
| 173 | int128 get_int128(int i) const { return _mm_loadu_si128((__m128i*)bytes + i); } |
| 174 | void set_int128(int i, int128 a) { *((__m128i*)bytes + i) = a.a; } |
| 175 | |
| 176 | template <class T> |
| 177 | T get_portion(int i) const; |
no outgoing calls
no test coverage detected