helper functions */
| 14 | helper functions |
| 15 | */ |
| 16 | static u64 load_3(const unsigned char *in) { |
| 17 | u64 result; |
| 18 | |
| 19 | result = (u64) in[0]; |
| 20 | result |= ((u64) in[1]) << 8; |
| 21 | result |= ((u64) in[2]) << 16; |
| 22 | |
| 23 | return result; |
| 24 | } |
| 25 | |
| 26 | static u64 load_4(const unsigned char *in) { |
| 27 | u64 result; |