Lines Matching defs:c

158 static inline u32 Frac28a(u32 a, u32 c)
164 R0 = (a % c) << 4; /* 32-28 == 4 shifts possible at max */
165 Q1 = a / c; /*
172 Q1 = (Q1 << 4) | (R0 / c);
173 R0 = (R0 % c) << 4;
176 if ((R0 >> 3) >= c)
1768 dprintk(1, ": DVB-C Annex %c\n",
2225 /* SCU c.o.c. to 0, enabling full control range */
2460 u32 c = 0;
2526 => IMER = a + b -c
2529 c = 100 * log10 (sqr_err_iq)
2538 c = log10times100(sqr_err_iq);
2540 i_mer = a + b - c;
6393 /* SCU c.o.c. */
6464 struct dtv_frontend_properties *c = &fe->dtv_property_cache;
6496 get_strength(state, &c->strength.stat[0].uvalue);
6497 c->strength.stat[0].scale = FE_SCALE_RELATIVE;
6502 c->cnr.stat[0].svalue = cnr * 100;
6503 c->cnr.stat[0].scale = FE_SCALE_DECIBEL;
6505 c->cnr.stat[0].scale = FE_SCALE_NOT_AVAILABLE;
6509 c->block_error.stat[0].scale = FE_SCALE_NOT_AVAILABLE;
6510 c->block_count.stat[0].scale = FE_SCALE_NOT_AVAILABLE;
6511 c->pre_bit_error.stat[0].scale = FE_SCALE_NOT_AVAILABLE;
6512 c->pre_bit_count.stat[0].scale = FE_SCALE_NOT_AVAILABLE;
6513 c->post_bit_error.stat[0].scale = FE_SCALE_NOT_AVAILABLE;
6514 c->post_bit_count.stat[0].scale = FE_SCALE_NOT_AVAILABLE;
6566 c->block_error.stat[0].scale = FE_SCALE_COUNTER;
6567 c->block_error.stat[0].uvalue += pkt_error_count;
6568 c->block_count.stat[0].scale = FE_SCALE_COUNTER;
6569 c->block_count.stat[0].uvalue += pkt_count;
6571 c->pre_bit_error.stat[0].scale = FE_SCALE_COUNTER;
6572 c->pre_bit_error.stat[0].uvalue += pre_bit_err_count;
6573 c->pre_bit_count.stat[0].scale = FE_SCALE_COUNTER;
6574 c->pre_bit_count.stat[0].uvalue += pre_bit_count;
6576 c->post_bit_error.stat[0].scale = FE_SCALE_COUNTER;
6577 c->post_bit_error.stat[0].uvalue += post_bit_err_count;
6578 c->post_bit_count.stat[0].scale = FE_SCALE_COUNTER;
6579 c->post_bit_count.stat[0].uvalue += post_bit_count;
6606 struct dtv_frontend_properties *c = &fe->dtv_property_cache;
6615 *strength = c->strength.stat[0].uvalue;