Home | History | Annotate | Download | only in C

Lines Matching refs:Byte

6 void Delta_Init(Byte *state)

13 static void MyMemCpy(Byte *dest, const Byte *src, unsigned size)
20 void Delta_Encode(Byte *state, unsigned delta, Byte *data, SizeT size)
22 Byte buf[DELTA_STATE_SIZE];
31 Byte b = data[i];
32 data[i] = (Byte)(b - buf[j]);
43 void Delta_Decode(Byte *state, unsigned delta, Byte *data, SizeT size)
45 Byte buf[DELTA_STATE_SIZE];
54 buf[j] = data[i] = (Byte)(buf[j] + data[i]);