Lines Matching defs:state
8 void Delta_Init(Byte *state)
12 state[i] = 0;
16 void Delta_Encode(Byte *state, unsigned delta, Byte *data, SizeT size)
26 temp[i] = state[i];
47 state[k] = temp[i++];
59 state[i] = *p++;
89 void Delta_Decode(Byte *state, unsigned delta, Byte *data, SizeT size)
103 *data = (Byte)(*data + state[i++]);
106 for (; delta != i; state++, delta--)
107 *state = state[i];
114 #define I(n) Byte B(n) = state[n];
151 *data = (Byte)(*data + state[i++]);
167 *state++ = *data;