Lines Matching full:byte
8 void Delta_Init(Byte *state)
15 static void MyMemCpy(Byte *dest, const Byte *src, unsigned size)
22 void Delta_Encode(Byte *state, unsigned delta, Byte *data, SizeT size)
24 Byte buf[DELTA_STATE_SIZE];
33 Byte b = data[i];
34 data[i] = (Byte)(b - buf[j]);
45 void Delta_Decode(Byte *state, unsigned delta, Byte *data, SizeT size)
47 Byte buf[DELTA_STATE_SIZE];
56 buf[j] = data[i] = (Byte)(buf[j] + data[i]);