MCPcopy Create free account
hub / github.com/git/git / reftable_get_be32

Function reftable_get_be32

reftable/basics.h:130–137  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

128}
129
130static inline uint32_t reftable_get_be32(const void *in)
131{
132 const unsigned char *p = in;
133 return (uint32_t)(p[0]) << 24 |
134 (uint32_t)(p[1]) << 16 |
135 (uint32_t)(p[2]) << 8|
136 (uint32_t)(p[3]) << 0;
137}
138
139static inline uint64_t reftable_get_be64(const void *in)
140{

Callers 2

parse_footerFunction · 0.85

Calls

no outgoing calls

Tested by 1