Home | History | Annotate | Download | only in dec

Lines Matching refs:input_length

20   size_t input_length;
57 handle->input_length = 0;
102 * @param input_length number of bytes provided in input or direct input;
107 JNIEnv* env, jobject /*jobj*/, jlongArray ctx, jint input_length) {
114 if (input_length != 0) {
116 if (handle->input_offset < handle->input_length) {
120 handle->input_length = input_length;
125 size_t in_size = handle->input_length - handle->input_offset;
129 handle->input_offset = handle->input_length - in_size;
133 context[1] = (handle->input_offset == handle->input_length) ? 1 : 0;
170 context[1] = (handle->input_offset == handle->input_length) ? 1 : 0;
173 context[1] = (handle->input_offset == handle->input_length) ? 2 : 4;