Searched refs:FASTDIV (Results 1 – 9 of 9) sorted by relevance
/third_party/ffmpeg/libavcodec/arm/ |
D | mathops.h | 40 #define FASTDIV FASTDIV macro 41 static av_always_inline av_const int FASTDIV(int a, int b) in FASTDIV() function 55 #define FASTDIV FASTDIV macro 56 static av_always_inline av_const int FASTDIV(int a, int b) in FASTDIV() function
|
/third_party/ffmpeg/libavcodec/ |
D | msmpeg4.c | 189 return FASTDIV((sum + (scale>>1)), scale); in get_dc() 250 a = FASTDIV((a + (scale >> 1)), scale); in ff_msmpeg4_pred_dc() 251 b = FASTDIV((b + (scale >> 1)), scale); in ff_msmpeg4_pred_dc() 252 c = FASTDIV((c + (scale >> 1)), scale); in ff_msmpeg4_pred_dc()
|
D | mathops.h | 201 #ifndef FASTDIV 202 # define FASTDIV(a,b) ((uint32_t)((((uint64_t)a) * ff_inverse[b]) >> 32)) macro 221 b = FASTDIV(c,b) + (b << s); in ff_sqrt()
|
D | mpeg4video.h | 243 pred = FASTDIV((pred + (scale >> 1)), scale); in ff_mpeg4_pred_dc()
|
D | g723_1dec.c | 206 p->subframe[i].ad_cb_gain = FASTDIV(temp, GAIN_LEVELS); in unpack_bitstream() 228 p->subframe[1].pulse_pos = FASTDIV(temp, 90); in unpack_bitstream() 231 p->subframe[2].pulse_pos = FASTDIV(temp, 9); in unpack_bitstream()
|
D | vp9prob.c | 37 update_factor = FASTDIV(update_factor * FFMIN(ct, max_count), max_count); in adapt_prob()
|
D | vorbisdec.c | 1447 unsigned step = FASTDIV(vr->partition_size << 1, dim << 1); in vorbis_residue_decode_internal() 1516 unsigned voffs_div = ch == 1 ? voffset : FASTDIV(voffset, ch); in vorbis_residue_decode_internal()
|
D | dca_core.c | 532 div = FASTDIV(code1, levels); in decode_blockcodes() 537 div = FASTDIV(code2, levels); in decode_blockcodes()
|
D | mpeg4videodec.c | 1058 level = FASTDIV((level + (s->y_dc_scale >> 1)), s->y_dc_scale); in mpeg4_decode_block() 1060 level = FASTDIV((level + (s->c_dc_scale >> 1)), s->c_dc_scale); in mpeg4_decode_block()
|