Lines Matching defs:tmp
296 int tmp = ctx->short_seek_get(s->opaque);
297 short_seek = FFMAX(tmp, short_seek);
421 uint16_t tmp;
424 PUT_UTF16(ch, tmp, be ? avio_wb16(s, tmp) : avio_wl16(s, tmp);
834 char tmp[1024];
847 tmp[len++] = c;
848 } while (!end && len < sizeof(tmp) &&
850 av_bprint_append_data(bp, tmp, len);
921 uint8_t tmp;\
926 PUT_UTF8(ch, tmp, if (q - buf < buflen - 1) *q++ = tmp;)\
947 int tmp;
950 tmp = avio_r8(bc);
951 val= (val<<7) + (tmp&127);
952 }while(tmp&128);