Home | History | Annotate | Download | only in inflate86

Lines Matching defs:last

42  * have less latency than MMX ops.  Added code to buffer the last 11 bytes of
51 * structure offsets which are hard coded in this file. This was last tested
181 #define last 20 /* unsigned char* */
244 * last = in + strm->avail_in - 11;
255 movl %edx, last(%esp)
320 movl last(%esp), %ecx
322 ja .L_align_long /* if in < last */
334 movl in_r, last(%esp) /* last = in, do just one iteration */
426 /* while (in < last && out < end)
431 cmpl in_r, last(%esp)
856 * } while (in < last && out < end);
904 /* while (in < last && out < end)
909 cmpl in_r, last(%esp)
913 psrlq used_mm, hold_mm /* hold_mm >>= last bit length */
953 psrlq used_mm, hold_mm /* hold_mm >>= last bit length */
961 psrlq used_mm, hold_mm /* hold_mm >>= last bit length */
994 psrlq used_mm, hold_mm /* hold_mm >>= last bit length */
1055 psrlq used_mm, hold_mm /* hold_mm >>= last bit length */
1068 psrlq used_mm, hold_mm /* hold_mm >>= last bit length */
1276 cmpl %ebx, last(%esp)
1277 jne .L_buf_not_used /* if buf != last */
1281 movl %ebx, last(%esp) /* last = strm->next_in */
1285 addl %ebx, last(%esp) /* last = &strm->next_in[ avail_in - 11 ] */
1303 psrlq used_mm, hold_mm /* hold_mm >>= last bit length */
1317 /* strm->avail_in = in < last ? 11 + (last - in) : 11 - (in - last) */
1318 movl last(%esp), last_r
1320 jbe .L_last_is_smaller /* if (in >= last) */
1322 subl in_r, last_r /* last -= in */
1323 addl $11, last_r /* last += 11 */
1327 subl last_r, in_r /* in -= last */