Home | History | Annotate | Download | only in liblzf

Lines Matching defs:lit

128   int lit;
137 lit = 0; op++; /* start run */
168 if (op - !lit + 3 + 1 >= out_end) /* second the exact but rare test */
171 op [- lit - 1] = lit - 1; /* stop run */
172 op -= !lit; /* undo run if length is zero */
221 lit = 0; op++; /* start run */
262 lit++; *op++ = *ip++;
264 if (expect_false (lit == MAX_LIT))
266 op [- lit - 1] = lit - 1; /* stop run */
267 lit = 0; op++; /* start run */
277 lit++; *op++ = *ip++;
279 if (expect_false (lit == MAX_LIT))
281 op [- lit - 1] = lit - 1; /* stop run */
282 lit = 0; op++; /* start run */
286 op [- lit - 1] = lit - 1; /* end run */
287 op -= !lit; /* undo run if length is zero */