Home | History | Annotate | Download | only in 7z

Lines Matching refs:Byte

22     data = (const void *)((const Byte *)data + processedSize);

38 Byte buf[8];
57 static void SetUInt32(Byte *p, UInt32 d)
60 p[i] = (Byte)d;
63 static void SetUInt64(Byte *p, UInt64 d)
66 p[i] = (Byte)d;
71 Byte buf[24];
173 void COutArchive::WriteByte(Byte b)
190 WriteByte((Byte)value);
199 WriteByte((Byte)value);
206 Byte firstByte = 0;
207 Byte mask = 0x80;
213 firstByte |= Byte(value >> (8 * i));
222 WriteByte((Byte)value);
286 BYTE longID[15];
288 longID[t] = (Byte)(id & 0xFF);
289 Byte b;
290 b = (Byte)(idSize & 0xF);
322 Byte b = 0;
323 Byte mask = 0x80;
499 WriteByte((Byte)skip);
507 void COutArchive::WriteAlignedBoolHeader(const CBoolVector &v, int numDefined, Byte type, unsigned itemSize)
525 void COutArchive::WriteUInt64DefVector(const CUInt64DefVector &v, Byte type)
702 WriteByte((Byte)c);
703 WriteByte((Byte)(c >> 8));
782 _outByte2.Init((Byte *)buf, _countSize);