Home
last modified time | relevance | path

Searched refs:this_len (Results 1 – 2 of 2) sorted by relevance

/libcore/ojluni/src/main/native/
DDeflater.c132 jint this_len = (*env)->GetIntField(env, this, lenID); in Deflater_deflateBytes() local
142 if (this_len != 0) in Deflater_deflateBytes()
156 strm->avail_in = this_len; in Deflater_deflateBytes()
165 this_off += this_len - strm->avail_in; in Deflater_deflateBytes()
180 if (this_len != 0) in Deflater_deflateBytes()
195 strm->avail_in = this_len; in Deflater_deflateBytes()
206 this_off += this_len - strm->avail_in; in Deflater_deflateBytes()
DInflater.c123 jint this_len = (*env)->GetIntField(env, this, lenID); in Inflater_inflateBytes() local
131 if (this_len != 0) in Inflater_inflateBytes()
144 strm->avail_in = this_len; in Inflater_inflateBytes()
155 this_off += this_len - strm->avail_in; in Inflater_inflateBytes()
162 this_off += this_len - strm->avail_in; in Inflater_inflateBytes()