Home
last modified time | relevance | path

Searched refs:out_end (Results 1 – 9 of 9) sorted by relevance

/third_party/ffmpeg/libavcodec/
Dsgidec.c52 uint8_t *out_end = out_buf + len; in expand_rle_row8() local
54 while (out_buf < out_end) { in expand_rle_row8()
63 if (out_end - out_buf <= pixelstride * (count - 1)) { in expand_rle_row8()
91 uint16_t *out_end = out_buf + len; in expand_rle_row16() local
93 while (out_buf < out_end) { in expand_rle_row16()
101 if (out_end - out_buf <= pixelstride * (count - 1)) { in expand_rle_row16()
174 uint8_t *out_end; in read_uncompressed_sgi() local
187 out_end = out_buf + (y * s->linesize); in read_uncompressed_sgi()
191 *out_end++ = bytestream2_get_byteu(&gp[z]); in read_uncompressed_sgi()
193 uint16_t *out16 = (uint16_t *)out_end; in read_uncompressed_sgi()
[all …]
Drl2.c70 const uint8_t *out_end = out + stride * s->avctx->height; in rl2_rle_decode() local
96 if (len >= out_end - out) in rl2_rle_decode()
110 if (len >= out_end - out) in rl2_rle_decode()
118 while (out < out_end) { in rl2_rle_decode()
Dopus_silk.c685 int out_end; in silk_decode_frame() local
689 out_end = -i * s->sflength; in silk_decode_frame()
692 out_end = -(i - 2) * s->sflength; in silk_decode_frame()
698 for (j = - sf[i].pitchlag - LTP_ORDER/2; j < out_end; j++) { in silk_decode_frame()
705 if (out_end) { in silk_decode_frame()
707 for (j = out_end; j < 0; j++) in silk_decode_frame()
/third_party/ffmpeg/libavutil/
Dlzo.c39 uint8_t *out_start, *out, *out_end; member
96 if (cnt > c->out_end - dst) { in copy()
97 cnt = FFMAX(c->out_end - dst, 0); in copy()
128 if (cnt > c->out_end - dst) { in copy_backptr()
129 cnt = FFMAX(c->out_end - dst, 0); in copy_backptr()
152 c.out_end = (uint8_t *)out + *outlen; in av_lzo1x_decode()
205 *outlen = c.out_end - c.out; in av_lzo1x_decode()
/third_party/ffmpeg/libavformat/
Durl.c164 static int append_path(char *root, char *out_end, char **rout, in append_path() argument
182 if (out_end - out < next - in) in append_path()
197 char *out, *out_end, *path; in ff_make_absolute_url2() local
223 out_end = buf + size - 1; in ff_make_absolute_url2()
256 if (len > out_end - out) { \ in ff_make_absolute_url2()
292 ret = append_path(path, out_end, &out, ub.path, base_path_end); in ff_make_absolute_url2()
297 ret = append_path(path, out_end, &out, uc.path, uc.url_component_end_path); in ff_make_absolute_url2()
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/tls/
Dtlsv1_server.c266 u8 alert, *out_end, *out_pos, ct; in tlsv1_server_decrypt() local
272 out_end = out_data + out_len; in tlsv1_server_decrypt()
276 olen = out_end - out_pos; in tlsv1_server_decrypt()
332 if (out_pos > out_end) { in tlsv1_server_decrypt()
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/tls/
Dtlsv1_server.c266 u8 alert, *out_end, *out_pos, ct; in tlsv1_server_decrypt() local
272 out_end = out_data + out_len; in tlsv1_server_decrypt()
276 olen = out_end - out_pos; in tlsv1_server_decrypt()
332 if (out_pos > out_end) { in tlsv1_server_decrypt()
/third_party/ffmpeg/libavfilter/
Daf_atempo.c735 scalar_type *out_end = (scalar_type *)dst_end; \
738 for (i = 0; i < overlap && out < out_end; \
/third_party/rust/crates/libc/src/
Dpsp.rs2651 out_end: *mut i32, in sceAtracDecodeData()