Home
last modified time | relevance | path

Searched refs:output_end (Results 1 – 5 of 5) sorted by relevance

/external/grpc-grpc/src/core/ext/transport/chttp2/transport/
Dbin_decoder.cc109 if (ctx->input_cur > ctx->input_end || ctx->output_cur > ctx->output_end) { in grpc_base64_decode_partial()
115 ctx->output_end >= ctx->output_cur + 3) { in grpc_base64_decode_partial()
129 if (ctx->input_cur[2] == '=' && ctx->output_end >= ctx->output_cur + 1) { in grpc_base64_decode_partial()
133 } else if (ctx->output_end >= ctx->output_cur + 2) { in grpc_base64_decode_partial()
144 if (ctx->output_end >= ctx->output_cur + tail_xtra[input_tail]) { in grpc_base64_decode_partial()
190 ctx.output_end = GRPC_SLICE_END_PTR(output); in grpc_chttp2_base64_decode()
237 ctx.output_end = GRPC_SLICE_END_PTR(output); in grpc_chttp2_base64_decode_with_length()
Dbin_decoder.h32 uint8_t* output_end; member
/external/pcre/dist2/src/
Dpcre2_convert.c371 PCRE2_SPTR output_end; /* output end */ member
389 if (out->output < out->output_end) in convert_glob_write()
406 PCRE2_SPTR output_end = out->output_end; in convert_glob_write_str() local
413 if (output < output_end) in convert_glob_write_str()
820 out.output_end = use_buffer + use_length; in convert_glob()
/external/chromium-trace/catapult/devil/devil/android/sdk/
Dadb_wrapper.py539 output_end = output.rfind('%')
540 if output_end < 0:
542 output_end = len(output)
545 status = int(output[output_end + 1:])
550 output = output[:output_end]
/external/tensorflow/tensorflow/core/kernels/
Dmaxpooling_op.cc977 const int64 output_end = limit * output_size_per_batch; in launch() local
979 output_end - output_start); in launch()
990 CHECK(grad_out_index >= output_start && grad_out_index < output_end) in launch()
992 << output_start << ", " << output_end; in launch()