Home | History | Annotate | Download | only in dsp

Lines Matching defs:bits

543   double bits = weight_0 * counts[0];
546 bits += exp_val * (counts[i] + counts[256 - i]);
549 return (float)(-0.1 * bits);
594 int tile_x, int tile_y, int bits,
598 const int col_start = tile_x << bits;
599 const int row_start = tile_y << bits;
600 const int tile_size = 1 << bits;
643 int tile_x, int tile_y, int bits, int mode,
646 const int col_start = tile_x << bits;
647 const int row_start = tile_y << bits;
648 const int tile_size = 1 << bits;
676 void VP8LResidualImage(int width, int height, int bits,
679 const int max_tile_size = 1 << bits;
680 const int tiles_per_row = VP8LSubSampleSize(width, bits);
681 const int tiles_per_col = VP8LSubSampleSize(height, bits);
706 pred = GetBestPredictorForTile(width, height, tile_x, tile_y, bits,
710 CopyTileWithPrediction(width, height, tile_x, tile_y, bits, pred,
1049 int tile_x, int tile_y, int bits,
1056 const int max_tile_size = 1 << bits;
1086 void VP8LColorSpaceTransform(int width, int height, int bits, int quality,
1088 const int max_tile_size = 1 << bits;
1089 const int tile_xsize = VP8LSubSampleSize(width, bits);
1090 const int tile_ysize = VP8LSubSampleSize(height, bits);
1108 prev_x = GetBestColorTransformForTile(tile_x, tile_y, bits,