Home | History | Annotate | Download | only in minizip

Lines Matching full:copy_this

245         uInt copy_this;
259 copy_this = (uInt)ldi->avail_in_this_block;
261 copy_this = (uInt)len;
265 for (i=0;i<copy_this;i++)
268 ldi->filled_in_this_block += copy_this;
269 ldi->avail_in_this_block -= copy_this;
270 from_copy += copy_this ;
271 len -= copy_this;
1483 uInt copy_this,i;
1485 copy_this = zi->ci.stream.avail_in;
1487 copy_this = zi->ci.stream.avail_out;
1489 for (i = 0; i < copy_this; i++)
1493 copy_this;
1494 zi->ci.stream.avail_out-= copy_this;
1495 zi->ci.stream.next_in+= copy_this;
1496 zi->ci.stream.next_out+= copy_this;
1497 zi->ci.stream.total_in+= copy_this;
1498 zi->ci.stream.total_out+= copy_this;
1499 zi->ci.pos_in_buffered_data += copy_this;