Searched refs:buf_end (Results 76 - 100 of 116) sorted by relevance

12345

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavcodec/
H A Ddsicinav.c342 const uint8_t *buf_end = buf + avpkt->size; local
361 while (buf < buf_end) {
H A Dcavsdec.c657 const uint8_t *buf_end; local
674 buf_end = buf + buf_size;
676 buf_ptr = avpriv_mpv_find_start_code(buf_ptr,buf_end, &stc);
677 if((stc & 0xFFFFFE00) || buf_ptr == buf_end)
679 input_size = (buf_end - buf_ptr)*8;
H A Dansi.c318 const uint8_t *buf_end = buf+buf_size; local
330 while(buf < buf_end) {
H A Dmpeg12.c1685 const uint8_t *buf_end, *buf_start = *buf - 4; /* include start_code */ local
1687 buf_end = avpriv_mpv_find_start_code(buf_start + 2, *buf + buf_size, &start_code);
1688 if (buf_end < *buf + buf_size)
1689 buf_end -= 4;
1691 if (avctx->hwaccel->decode_slice(avctx, buf_start, buf_end - buf_start) < 0)
1693 *buf = buf_end;
2074 const uint8_t *buf_end = p + buf_size; local
2077 if (buf_end - p >= 5 &&
2086 if (buf_end - p < 1)
2243 const uint8_t *buf_end local
[all...]
H A Dhuffyuv.c758 if(s->pb.buf_end - s->pb.buf - (put_bits_count(&s->pb)>>3) < 2*4*count){
808 if(s->pb.buf_end - s->pb.buf - (put_bits_count(&s->pb)>>3) < 4*count){
886 if(s->pb.buf_end - s->pb.buf - (put_bits_count(&s->pb)>>3) < 3*4*count){
H A Dwavpack.c765 const uint8_t *buf_end = buf + buf_size; local
823 while (buf < buf_end) {
838 if (buf + ssize > buf_end) {
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavcodec/
H A Dljpegenc.c80 if (pb->buf_end - pb->buf - (put_bits_count(pb) >> 3) < width * 3 * 4) {
197 if (pb->buf_end - pb->buf - (put_bits_count(pb) >> 3) <
H A Dcavsdec.c1173 const uint8_t *buf_end; local
1187 buf_end = buf + buf_size;
1189 buf_ptr = avpriv_find_start_code(buf_ptr, buf_end, &stc);
1190 if ((stc & 0xFFFFFE00) || buf_ptr == buf_end) {
1195 input_size = (buf_end - buf_ptr) * 8;
H A Dmpeg12dec.c1763 const uint8_t *buf_end, *buf_start = *buf - 4; /* include start_code */ local
1765 buf_end = avpriv_find_start_code(buf_start + 2, *buf + buf_size, &start_code);
1766 if (buf_end < *buf + buf_size)
1767 buf_end -= 4;
1769 if (avctx->hwaccel->decode_slice(avctx, buf_start, buf_end - buf_start) < 0)
1771 *buf = buf_end;
2260 const uint8_t *buf_end = p + buf_size; local
2276 if (buf_end - p >= 5 &&
2285 if (buf_end - p < 1)
2289 } else if (buf_end
2356 const uint8_t *buf_end = buf + buf_size; local
[all...]
H A Dansi.c356 const uint8_t *buf_end = buf+buf_size; local
375 while(buf < buf_end) {
H A Dhuffyuvenc.c442 if (s->pb.buf_end - s->pb.buf - (put_bits_count(&s->pb) >> 3) < 2 * 4 * count) {
494 if (s->pb.buf_end - s->pb.buf - (put_bits_count(&s->pb) >> 3) < count * s->bps / 2) {
603 if (s->pb.buf_end - s->pb.buf - (put_bits_count(&s->pb) >> 3) < 4 * count) {
648 if (s->pb.buf_end - s->pb.buf - (put_bits_count(&s->pb) >> 3) <
H A Dasvenc.c137 if (a->pb.buf_end - a->pb.buf - (put_bits_count(&a->pb)>>3) < MAX_MB_SIZE) {
H A D4xm.c718 const uint8_t *buf_end = buf + length; local
730 if (buf_end - buf < 8)
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavformat/
H A Drtpdec_xiph.c229 static int get_base128(const uint8_t ** buf, const uint8_t * buf_end) argument
232 for (; *buf < buf_end; ++*buf) {
H A Drtpdec_asf.c93 pb->buf_end = buf + len;
H A Dmpegtsenc.c959 const uint8_t *p = buf, *buf_end = p+size; local
969 p = avpriv_mpv_find_start_code(p, buf_end, &state);
971 } while (p < buf_end && (state & 0x1f) != 9 &&
H A Davio.h87 unsigned char *buf_end; /**< End of the data, may be less than member in struct:__anon2124
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/video/
H A Ds3c-fb.c78 * @buf_end: Offset of buffer end registers.
92 unsigned short buf_end; member in struct:s3c_fb_variant
531 writel(data, buf + sfb->variant.buf_end);
891 writel(info->fix.smem_start + end_boff, buf + sfb->variant.buf_end);
1580 .buf_end = VIDW_BUF_END(0),
1610 .buf_end = VIDW_BUF_END(0),
1640 .buf_end = VIDW_BUF_END(0),
1673 .buf_end = 0x7c,
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavformat/
H A Drtpdec_asf.c93 pb->buf_end = buf + len;
H A Dmpegtsenc.c1196 const uint8_t *p = buf, *buf_end = p+size; local
1203 p = avpriv_find_start_code(p, buf_end, &state);
1205 } while (p < buf_end && (state & 0x1f) != 9 &&
H A Dwtvdec.c259 const uint8_t *buf_end = buf + buf_size; local
261 while(buf + 48 <= buf_end) {
278 if (48 + (int64_t)name_size > buf_end - buf) {
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/include/libavformat/
H A Davio.h181 unsigned char *buf_ptr, *buf_end; member in struct:__anon3896
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/staging/tidspbridge/core/
H A Dio_sm.c1826 char *buf_end; local
1898 * data -- buf_end will be >= pszBuf after
1901 buf_end = &psz_buf[ul_num_bytes+1];
1911 ul_num_bytes = buf_end - str_beg;
1913 while (str_beg < buf_end) {
1916 if (new_line && new_line < buf_end) {
1920 ul_num_bytes = buf_end - str_beg;
1930 str_beg = buf_end;
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/staging/wlags49_h2/
H A Dwl_wext.c2570 char *buf_end; local
2601 buf_end = extra + IW_SCAN_MAX_DATA;
2616 buf = IWE_STREAM_ADD_EVENT(info, buf, buf_end, &iwe, IW_EV_ADDR_LEN);
2633 buf = IWE_STREAM_ADD_EVENT(info, buf, buf_end, &iwe, IW_EV_UINT_LEN);
2646 buf = IWE_STREAM_ADD_EVENT(info, buf, buf_end, &iwe, IW_EV_QUAL_LEN);
2657 buf = IWE_STREAM_ADD_POINT(info, buf, buf_end, &iwe, &probe_resp->rawData[2]);
2675 buf = IWE_STREAM_ADD_POINT(info, buf, buf_end, &iwe, NULL);
2686 buf = IWE_STREAM_ADD_EVENT(info, buf, buf_end, &iwe, IW_EV_FREQ_LEN);
2698 buf = IWE_STREAM_ADD_POINT(info, buf, buf_end, &iwe, msg);
2714 buf = IWE_STREAM_ADD_POINT(info, buf, buf_end,
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/char/
H A Dn_tty.c487 unsigned char *cp, *buf_end; local
497 buf_end = tty->echo_buf + N_TTY_BUF_SIZE;
513 if (opp == buf_end)
521 if (++opp == buf_end)
621 if (cp >= buf_end)

Completed in 193 milliseconds

12345