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

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavutil/
H A Dintmath.h62 extern const uint8_t ff_sqrt_tab[256];
68 if (a < 255) return (ff_sqrt_tab[a + 1] - 1) >> 4;
69 else if (a < (1 << 12)) b = ff_sqrt_tab[a >> 4] >> 2;
71 else if (a < (1 << 14)) b = ff_sqrt_tab[a >> 6] >> 1;
72 else if (a < (1 << 16)) b = ff_sqrt_tab[a >> 8] ;
77 b = ff_sqrt_tab[c >> (s + 8)];
H A Dmathematics.c31 const uint8_t ff_sqrt_tab[256]={ variable
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavcodec/
H A Dmathops.h34 extern const uint8_t ff_sqrt_tab[256];
206 if (a < 255) return (ff_sqrt_tab[a + 1] - 1) >> 4;
207 else if (a < (1 << 12)) b = ff_sqrt_tab[a >> 4] >> 2;
209 else if (a < (1 << 14)) b = ff_sqrt_tab[a >> 6] >> 1;
210 else if (a < (1 << 16)) b = ff_sqrt_tab[a >> 8] ;
215 b = ff_sqrt_tab[c >> (s + 8)];
H A Dmathtables.c63 const uint8_t ff_sqrt_tab[256]={ variable

Completed in 35 milliseconds