Home | History | Annotate | Download | only in runtime

Lines Matching refs:data

27 static inline uint32_t DecodeUnsignedLeb128(const uint8_t** data) {
28 const uint8_t* ptr = *data;
48 *data = ptr;
56 static inline int32_t DecodeUnsignedLeb128P1(const uint8_t** data) {
57 return DecodeUnsignedLeb128(data) - 1;
63 static inline int32_t DecodeSignedLeb128(const uint8_t** data) {
64 const uint8_t* ptr = *data;
92 *data = ptr;
97 static inline uint32_t UnsignedLeb128Size(uint32_t data) {
100 data >>= 7;
102 } while (data != 0);