Home
last modified time | relevance | path

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

/libcore/ojluni/src/main/native/
DDeflater.c134 jbyte *out_buf; in Deflater_deflateBytes() local
146 out_buf = (*env)->GetPrimitiveArrayCritical(env, b, 0); in Deflater_deflateBytes()
147 if (out_buf == NULL) { in Deflater_deflateBytes()
155 strm->next_out = (Bytef *) (out_buf + off); in Deflater_deflateBytes()
159 (*env)->ReleasePrimitiveArrayCritical(env, b, out_buf, 0); in Deflater_deflateBytes()
184 out_buf = (*env)->GetPrimitiveArrayCritical(env, b, 0); in Deflater_deflateBytes()
185 if (out_buf == NULL) { in Deflater_deflateBytes()
194 strm->next_out = (Bytef *) (out_buf + off); in Deflater_deflateBytes()
198 (*env)->ReleasePrimitiveArrayCritical(env, b, out_buf, 0); in Deflater_deflateBytes()
DInflater.c126 jbyte *out_buf; in Inflater_inflateBytes() local
135 out_buf = (*env)->GetPrimitiveArrayCritical(env, b, 0); in Inflater_inflateBytes()
136 if (out_buf == NULL) { in Inflater_inflateBytes()
143 strm->next_out = (Bytef *) (out_buf + off); in Inflater_inflateBytes()
147 (*env)->ReleasePrimitiveArrayCritical(env, b, out_buf, 0); in Inflater_inflateBytes()