Home
last modified time | relevance | path

Searched refs:decode_varint (Results 1 – 3 of 3) sorted by relevance

/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/protozero/1.5.2/include/protozero/
H A Diterators.hpp253 return static_cast<value_type>(decode_varint(&d, m_end)); in operator *()
310 return static_cast<value_type>(decode_zigzag64(decode_varint(&d, this->m_end))); in operator *()
H A Dpbf_reader.hpp96 return static_cast<T>(decode_varint(&m_data, m_end)); in get_varint()
102 return static_cast<T>(decode_zigzag64(decode_varint(&m_data, m_end))); in get_svarint()
H A Dvarint.hpp89 inline uint64_t decode_varint(const char** data, const char* end) { in decode_varint() function