Home
last modified time | relevance | path

Searched refs:TAG_BYTE_MASK (Results 1 – 4 of 4) sorted by relevance

/ohos5.0/base/hiviewdfx/hiview/base/event_raw/include/encoded/
H A Draw_data_encoder.h43 static_cast<uint8_t>(val & TAG_BYTE_MASK); in UnsignedVarintEncoded()
89 static constexpr int TAG_BYTE_MASK = (TAG_BYTE_BOUND - 1); variable
/ohos5.0/base/hiviewdfx/hisysevent/interfaces/native/innerkits/hisysevent/include/
H A Draw_data_encoder.h54 static_cast<uint8_t>(val & TAG_BYTE_MASK); in UnsignedVarintEncoded()
100 static constexpr int TAG_BYTE_MASK = (TAG_BYTE_BOUND - 1); variable
/ohos5.0/base/hiviewdfx/hiview/base/event_raw/include/decoded/
H A Draw_data_decoder.h35 static constexpr int TAG_BYTE_MASK = (TAG_BYTE_BOUND - 1); variable
/ohos5.0/base/hiviewdfx/hiview/base/event_raw/decoded/
H A Draw_data_decoder.cpp92 uint64_t val = rawData[pos] & TAG_BYTE_MASK; in UnsignedVarintDecoded()