Home | History | Annotate | Download | only in minizip

Lines Matching defs:copy_this

236         uInt copy_this;
250 copy_this = (uInt)ldi->avail_in_this_block;
252 copy_this = (uInt)len;
256 for (i=0;i<copy_this;i++)
259 ldi->filled_in_this_block += copy_this;
260 ldi->avail_in_this_block -= copy_this;
261 from_copy += copy_this ;
262 len -= copy_this;
1441 uInt copy_this,i;
1443 copy_this = zi->ci.stream.avail_in;
1445 copy_this = zi->ci.stream.avail_out;
1447 for (i = 0; i < copy_this; i++)
1451 zi->ci.stream.avail_in -= copy_this;
1452 zi->ci.stream.avail_out-= copy_this;
1453 zi->ci.stream.next_in+= copy_this;
1454 zi->ci.stream.next_out+= copy_this;
1455 zi->ci.stream.total_in+= copy_this;
1456 zi->ci.stream.total_out+= copy_this;
1457 zi->ci.pos_in_buffered_data += copy_this;