MCPcopy Create free account
hub / github.com/ading2210/linuxpdf / put_le64

Function put_le64

tinyemu/cutils.h:126–130  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

124}
125
126static inline void put_le64(uint8_t *ptr, uint64_t v)
127{
128 put_le32(ptr, v);
129 put_le32(ptr + 4, v >> 32);
130}
131
132static inline uint32_t get_be32(const uint8_t *d)
133{

Callers 3

fs_readdirFunction · 0.85
marshallFunction · 0.85
fs_readdirFunction · 0.85

Calls 1

put_le32Function · 0.85

Tested by

no test coverage detected