Lines Matching defs:out
37 Decode literal, length, and distance codes and write out the resulting
54 LEN -- ran out of enough output space or enough available input
83 /* 32 16 */ unsigned char FAR *out; /* edi rdi local strm->next_out */
85 /* 48 24 */ unsigned char FAR *end; /* r10 while out < end */
112 ar.out = strm->next_out;
113 ar.beg = ar.out - (start - strm->avail_out);
114 ar.end = ar.out + (strm->avail_out - PAD_AVAIL_OUT);
141 " movq 32(%%rsp), %%rdi\n" /* rdi = out */
282 " subq 40(%%rsp), %%rax\n" /* nbytes = out - beg */
289 " subq %%r15, %%rsi\n" /* from = out - dist */
311 " cmpq %%rdi, 40(%%rsp)\n" /* if out == beg, outside window */
379 " subq %%r15, %%rsi\n" /* from = &out[ -dist ] */
408 " subq %%r15, %%rsi\n" /* from = out - dist */
424 " subq %%r15, %%rsi\n" /* from = out - dist */
457 /* put in, out, bits, and hold back into ar and pop esp */
459 " movq %%rdi, 32(%%rsp)\n" /* out */
477 " movl 16(%%esp), %%edi\n" /* edi = out */
487 " cmpl %%edi, 24(%%esp)\n" /* out < end */
607 " subl 20(%%esp), %%eax\n" /* nbytes = out - beg */
614 " subl %%ebp, %%esi\n" /* from = out - dist */
639 " je .L_check_window\n" /* out == beg, if outside window */
708 " subl %%ebp, %%esi\n" /* from = out - dist */
736 " subl %%ebp, %%esi\n" /* from = out - dist */
751 " subl %%ebp, %%esi\n" /* from = out - dist */
786 /* put in, out, bits, and hold back into ar and pop esp */
788 " movl %%edi, 16(%%esp)\n" /* save out */
804 mov edi, [esp+16] /* edi = out */
934 sub eax, [esp+20] /* nbytes = out - beg */
941 sub esi, ebp /* from = out - dist */
966 je L_check_window /* out == beg, if outside window */
974 mov [edi], al /* memset out with from[-1] */
1035 sub esi, ebp /* from = out - dist */
1063 sub esi, ebp /* from = out - dist */
1078 sub esi, ebp /* from = out - dist */
1113 /* put in, out, bits, and hold back into ar and pop esp */
1115 mov [esp+16], edi /* save out */
1146 strm->next_out = ar.out;
1150 strm->avail_out = (unsigned)(ar.out < ar.end ?
1151 PAD_AVAIL_OUT + (ar.end - ar.out) :
1152 PAD_AVAIL_OUT - (ar.out - ar.end));