Home
last modified time | relevance | path

Searched refs:end_in (Results 1 – 3 of 3) sorted by relevance

/external/libwebsockets/lib/misc/
Dbase64-decode.c114 const char *orig_in = in, *end_in = in + *in_len; in lws_b64_decode_stateful() local
117 while (in < end_in && *in && out + 4 < end_out) { in lws_b64_decode_stateful()
119 for (; s->i < 4 && in < end_in && *in; s->i++) { in lws_b64_decode_stateful()
124 while (in < end_in && *in && !v) { in lws_b64_decode_stateful()
154 if ((in >= end_in || !*in) && s->c == '=') in lws_b64_decode_stateful()
/external/vulkan-validation-layers/layers/
Ddescriptor_sets.h46 IndexRange(uint32_t start_in, uint32_t end_in) : start(start_in), end(end_in) {} in IndexRange()
/external/tensorflow/tensorflow/core/framework/
Dshape_inference.cc581 int64 end_in = end; in Subshape() local
612 return errors::InvalidArgument("Subshape end out of bounds: ", end_in, in Subshape()
620 end, " (computed from start ", start_in, " and end ", end_in, in Subshape()
628 end_in, " over shape with rank ", rank, " and stride", stride, ")"); in Subshape()