Lines Matching refs:Byte
34 const Byte *buf0, SizeT size0, in Bcj2_Decode()
35 const Byte *buf1, SizeT size1, in Bcj2_Decode()
36 const Byte *buf2, SizeT size2, in Bcj2_Decode()
37 const Byte *buf3, SizeT size3, in Bcj2_Decode()
38 Byte *outBuf, SizeT outSize) in Bcj2_Decode()
43 const Byte *buffer, *bufferLim; in Bcj2_Decode()
45 Byte prevByte = 0; in Bcj2_Decode()
60 Byte b; in Bcj2_Decode()
70 Byte b = buf0[inPos]; in Bcj2_Decode()
99 const Byte *v; in Bcj2_Decode()
119 outBuf[outPos++] = (Byte)dest; in Bcj2_Decode()
122 outBuf[outPos++] = (Byte)(dest >> 8); in Bcj2_Decode()
125 outBuf[outPos++] = (Byte)(dest >> 16); in Bcj2_Decode()
128 outBuf[outPos++] = prevByte = (Byte)(dest >> 24); in Bcj2_Decode()