Home
last modified time | relevance | path

Searched refs:bytesOffset (Results 1 - 2 of 2) sorted by relevance

/developtools/hdc/hdc_rust/src/cffi/
H A Dserial_struct_define.h286 constexpr uint8_t bytesOffset = 7; in WriteVarint() local
290 value >>= bytesOffset; in WriteVarint()
303 constexpr uint8_t bytesOffset = 7;
307 value >>= bytesOffset;
328 constexpr uint8_t bytesOffset = 7;
334 value |= static_cast<uint32_t>(x & 0b0111'1111) << bytesOffset * c;
347 constexpr uint8_t bytesOffset = 7; in ReadVarint() local
353 value |= static_cast<uint64_t>(x & 0b0111'1111) << bytesOffset * c; in ReadVarint()
/developtools/hdc/src/common/
H A Dserial_struct_define.h283 constexpr uint8_t bytesOffset = 7; in WriteVarint() local
287 value >>= bytesOffset; in WriteVarint()
300 constexpr uint8_t bytesOffset = 7;
304 value >>= bytesOffset;
324 constexpr uint8_t bytesOffset = 7;
331 value |= static_cast<uint32_t>(x & 0b0111'1111) << bytesOffset * c;
343 constexpr uint8_t bytesOffset = 7; in ReadVarint() local
350 value |= static_cast<uint64_t>(x & 0b0111'1111) << bytesOffset * c; in ReadVarint()

Completed in 3 milliseconds