Searched refs:this_off (Results 1 – 2 of 2) sorted by relevance
/libcore/ojluni/src/main/native/ |
D | Inflater.c | 122 jint this_off = (*env)->GetIntField(env, this, offID); in Inflater_inflateBytes() local 142 strm->next_in = (Bytef *) (in_buf + this_off); in Inflater_inflateBytes() 155 this_off += this_len - strm->avail_in; in Inflater_inflateBytes() 156 (*env)->SetIntField(env, this, offID, this_off); in Inflater_inflateBytes() 162 this_off += this_len - strm->avail_in; in Inflater_inflateBytes() 163 (*env)->SetIntField(env, this, offID, this_off); in Inflater_inflateBytes()
|
D | Deflater.c | 131 jint this_off = (*env)->GetIntField(env, this, offID); in Deflater_deflateBytes() local 154 strm->next_in = (Bytef *) (in_buf + this_off); in Deflater_deflateBytes() 165 this_off += this_len - strm->avail_in; in Deflater_deflateBytes() 166 (*env)->SetIntField(env, this, offID, this_off); in Deflater_deflateBytes() 193 strm->next_in = (Bytef *) (in_buf + this_off); in Deflater_deflateBytes() 206 this_off += this_len - strm->avail_in; in Deflater_deflateBytes() 207 (*env)->SetIntField(env, this, offID, this_off); in Deflater_deflateBytes()
|