HomeSort by relevance Sort by last modified time
    Searched defs:input_length (Results 1 - 5 of 5) sorted by null

  /external/brotli/java/org/brotli/wrapper/dec/
decoder_jni.cc 20 size_t input_length; member in struct:__anon14422::DecoderHandle
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
    [all...]
  /external/harfbuzz_ng/src/
hb-ot-layout.h 220 unsigned int input_length, member in struct:__anon21150
  /external/pdfium/fxbarcode/pdf417/
BC_PDF417HighLevelEncoder_unittest.cpp 45 size_t input_length = strlen(ptr->input); local
46 input_array.resize(input_length);
47 for (size_t j = 0; j < input_length; ++j) {
  /external/tensorflow/tensorflow/core/ops/
audio_ops.cc 78 DimensionHandle input_length = c->Dim(input, 0); local
82 if (!c->ValueKnown(input_length)) {
85 const int64 input_length_value = c->Value(input_length);
  /external/v8/src/regexp/arm64/
regexp-macro-assembler-arm64.cc 854 Register input_length = w14; local
868 __ Add(input_length, start_offset(), Operand(w10, LSR, 1));
870 __ Add(input_length, start_offset(), w10);
885 __ Add(capture_start, input_length, Operand(capture_start, ASR, 1));
886 __ Add(capture_end, input_length, Operand(capture_end, ASR, 1));
888 __ Add(capture_start, input_length, capture_start);
889 __ Add(capture_end, input_length, capture_end);
    [all...]

Completed in 103 milliseconds