Lines Matching refs:uint8_t

54 bool MtpDataPacket::getUInt8(uint8_t& value) {  in getUInt8()
123 uint8_t value; in getAUInt8()
231 mBuffer[mOffset++] = (uint8_t)value; in putInt8()
236 void MtpDataPacket::putUInt8(uint8_t value) { in putUInt8()
238 mBuffer[mOffset++] = (uint8_t)value; in putUInt8()
245 mBuffer[mOffset++] = (uint8_t)(value & 0xFF); in putInt16()
246 mBuffer[mOffset++] = (uint8_t)((value >> 8) & 0xFF); in putInt16()
253 mBuffer[mOffset++] = (uint8_t)(value & 0xFF); in putUInt16()
254 mBuffer[mOffset++] = (uint8_t)((value >> 8) & 0xFF); in putUInt16()
261 mBuffer[mOffset++] = (uint8_t)(value & 0xFF); in putInt32()
262 mBuffer[mOffset++] = (uint8_t)((value >> 8) & 0xFF); in putInt32()
263 mBuffer[mOffset++] = (uint8_t)((value >> 16) & 0xFF); in putInt32()
264 mBuffer[mOffset++] = (uint8_t)((value >> 24) & 0xFF); in putInt32()
271 mBuffer[mOffset++] = (uint8_t)(value & 0xFF); in putUInt32()
272 mBuffer[mOffset++] = (uint8_t)((value >> 8) & 0xFF); in putUInt32()
273 mBuffer[mOffset++] = (uint8_t)((value >> 16) & 0xFF); in putUInt32()
274 mBuffer[mOffset++] = (uint8_t)((value >> 24) & 0xFF); in putUInt32()
281 mBuffer[mOffset++] = (uint8_t)(value & 0xFF); in putInt64()
282 mBuffer[mOffset++] = (uint8_t)((value >> 8) & 0xFF); in putInt64()
283 mBuffer[mOffset++] = (uint8_t)((value >> 16) & 0xFF); in putInt64()
284 mBuffer[mOffset++] = (uint8_t)((value >> 24) & 0xFF); in putInt64()
285 mBuffer[mOffset++] = (uint8_t)((value >> 32) & 0xFF); in putInt64()
286 mBuffer[mOffset++] = (uint8_t)((value >> 40) & 0xFF); in putInt64()
287 mBuffer[mOffset++] = (uint8_t)((value >> 48) & 0xFF); in putInt64()
288 mBuffer[mOffset++] = (uint8_t)((value >> 56) & 0xFF); in putInt64()
295 mBuffer[mOffset++] = (uint8_t)(value & 0xFF); in putUInt64()
296 mBuffer[mOffset++] = (uint8_t)((value >> 8) & 0xFF); in putUInt64()
297 mBuffer[mOffset++] = (uint8_t)((value >> 16) & 0xFF); in putUInt64()
298 mBuffer[mOffset++] = (uint8_t)((value >> 24) & 0xFF); in putUInt64()
299 mBuffer[mOffset++] = (uint8_t)((value >> 32) & 0xFF); in putUInt64()
300 mBuffer[mOffset++] = (uint8_t)((value >> 40) & 0xFF); in putUInt64()
301 mBuffer[mOffset++] = (uint8_t)((value >> 48) & 0xFF); in putUInt64()
302 mBuffer[mOffset++] = (uint8_t)((value >> 56) & 0xFF); in putUInt64()
337 void MtpDataPacket::putAUInt8(const uint8_t* values, int count) { in putAUInt8()