Lines Matching refs:Byte
36 const Byte *buf0, SizeT size0, in Bcj2_Decode()
37 const Byte *buf1, SizeT size1, in Bcj2_Decode()
38 const Byte *buf2, SizeT size2, in Bcj2_Decode()
39 const Byte *buf3, SizeT size3, in Bcj2_Decode()
40 Byte *outBuf, SizeT outSize) in Bcj2_Decode()
45 const Byte *buffer, *bufferLim; in Bcj2_Decode()
47 Byte prevByte = 0; in Bcj2_Decode()
62 Byte b; in Bcj2_Decode()
72 Byte b = buf0[inPos]; in Bcj2_Decode()
101 const Byte *v; in Bcj2_Decode()
121 outBuf[outPos++] = (Byte)dest; in Bcj2_Decode()
124 outBuf[outPos++] = (Byte)(dest >> 8); in Bcj2_Decode()
127 outBuf[outPos++] = (Byte)(dest >> 16); in Bcj2_Decode()
130 outBuf[outPos++] = prevByte = (Byte)(dest >> 24); in Bcj2_Decode()