Searched refs:dest_index (Results 1 - 4 of 4) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavcodec/
H A Dvqavideo.c209 if (dest_index + count > dest_size) { \
210 av_log(s->avctx, AV_LOG_ERROR, "decode_format80 problem: next op would overflow dest_index\n"); \
211 av_log(s->avctx, AV_LOG_ERROR, "current dest_index = %d, count = %d, dest_size = %d\n", \
212 dest_index, count, dest_size); \
218 av_log(s->avctx, AV_LOG_ERROR, "decode_format80 problem: next op would overflow dest_index\n"); \
228 int dest_index = 0; local
243 if (dest_index >= dest_size) {
244 av_log(s->avctx, AV_LOG_ERROR, "decode_format80 problem: dest_index (%d) exceeded dest_size (%d)\n",
245 dest_index, dest_size);
257 dest[dest_index
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavcodec/
H A Dvqavideo.c190 if (dest_index + count > dest_size) { \
191 av_log(NULL, AV_LOG_ERROR, " VQA video: decode_format80 problem: next op would overflow dest_index\n"); \
192 av_log(NULL, AV_LOG_ERROR, " VQA video: current dest_index = %d, count = %d, dest_size = %d\n", \
193 dest_index, count, dest_size); \
199 av_log(NULL, AV_LOG_ERROR, " VQA video: decode_format80 problem: next op would overflow dest_index\n"); \
209 int dest_index = 0; local
224 if (dest_index >= dest_size) {
225 av_log(NULL, AV_LOG_ERROR, " VQA video: decode_format80 problem: dest_index (%d) exceeded dest_size (%d)\n",
226 dest_index, dest_size);
238 dest[dest_index
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/fs/ntfs/
H A Dcompress.c131 * @dest_index: current index into @dest_pages (IN/OUT)
132 * @dest_ofs: current offset within @dest_pages[@dest_index] (IN/OUT)
146 * destination pages @dest_pages starting at index @dest_index into @dest_pages
147 * and at offset @dest_pos into the page @dest_pages[@dest_index].
165 static int ntfs_decompress(struct page *dest_pages[], int *dest_index, argument
195 int completed_pages[dest_max_index - *dest_index + 1];
212 (*dest_index == dest_max_index &&
252 if (*dest_index == dest_max_index && do_sb_end > dest_max_ofs)
267 dp = dest_pages[*dest_index];
274 if (!*dest_ofs && (++*dest_index > dest_max_inde
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openvpn-2.3.1/src/openvpn/
H A Dbuffer.h584 int dest_index,
592 || dest_index < 0
593 || dest->offset + dest_index + src_len > dest->capacity)
595 memcpy (dest->data + dest->offset + dest_index, src->data + src->offset + src_index, src_len);
596 if (dest_index + src_len > dest->len)
597 dest->len = dest_index + src_len;
583 buf_copy_range(struct buffer *dest, int dest_index, const struct buffer *src, int src_index, int src_len) argument

Completed in 75 milliseconds