Lines Matching defs:value
53 c->value ^= 0x8000;
57 c->value = (uint16_t)c->value << 8 | bytestream2_get_byte(c->gbc.gB);
67 static int arith2_get_scaled_value(int value, int n, int range)
71 if (value > split)
72 return split + (value - split >> 1);
74 return value;
106 val = arith2_get_scaled_value(c->value - c->low, n, range) >> scale;
126 val = arith2_get_scaled_value(c->value - c->low, n, range) >> scale;
155 c->value = bytestream2_get_be24(gB);