Home
last modified time | relevance | path

Searched refs:UPPER_BIT_RUBIN (Results 1 – 2 of 2) sorted by relevance

/linux-2.4.37.9/fs/jffs2/
Dcompr_rubin.c51 rs->p = (long) (2 * UPPER_BIT_RUBIN); in init_rubin()
65 while ((rs->q >= UPPER_BIT_RUBIN) || ((rs->p + rs->q) <= UPPER_BIT_RUBIN)) { in encode()
68 ret = pushbit(&rs->pp, (rs->q & UPPER_BIT_RUBIN) ? 1 : 0, 0); in encode()
100 pushbit(&rs->pp, (UPPER_BIT_RUBIN & rs->q) ? 1 : 0, 1); in end_rubin()
134 } while ((q >= UPPER_BIT_RUBIN) || ((p + q) <= UPPER_BIT_RUBIN)); in __do_decode()
160 if (q >= UPPER_BIT_RUBIN || ((p + q) <= UPPER_BIT_RUBIN)) in decode()
Dcompr_rubin.h9 #define UPPER_BIT_RUBIN (((long) 1)<<(RUBIN_REG_SIZE-1)) macro