Lines Matching defs:base
76 static inline uint8_t get_u8(uint8_t *base, uint32_t off)
78 return *(base + off);
81 static inline int32_t get_s16le(uint8_t *base, uint32_t off)
83 uint32_t v = *(base + off + 0) |
84 (*(base + off + 1) << 8);
90 static inline uint32_t get_u32le(uint8_t *base, uint32_t off)
92 return *(base + off + 0) |
93 (*(base + off + 1) << 8) |
94 (*(base + off + 2) << 16) |
95 (*(base + off + 3) << 24);