Home
last modified time | relevance | path

Searched refs:ff_sqrt_tab (Results 1 – 2 of 2) sorted by relevance

/third_party/ffmpeg/libavcodec/
Dmathops.h34 extern const uint8_t ff_sqrt_tab[256];
211 if (a < 255) return (ff_sqrt_tab[a + 1] - 1) >> 4; in ff_sqrt()
212 else if (a < (1 << 12)) b = ff_sqrt_tab[a >> 4] >> 2; in ff_sqrt()
214 else if (a < (1 << 14)) b = ff_sqrt_tab[a >> 6] >> 1; in ff_sqrt()
215 else if (a < (1 << 16)) b = ff_sqrt_tab[a >> 8] ; in ff_sqrt()
220 b = ff_sqrt_tab[c >> (s + 8)]; in ff_sqrt()
Dmathtables.c63 const uint8_t ff_sqrt_tab[256]={ variable