Home
last modified time | relevance | path

Searched refs:in_end (Results 1 - 14 of 14) sorted by relevance

/third_party/ffmpeg/libavutil/
H A Dlzo.c38 const uint8_t *in, *in_end; member
49 if (c->in < c->in_end) in get_byte()
92 if (cnt > c->in_end - src) { in copy()
93 cnt = FFMAX(c->in_end - src, 0); in copy()
150 c.in_end = (const uint8_t *)in + *inlen; in av_lzo1x_decode()
161 if (c.in > c.in_end) in av_lzo1x_decode()
202 *inlen = c.in_end - c.in; in av_lzo1x_decode()
203 if (c.in > c.in_end) in av_lzo1x_decode()
H A Duuid.c88 int av_uuid_parse_range(const char *in_start, const char *in_end, AVUUID uu) in av_uuid_parse_range() argument
93 if ((in_end - in_start) != 36) in av_uuid_parse_range()
H A Duuid.h94 * @param[in] in_end Pointer to the character after the last character of the
96 * accessed. It is an error if `in_end - in_start != 36`.
100 int av_uuid_parse_range(const char *in_start, const char *in_end, AVUUID uu);
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/tls/
H A Dtlsv1_client.c145 u8 *msg = NULL, *in_msg = NULL, *in_pos, *in_end, alert, ct; in tlsv1_client_handshake() local
214 in_end = in_msg + in_msg_len; in tlsv1_client_handshake()
218 while (in_pos < in_end) { in tlsv1_client_handshake()
219 in_msg_len = in_end - in_pos; in tlsv1_client_handshake()
310 const u8 *in_end, *pos; in tlsv1_client_decrypt() local
332 in_end = in_data + in_len; in tlsv1_client_decrypt()
334 while (pos < in_end) { in tlsv1_client_decrypt()
336 if (wpabuf_resize(&buf, in_end - pos) < 0) { in tlsv1_client_decrypt()
342 used = tlsv1_record_receive(&conn->rl, pos, in_end - pos, in tlsv1_client_decrypt()
352 partial = wpabuf_alloc_copy(pos, in_end in tlsv1_client_decrypt()
[all...]
H A Dtlsv1_server.c137 u8 *msg = NULL, *in_msg, *in_pos, *in_end, alert, ct; in tlsv1_server_handshake() local
174 in_end = in_msg + in_msg_len; in tlsv1_server_handshake()
178 while (in_pos < in_end) { in tlsv1_server_handshake()
179 in_msg_len = in_end - in_pos; in tlsv1_server_handshake()
264 const u8 *in_end, *pos; in tlsv1_server_decrypt() local
270 in_end = in_data + in_len; in tlsv1_server_decrypt()
274 while (pos < in_end) { in tlsv1_server_decrypt()
277 used = tlsv1_record_receive(&conn->rl, pos, in_end - pos, in tlsv1_server_decrypt()
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/tls/
H A Dtlsv1_client.c169 u8 *msg = NULL, *in_msg = NULL, *in_pos, *in_end, alert, ct; in tlsv1_client_handshake() local
238 in_end = in_msg + in_msg_len; in tlsv1_client_handshake()
242 while (in_pos < in_end) { in tlsv1_client_handshake()
243 in_msg_len = in_end - in_pos; in tlsv1_client_handshake()
334 const u8 *in_end, *pos; in tlsv1_client_decrypt() local
356 in_end = in_data + in_len; in tlsv1_client_decrypt()
358 while (pos < in_end) { in tlsv1_client_decrypt()
360 if (wpabuf_resize(&buf, in_end - pos) < 0) { in tlsv1_client_decrypt()
366 used = tlsv1_record_receive(&conn->rl, pos, in_end - pos, in tlsv1_client_decrypt()
376 partial = wpabuf_alloc_copy(pos, in_end in tlsv1_client_decrypt()
[all...]
H A Dtlsv1_server.c137 u8 *msg = NULL, *in_msg, *in_pos, *in_end, alert, ct; in tlsv1_server_handshake() local
174 in_end = in_msg + in_msg_len; in tlsv1_server_handshake()
178 while (in_pos < in_end) { in tlsv1_server_handshake()
179 in_msg_len = in_end - in_pos; in tlsv1_server_handshake()
264 const u8 *in_end, *pos; in tlsv1_server_decrypt() local
270 in_end = in_data + in_len; in tlsv1_server_decrypt()
274 while (pos < in_end) { in tlsv1_server_decrypt()
277 used = tlsv1_record_receive(&conn->rl, pos, in_end - pos, in tlsv1_server_decrypt()
/third_party/ffmpeg/libavformat/
H A Durl.c165 const char *in, const char *in_end) in append_path()
170 if (in < in_end && *in == '/') in append_path()
172 while (in < in_end) { in append_path()
173 d = find_delim("/", in, in_end); in append_path()
174 next = d + (d < in_end && *d == '/'); in append_path()
164 append_path(char *root, char *out_end, char **rout, const char *in, const char *in_end) append_path() argument
/third_party/ffmpeg/libavcodec/
H A Drl2.c69 const uint8_t *in_end = in + size; in rl2_rle_decode() local
85 while (in < in_end) { in rl2_rle_decode()
89 if (in >= in_end) in rl2_rle_decode()
/third_party/curl/src/
H A Dtool_writeout_json.c45 const unsigned char *in_end = &i[len]; in jsonquoted() local
48 for(; (i < in_end) && !result; i++) { in jsonquoted()
/third_party/lwip/src/core/
H A Dnetif.c1360 struct pbuf *in, *in_end; local
1365 in = in_end = netif->loop_first;
1366 while (in_end->len != in_end->tot_len) {
1367 LWIP_ASSERT("bogus pbuf: len != tot_len but next == NULL!", in_end->next != NULL);
1368 in_end = in_end->next;
1380 /* 'in_end' now points to the last pbuf from 'in' */
1381 if (in_end == netif->loop_last) {
1386 netif->loop_first = in_end
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/
H A DSmallVector.h387 void append(in_iter in_start, in_iter in_end) { in append() argument
388 size_type NumInputs = std::distance(in_start, in_end); in append()
392 this->uninitialized_copy(in_start, in_end, this->end()); in append()
424 void assign(in_iter in_start, in_iter in_end) { in assign() argument
426 append(in_start, in_end); in assign()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/ADT/
H A DSmallVector.h392 void append(in_iter in_start, in_iter in_end) { in append() argument
393 size_type NumInputs = std::distance(in_start, in_end); in append()
399 this->uninitialized_copy(in_start, in_end, this->end()); in append()
/third_party/astc-encoder/Source/
H A Dtinyexr.h8909 const char *in_end, unsigned short *&out, in getCode()
8915 if ((in + 1) >= in_end) { in getCode()
8908 getCode(int po, int rlc, long long &c, int &lc, const char *&in, const char *in_end, unsigned short *&out, const unsigned short *ob, const unsigned short *oe) getCode() argument

Completed in 29 milliseconds