Home | History | Annotate | Download | only in common

Lines Matching full:dstsize

132                        uint32_t dstSize) const {
133 return extract(start, length, target, dstSize, 0);
143 uint32_t dstSize,
147 if(/*dstSize < 0 || */(dstSize > 0 && target == 0)) {
154 // We need to cast dstSize to int32_t for all subsequent code.
156 // Also, dstSize==0xffffffff means "unlimited" but if we use target+dstSize
160 if(dstSize < 0x7fffffff) {
162 capacity = (int32_t)dstSize;