Home | History | Annotate | Download | only in common

Lines Matching refs:targetCapacity

36     int32_t targetCapacity, length;
44 targetCapacity=(int32_t)(pArgs->targetLimit-pArgs->target);
51 * for the minimum of the sourceLength and targetCapacity
54 if(length<=targetCapacity) {
55 targetCapacity=length;
59 length=targetCapacity;
62 if(targetCapacity>=8) {
66 loops=count=targetCapacity>>3;
67 length=targetCapacity&=0x7;
97 while(targetCapacity>0) {
99 --targetCapacity;
138 int32_t targetCapacity, length;
151 targetCapacity=(int32_t)(pArgs->targetLimit-pArgs->target);
168 * for the minimum of the sourceLength and targetCapacity
171 if(length<targetCapacity) {
172 targetCapacity=length;
176 if(cp!=0 && targetCapacity>0) {
182 if(targetCapacity>=16) {
186 loops=count=targetCapacity>>4;
230 targetCapacity-=16*count;
259 while(targetCapacity>0 && (c=*source++)<=max) {
262 --targetCapacity;
326 int32_t targetCapacity;
336 targetCapacity=(int32_t)(pFromUArgs->targetLimit-pFromUArgs->target);
341 if(targetCapacity==0) {
347 --targetCapacity;
372 if(targetCapacity>0) {
377 --targetCapacity;
384 --targetCapacity;
472 int32_t targetCapacity, length;
483 targetCapacity=(int32_t)(pArgs->targetLimit-pArgs->target);
491 * for the minimum of the sourceLength and targetCapacity
494 if(length<targetCapacity) {
495 targetCapacity=length;
498 if(targetCapacity>=8) {
503 loops=count=targetCapacity>>3;
523 targetCapacity-=count*8;
544 while(targetCapacity>0 && (c=*source++)<=0x7f) {
546 --targetCapacity;
609 int32_t targetCapacity, length;
623 targetCapacity=(int32_t)(pFromUArgs->targetLimit-pFromUArgs->target);
627 * for the minimum of the sourceLength and targetCapacity
630 if(length<targetCapacity) {
631 targetCapacity=length;
635 if(targetCapacity>=16) {
639 loops=count=targetCapacity>>4;
667 targetCapacity-=16*count;
672 while(targetCapacity>0 && (c=*source)<=0x7f) {
675 --targetCapacity;