Lines Matching refs:period_exp
1408 u32 bit_err, period_exp;
1427 period_exp = data[0] & 0x1f;
1429 if ((period_exp <= 11) && (bit_err > (1 << period_exp) * 204 * 8)) {
1431 "%s(): period_exp(%u) or bit_err(%u) not in range. no valid BER data\n",
1432 __func__, period_exp, bit_err);
1437 "%s(): period_exp(%u) or bit_err(%u) count=%d\n",
1438 __func__, period_exp, bit_err,
1439 ((1 << period_exp) * 204 * 8));
1442 *bit_count = ((1 << period_exp) * 204 * 8);
1573 u32 period_exp, n_ldpc;
1592 period_exp = data[0] & 0x0f;
1596 if (*bit_error > ((1U << period_exp) * n_ldpc)) {
1607 if (period_exp >= 4) {
1608 *bit_count = (1U << (period_exp - 4)) * (n_ldpc / 200);
1611 *bit_count = (1U << period_exp) * (n_ldpc / 200);