Lines Matching defs:high
42 #define DSD_BYTE_READY(low,high) (!(((low) ^ (high)) & 0xff000000))
449 uint32_t low, high, value;
477 high = 0xffffffff;
490 uint32_t split = low + ((high - low) >> 8) * (*pp >> 16);
493 high = split;
502 if (DSD_BYTE_READY(high, low) && !bytestream2_get_bytes_left(&s->gbyte))
504 while (DSD_BYTE_READY(high, low) && bytestream2_get_bytes_left(&s->gbyte)) {
506 high = (high << 8) | 0xff;
527 split = low + ((high - low) >> 8) * (*pp >> 16);
530 high = split;
539 if (DSD_BYTE_READY(high, low) && !bytestream2_get_bytes_left(&s->gbyte))
541 while (DSD_BYTE_READY(high, low) && bytestream2_get_bytes_left(&s->gbyte)) {
543 high = (high << 8) | 0xff;
594 uint32_t low, high, value;
664 low = 0; high = 0xffffffff;
676 mult = (high - low) / s->summed_probabilities[p0][255];
683 high = 0xffffffff;
684 mult = high / s->summed_probabilities[p0][255];
716 high = low + s->probabilities[p0][code] * mult - 1;
726 while (DSD_BYTE_READY(high, low) && bytestream2_get_bytes_left(&s->gbyte)) {
728 high = (high << 8) | 0xff;