Lines Matching +full:36 +full:c
5 * Copyright (C) 2021 Collabora, Ltd.
21 { 72, 35, 36, 149, 68, 206, 68, 63, 105 }, /*left = d135*/
28 { 63, 36, 126, 146, 123, 158, 60, 90, 96 }, /*left = dc */
37 { 36, 61, 116, 114, 128, 162, 80, 125, 82 }, /*left = tm */
50 { 103, 26, 36, 129, 132, 201, 83, 80, 93 }, /*left = dc */
57 { 77, 19, 29, 112, 142, 228, 55, 66, 36 }, /*left = d207*/
74 { 36, 23, 27, 165, 149, 166, 54, 64, 118 }, /*left = h */
75 { 53, 21, 36, 131, 63, 163, 60, 109, 81 }, /*left = d45 */
78 { 36, 20, 26, 136, 62, 164, 33, 77, 154 }, /*left = d153*/
97 { 68, 36, 17, 106, 102, 206, 59, 74, 74 }, /*left = d45 */
114 { 36, 38, 48, 92, 122, 165, 88, 137, 91 }, /*left = tm */
119 { 58, 47, 36, 124, 137, 193, 80, 82, 78 }, /*left = d45 */
122 { 40, 36, 28, 143, 143, 202, 40, 55, 137 }, /*left = d153*/
159 { 113, 9, 36, 155, 111, 157, 32, 44, 161 }, /* y = d135 */
279 { 28, 36, 114 },
324 { 1, 36, 75 },
661 { 1, 36, 52 },
668 { 1, 36, 60 },
736 { 1, 36, 62 },
744 { 1, 36, 62 },
854 { 36, 41, 235 },
855 { 29, 36, 193 },
871 { 36, 139, 200 },
882 { 1, 36, 61 },
1020 { 36, 255 },
1120 DIVS_INV(30, 31, 32, 33, 34, 35, 36, 37, 38, 39), in fastdiv()
1524 * merge_prob(p[1], c[0], c[1] + c[2])
1525 * merge_prob(p[2], c[1], c[2])
1531 * merge_prob(p[0], c[0], c[1])
1533 * Variant C
1536 * merge_prob(p[0], c[2], c[1] + c[0] + c[3])
1537 * merge_prob(p[1], c[0], c[1] + c[3])
1538 * merge_prob(p[2], c[1], c[3])
1543 * merge_prob(p[0], c[0], c[1] + ... + c[9])
1544 * merge_prob(p[1], c[9], c[1] + ... + c[8])
1545 * merge_prob(p[2], c[1], c[2] + ... + c[8])
1546 * merge_prob(p[3], c[2] + c[4] + c[5], c[3] + c[8] + c[6] + c[7])
1547 * merge_prob(p[4], c[2], c[4] + c[5])
1548 * merge_prob(p[5], c[4], c[5])
1549 * merge_prob(p[6], c[3], c[8] + c[6] + c[7])
1550 * merge_prob(p[7], c[8], c[6] + c[7])
1551 * merge_prob(p[8], c[6], c[7])
1559 * merge_prob(p[0], c[0], c[1] + c[2] + c[3])
1560 * merge_prob(p[1], c[1], c[2] + c[3])
1561 * merge_prob(p[2], c[2], c[3])
1567 * merge_prob(p[0], c[0], c[1] + c[2])
1568 * merge_prob(p[1], c[1], c[2])
1573 * merge_prob(p[0], c[0], c[1] + ... + c[10])
1574 * merge_prob(p[1], c[1], c[2] + ... + c[10])
1575 * merge_prob(p[2], c[2] + c[3], c[4] + ... + c[10])
1576 * merge_prob(p[3], c[2], c[3])
1577 * merge_prob(p[4], c[4] + c[5], c[6] + ... + c[10])
1578 * merge_prob(p[5], c[4], c[5])
1579 * merge_prob(p[6], c[6], c[7] + ... + c[10])
1580 * merge_prob(p[7], c[7] + c[8], c[9] + c[10])
1581 * merge_prob(p[8], c[7], c[8])
1582 * merge_prob(p[9], c[9], [10])
1585 static inline void merge_probs_variant_a(u8 *p, const u32 *c, u16 count_sat, u32 update_factor) in merge_probs_variant_a() argument
1587 p[1] = merge_prob(p[1], c[0], c[1] + c[2], count_sat, update_factor); in merge_probs_variant_a()
1588 p[2] = merge_prob(p[2], c[1], c[2], count_sat, update_factor); in merge_probs_variant_a()
1591 static inline void merge_probs_variant_b(u8 *p, const u32 *c, u16 count_sat, u32 update_factor) in merge_probs_variant_b() argument
1593 p[0] = merge_prob(p[0], c[0], c[1], count_sat, update_factor); in merge_probs_variant_b()
1596 static inline void merge_probs_variant_c(u8 *p, const u32 *c) in merge_probs_variant_c() argument
1598 p[0] = noncoef_merge_prob(p[0], c[2], c[1] + c[0] + c[3]); in merge_probs_variant_c()
1599 p[1] = noncoef_merge_prob(p[1], c[0], c[1] + c[3]); in merge_probs_variant_c()
1600 p[2] = noncoef_merge_prob(p[2], c[1], c[3]); in merge_probs_variant_c()
1603 static void merge_probs_variant_d(u8 *p, const u32 *c) in merge_probs_variant_d() argument
1607 sum = c[1] + c[2] + c[3] + c[4] + c[5] + c[6] + c[7] + c[8] + c[9]; in merge_probs_variant_d()
1609 p[0] = noncoef_merge_prob(p[0], c[0], sum); in merge_probs_variant_d()
1610 sum -= c[9]; in merge_probs_variant_d()
1611 p[1] = noncoef_merge_prob(p[1], c[9], sum); in merge_probs_variant_d()
1612 sum -= c[1]; in merge_probs_variant_d()
1613 p[2] = noncoef_merge_prob(p[2], c[1], sum); in merge_probs_variant_d()
1614 s2 = c[2] + c[4] + c[5]; in merge_probs_variant_d()
1617 s2 -= c[2]; in merge_probs_variant_d()
1618 p[4] = noncoef_merge_prob(p[4], c[2], s2); in merge_probs_variant_d()
1619 p[5] = noncoef_merge_prob(p[5], c[4], c[5]); in merge_probs_variant_d()
1620 sum -= c[3]; in merge_probs_variant_d()
1621 p[6] = noncoef_merge_prob(p[6], c[3], sum); in merge_probs_variant_d()
1622 sum -= c[8]; in merge_probs_variant_d()
1623 p[7] = noncoef_merge_prob(p[7], c[8], sum); in merge_probs_variant_d()
1624 p[8] = noncoef_merge_prob(p[8], c[6], c[7]); in merge_probs_variant_d()
1627 static inline void merge_probs_variant_e(u8 *p, const u32 *c) in merge_probs_variant_e() argument
1629 p[0] = noncoef_merge_prob(p[0], c[0], c[1] + c[2] + c[3]); in merge_probs_variant_e()
1630 p[1] = noncoef_merge_prob(p[1], c[1], c[2] + c[3]); in merge_probs_variant_e()
1631 p[2] = noncoef_merge_prob(p[2], c[2], c[3]); in merge_probs_variant_e()
1634 static inline void merge_probs_variant_f(u8 *p, const u32 *c) in merge_probs_variant_f() argument
1636 p[0] = noncoef_merge_prob(p[0], c[0], c[1] + c[2]); in merge_probs_variant_f()
1637 p[1] = noncoef_merge_prob(p[1], c[1], c[2]); in merge_probs_variant_f()
1640 static void merge_probs_variant_g(u8 *p, const u32 *c) in merge_probs_variant_g() argument
1644 sum = c[1] + c[2] + c[3] + c[4] + c[5] + c[6] + c[7] + c[8] + c[9] + c[10]; in merge_probs_variant_g()
1645 p[0] = noncoef_merge_prob(p[0], c[0], sum); in merge_probs_variant_g()
1646 sum -= c[1]; in merge_probs_variant_g()
1647 p[1] = noncoef_merge_prob(p[1], c[1], sum); in merge_probs_variant_g()
1648 sum -= c[2] + c[3]; in merge_probs_variant_g()
1649 p[2] = noncoef_merge_prob(p[2], c[2] + c[3], sum); in merge_probs_variant_g()
1650 p[3] = noncoef_merge_prob(p[3], c[2], c[3]); in merge_probs_variant_g()
1651 sum -= c[4] + c[5]; in merge_probs_variant_g()
1652 p[4] = noncoef_merge_prob(p[4], c[4] + c[5], sum); in merge_probs_variant_g()
1653 p[5] = noncoef_merge_prob(p[5], c[4], c[5]); in merge_probs_variant_g()
1654 sum -= c[6]; in merge_probs_variant_g()
1655 p[6] = noncoef_merge_prob(p[6], c[6], sum); in merge_probs_variant_g()
1656 p[7] = noncoef_merge_prob(p[7], c[7] + c[8], c[9] + c[10]); in merge_probs_variant_g()
1657 p[8] = noncoef_merge_prob(p[8], c[7], c[8]); in merge_probs_variant_g()
1658 p[9] = noncoef_merge_prob(p[9], c[9], c[10]); in merge_probs_variant_g()
1662 static inline void adapt_probs_variant_a_coef(u8 *p, const u32 *c, u32 update_factor) in adapt_probs_variant_a_coef() argument
1664 merge_probs_variant_a(p, c, 24, update_factor); in adapt_probs_variant_a_coef()
1667 static inline void adapt_probs_variant_b_coef(u8 *p, const u32 *c, u32 update_factor) in adapt_probs_variant_b_coef() argument
1669 merge_probs_variant_b(p, c, 24, update_factor); in adapt_probs_variant_b_coef()
1722 static inline void adapt_probs_variant_b(u8 *p, const u32 *c) in adapt_probs_variant_b() argument
1724 merge_probs_variant_b(p, c, 20, 128); in adapt_probs_variant_b()
1727 static inline void adapt_probs_variant_c(u8 *p, const u32 *c) in adapt_probs_variant_c() argument
1729 merge_probs_variant_c(p, c); in adapt_probs_variant_c()
1732 static inline void adapt_probs_variant_d(u8 *p, const u32 *c) in adapt_probs_variant_d() argument
1734 merge_probs_variant_d(p, c); in adapt_probs_variant_d()
1737 static inline void adapt_probs_variant_e(u8 *p, const u32 *c) in adapt_probs_variant_e() argument
1739 merge_probs_variant_e(p, c); in adapt_probs_variant_e()
1742 static inline void adapt_probs_variant_f(u8 *p, const u32 *c) in adapt_probs_variant_f() argument
1744 merge_probs_variant_f(p, c); in adapt_probs_variant_f()
1747 static inline void adapt_probs_variant_g(u8 *p, const u32 *c) in adapt_probs_variant_g() argument
1749 merge_probs_variant_g(p, c); in adapt_probs_variant_g()