Lines Matching refs:pBytes

254 	const sal_uInt8 * pBytes = ( const sal_uInt8 * )aTmp.getConstArray();  in readChar()  local
255 return ((sal_Unicode)pBytes[0] << 8) + pBytes[1]; in readChar()
266 const sal_uInt8 * pBytes = ( const sal_uInt8 * ) aTmp.getConstArray(); in readShort() local
267 return ((sal_Int16)pBytes[0] << 8) + pBytes[1]; in readShort()
279 const sal_uInt8 * pBytes = ( const sal_uInt8 * ) aTmp.getConstArray(); in readLong() local
280 …return ((sal_Int32)pBytes[0] << 24) + ((sal_Int32)pBytes[1] << 16) + ((sal_Int32)pBytes[2] << 8) +… in readLong()
292 const sal_uInt8 * pBytes = ( const sal_uInt8 * ) aTmp.getConstArray(); in readHyper() local
294 (((sal_Int64)pBytes[0]) << 56) + in readHyper()
295 (((sal_Int64)pBytes[1]) << 48) + in readHyper()
296 (((sal_Int64)pBytes[2]) << 40) + in readHyper()
297 (((sal_Int64)pBytes[3]) << 32) + in readHyper()
298 (((sal_Int64)pBytes[4]) << 24) + in readHyper()
299 (((sal_Int64)pBytes[5]) << 16) + in readHyper()
300 (((sal_Int64)pBytes[6]) << 8) + in readHyper()
301 pBytes[7]; in readHyper()
677 sal_Int8 * pBytes = ( sal_Int8 * ) aTmp.getArray(); in writeChar() local
678 pBytes[0] = sal_Int8(Value >> 8); in writeChar()
679 pBytes[1] = sal_Int8(Value); in writeChar()
689 sal_Int8 * pBytes = aTmp.getArray(); in writeShort() local
690 pBytes[0] = sal_Int8(Value >> 8); in writeShort()
691 pBytes[1] = sal_Int8(Value); in writeShort()
700 sal_Int8 * pBytes = aTmp.getArray(); in writeLong() local
701 pBytes[0] = sal_Int8(Value >> 24); in writeLong()
702 pBytes[1] = sal_Int8(Value >> 16); in writeLong()
703 pBytes[2] = sal_Int8(Value >> 8); in writeLong()
704 pBytes[3] = sal_Int8(Value); in writeLong()
713 sal_Int8 * pBytes = aTmp.getArray(); in writeHyper() local
714 pBytes[0] = sal_Int8(Value >> 56); in writeHyper()
715 pBytes[1] = sal_Int8(Value >> 48); in writeHyper()
716 pBytes[2] = sal_Int8(Value >> 40); in writeHyper()
717 pBytes[3] = sal_Int8(Value >> 32); in writeHyper()
718 pBytes[4] = sal_Int8(Value >> 24); in writeHyper()
719 pBytes[5] = sal_Int8(Value >> 16); in writeHyper()
720 pBytes[6] = sal_Int8(Value >> 8); in writeHyper()
721 pBytes[7] = sal_Int8(Value); in writeHyper()