NBITS             598 libavcodec/exr.c #define A_OFFSET  (1 << (NBITS - 1))
NBITS             599 libavcodec/exr.c #define MOD_MASK  ((1 << NBITS) - 1)
NBITS              62 libavfilter/vf_palettegen.c #define HIST_SIZE (1<<(3*NBITS))
NBITS             399 libavfilter/vf_palettegen.c     const uint8_t r = color >> 16 & ((1<<NBITS)-1);
NBITS             400 libavfilter/vf_palettegen.c     const uint8_t g = color >>  8 & ((1<<NBITS)-1);
NBITS             401 libavfilter/vf_palettegen.c     const uint8_t b = color       & ((1<<NBITS)-1);
NBITS             402 libavfilter/vf_palettegen.c     return r<<(NBITS*2) | g<<NBITS | b;
NBITS              66 libavfilter/vf_paletteuse.c #define CACHE_SIZE (1<<(3*NBITS))
NBITS             347 libavfilter/vf_paletteuse.c     const uint8_t rhash = r & ((1<<NBITS)-1);
NBITS             348 libavfilter/vf_paletteuse.c     const uint8_t ghash = g & ((1<<NBITS)-1);
NBITS             349 libavfilter/vf_paletteuse.c     const uint8_t bhash = b & ((1<<NBITS)-1);
NBITS             350 libavfilter/vf_paletteuse.c     const unsigned hash = rhash<<(NBITS*2) | ghash<<NBITS | bhash;