MCPcopy Create free account
hub / github.com/arvidn/libtorrent / load_3

Function load_3

src/ed25519/fe.cpp:16–24  ·  view source on GitHub ↗

helper functions */

Source from the content-addressed store, hash-verified

14 helper functions
15*/
16static 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
26static u64 load_4(const unsigned char *in) {
27 u64 result;

Callers 1

fe_frombytesFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected