Lines Matching defs:ce_bits
611 int ce_bits;
941 int bits_to_read = MIN2(bits_left, 8 + ce_bits * 5);
942 /* If ce_trits then ce_bits <= 6, so bits_to_read <= 38 and we have to use uint64_t */
944 unpack_trit_block(ce_bits, raw, &colour_endpoints_quant[i]);
953 offset += 8 + ce_bits * 5;
954 bits_left -= 8 + ce_bits * 5;
960 int bits_to_read = MIN2(bits_left, 7 + ce_bits * 3);
961 /* If ce_quints then ce_bits <= 5, so bits_to_read <= 22 and we can use uint32_t */
963 unpack_quint_block(ce_bits, raw, &colour_endpoints_quant[i]);
970 offset += 7 + ce_bits * 3;
971 bits_left -= 7 + ce_bits * 3;
974 assert((colour_endpoint_bits % ce_bits) == 0);
977 colour_endpoints_quant[i] = in.get_bits(offset, ce_bits);
980 in.printf_bits(offset, ce_bits, "bits [%d]", colour_endpoints_quant[i]);
982 offset += ce_bits;
1336 switch (ce_bits) {
1382 switch (ce_bits) {
1420 switch (ce_bits) {
1495 colour_endpoint_bits, num_cem_values, ce_trits, ce_quints, ce_bits);
1773 colour_endpoint_bits = ce_max = ce_trits = ce_quints = ce_bits = 0;
1790 ce_bits = cem_ranges[i].b;