Lines Matching refs:byte
34 void _DEMODumpSerial(const u8* data, const u32 byte);
80 void _DEMODumpSerial(const u8* data, const u32 byte) in _DEMODumpSerial() argument
91 numLoop = (u32)(byte / maxOneLine); in _DEMODumpSerial()
120 leftByte = byte % maxOneLine; in _DEMODumpSerial()
185 u32 row, col, i, realrow, byte = 0; in _DEMOEncodeTGA() local
230 pbuffer[byte] = (u8)(0x80 + runlength[col] - 1); byte++; in _DEMOEncodeTGA()
233 pbuffer[byte] = buffer[realrow * pitch + col].z; byte++; in _DEMOEncodeTGA()
234 pbuffer[byte] = buffer[realrow * pitch + col].y; byte++; in _DEMOEncodeTGA()
235 pbuffer[byte] = buffer[realrow * pitch + col].x; byte++; in _DEMOEncodeTGA()
236 pbuffer[byte] = buffer[realrow * pitch + col].w; byte++; in _DEMOEncodeTGA()
240 pbuffer[byte] = (u8)(- runlength[col] - 1); byte++; in _DEMOEncodeTGA()
245 pbuffer[byte] = buffer[realrow * pitch + col + i].z; byte++; in _DEMOEncodeTGA()
246 pbuffer[byte] = buffer[realrow * pitch + col + i].y; byte++; in _DEMOEncodeTGA()
247 pbuffer[byte] = buffer[realrow * pitch + col + i].x; byte++; in _DEMOEncodeTGA()
248 pbuffer[byte] = buffer[realrow * pitch + col + i].w; byte++; in _DEMOEncodeTGA()
258 *outByteSize = 18+byte; in _DEMOEncodeTGA()