Lines Matching refs:value
37 bool ReadUint64(uint64_t& value)
39 return Read<uint64_t>(value);
42 bool ReadUint32(uint32_t& value)
44 return Read<uint32_t>(value);
47 bool ReadUint8(uint8_t& value)
52 value = static_cast<uint8_t>(intVal & 0xFF);
58 bool ReadInt32(int32_t& value)
60 return Read<int32_t>(value);
63 bool ReadBool(bool& value)
68 value = (intVal == 0 ? false : true);
149 bool Read(T& value)
159 value = *reinterpret_cast<T *>(data_ + readPos_);