int32_t 39 acceleration-speed/dct.cc int32_t out[32*32]; int32_t 143 libde265/acceleration.h void (*transform_bypass)(int32_t *residual, const int16_t *coeffs, int nT); int32_t 144 libde265/acceleration.h void (*transform_bypass_rdpcm_v)(int32_t *r, const int16_t *coeffs, int nT); int32_t 145 libde265/acceleration.h void (*transform_bypass_rdpcm_h)(int32_t *r, const int16_t *coeffs, int nT); int32_t 164 libde265/acceleration.h void (*transform_idst_4x4)(int32_t *dst, const int16_t *coeffs, int bdShift, int max_coeff_bits); int32_t 165 libde265/acceleration.h void (*transform_idct_4x4)(int32_t *dst, const int16_t *coeffs, int bdShift, int max_coeff_bits); int32_t 166 libde265/acceleration.h void (*transform_idct_8x8)(int32_t *dst, const int16_t *coeffs, int bdShift, int max_coeff_bits); int32_t 167 libde265/acceleration.h void (*transform_idct_16x16)(int32_t *dst,const int16_t *coeffs,int bdShift, int max_coeff_bits); int32_t 168 libde265/acceleration.h void (*transform_idct_32x32)(int32_t *dst,const int16_t *coeffs,int bdShift, int max_coeff_bits); int32_t 169 libde265/acceleration.h void (*add_residual_8)(uint8_t *dst, ptrdiff_t stride, const int32_t* r, int nT, int bit_depth); int32_t 170 libde265/acceleration.h void (*add_residual_16)(uint16_t *dst,ptrdiff_t stride,const int32_t* r, int nT, int bit_depth); int32_t 173 libde265/acceleration.h void add_residual(pixel_t *dst, ptrdiff_t stride, const int32_t* r, int nT, int bit_depth) const; int32_t 175 libde265/acceleration.h void (*rdpcm_v)(int32_t* residual, const int16_t* coeffs, int nT,int tsShift,int bdShift); int32_t 176 libde265/acceleration.h void (*rdpcm_h)(int32_t* residual, const int16_t* coeffs, int nT,int tsShift,int bdShift); int32_t 178 libde265/acceleration.h void (*transform_skip_residual)(int32_t *residual, const int16_t *coeffs, int nT, int32_t 356 libde265/acceleration.h template <> inline void acceleration_functions::add_residual(uint8_t *dst, ptrdiff_t stride, const int32_t* r, int nT, int bit_depth) const { add_residual_8(dst,stride,r,nT,bit_depth); } int32_t 357 libde265/acceleration.h template <> inline void acceleration_functions::add_residual(uint16_t *dst, ptrdiff_t stride, const int32_t* r, int nT, int bit_depth) const { add_residual_16(dst,stride,r,nT,bit_depth); } int32_t 89 libde265/decctx.h int32_t residual_luma[32*32]; // only used when cross-comp-prediction is enabled int32_t 55 libde265/fallback-dct.cc int32_t c = coeffs[x+y*nT] << 7; int32_t 72 libde265/fallback-dct.cc int32_t c = coeffs[x+y*nT] << 7; int32_t 80 libde265/fallback-dct.cc void transform_skip_residual_fallback(int32_t *residual, const int16_t *coeffs, int nT, int32_t 87 libde265/fallback-dct.cc int32_t c = coeffs[x+y*nT] << tsShift; int32_t 102 libde265/fallback-dct.cc int32_t sum = 0; int32_t 122 libde265/fallback-dct.cc int32_t sum = 0; int32_t 137 libde265/fallback-dct.cc int32_t sum=0; int32_t 150 libde265/fallback-dct.cc int32_t sum=0; int32_t 160 libde265/fallback-dct.cc void transform_bypass_rdpcm_v_fallback(int32_t *dst, const int16_t *coeffs,int nT) int32_t 163 libde265/fallback-dct.cc int32_t sum=0; int32_t 173 libde265/fallback-dct.cc void transform_bypass_rdpcm_h_fallback(int32_t *dst, const int16_t *coeffs,int nT) int32_t 176 libde265/fallback-dct.cc int32_t sum=0; int32_t 186 libde265/fallback-dct.cc void rdpcm_v_fallback(int32_t* residual, const int16_t* coeffs, int nT,int tsShift,int bdShift) int32_t 201 libde265/fallback-dct.cc void rdpcm_h_fallback(int32_t* residual, const int16_t* coeffs, int nT,int tsShift,int bdShift) int32_t 216 libde265/fallback-dct.cc void transform_bypass_fallback(int32_t *dst, const int16_t *coeffs, int nT) int32_t 220 libde265/fallback-dct.cc int32_t c = coeffs[x+y*nT]; int32_t 231 libde265/fallback-dct.cc int32_t c = coeffs[x+y*nT]; int32_t 244 libde265/fallback-dct.cc int32_t c = coeffs[x+y*nT]; int32_t 470 libde265/fallback-dct.cc void transform_idst_4x4_fallback(int32_t *dst, const int16_t *coeffs, int bdShift, int max_coeff_bits) int32_t 696 libde265/fallback-dct.cc void transform_idct_fallback(int32_t *dst, int nT, const int16_t *coeffs, int bdShift, int max_coeff_bits) int32_t 840 libde265/fallback-dct.cc void transform_idct_4x4_fallback(int32_t *dst, const int16_t *coeffs, int bdShift, int max_coeff_bits) int32_t 845 libde265/fallback-dct.cc void transform_idct_8x8_fallback(int32_t *dst, const int16_t *coeffs, int bdShift, int max_coeff_bits) int32_t 850 libde265/fallback-dct.cc void transform_idct_16x16_fallback(int32_t *dst, const int16_t *coeffs, int32_t 856 libde265/fallback-dct.cc void transform_idct_32x32_fallback(int32_t *dst, const int16_t *coeffs, int32_t 33 libde265/fallback-dct.h void transform_bypass_fallback(int32_t *r, const int16_t *coeffs, int nT); int32_t 37 libde265/fallback-dct.h void transform_bypass_rdpcm_v_fallback(int32_t *r, const int16_t *coeffs,int nT); int32_t 38 libde265/fallback-dct.h void transform_bypass_rdpcm_h_fallback(int32_t *r, const int16_t *coeffs,int nT); int32_t 59 libde265/fallback-dct.h void transform_idst_4x4_fallback(int32_t *dst, const int16_t *coeffs, int bdShift, int max_coeff_bits); int32_t 60 libde265/fallback-dct.h void transform_idct_4x4_fallback(int32_t *dst, const int16_t *coeffs, int bdShift, int max_coeff_bits); int32_t 61 libde265/fallback-dct.h void transform_idct_8x8_fallback(int32_t *dst, const int16_t *coeffs, int bdShift, int max_coeff_bits); int32_t 62 libde265/fallback-dct.h void transform_idct_16x16_fallback(int32_t *dst, const int16_t *coeffs, int bdShift, int max_coeff_bits); int32_t 63 libde265/fallback-dct.h void transform_idct_32x32_fallback(int32_t *dst, const int16_t *coeffs, int bdShift, int max_coeff_bits); int32_t 67 libde265/fallback-dct.h const int32_t* r, int nT, int bit_depth) int32_t 76 libde265/fallback-dct.h void rdpcm_v_fallback(int32_t* residual, const int16_t* coeffs, int nT, int tsShift,int bdShift); int32_t 77 libde265/fallback-dct.h void rdpcm_h_fallback(int32_t* residual, const int16_t* coeffs, int nT, int tsShift,int bdShift); int32_t 79 libde265/fallback-dct.h void transform_skip_residual_fallback(int32_t *residual, const int16_t *coeffs, int nT, int32_t 249 libde265/image.cc removed_at_picture_id = std::numeric_limits<int32_t>::max(); int32_t 383 libde265/image.h int32_t removed_at_picture_id; int32_t 2122 libde265/motion.cc int32_t x = (mvpL[l].x + mvdL[l][0] + 0x10000) & 0xFFFF; int32_t 2123 libde265/motion.cc int32_t y = (mvpL[l].y + mvdL[l][1] + 0x10000) & 0xFFFF; int32_t 235 libde265/sps.h int32_t WpOffsetHalfRangeY; int32_t 236 libde265/sps.h int32_t WpOffsetHalfRangeC; int32_t 235 libde265/transform.cc void cross_comp_pred(const thread_context* tctx, int32_t* residual, int nT) int32_t 263 libde265/transform.cc int32_t residual_buffer[32*32]; int32_t 264 libde265/transform.cc int32_t* residual; int32_t 401 libde265/transform.cc int32_t residual_buffer[32*32]; int32_t 403 libde265/transform.cc int32_t* residual; int32_t 410 libde265/transform.cc int32_t currCoeff = tctx->coeffList[cIdx][i]; int32_t 464 libde265/transform.cc int32_t currCoeff = tctx->coeffList[cIdx][i]; int32_t 543 libde265/transform.cc int32_t residual_buffer[32*32]; int32_t 545 libde265/transform.cc int32_t* residual; int32_t 718 libde265/transform.cc int32_t currCoeff = in_coeff[i]; int32_t 199 libde265/util.cc void printBlk(const char* title, const int32_t* data, int blksize, int stride, int32_t 219 libde265/util.h void printBlk(const char* title,const int32_t* data, int blksize, int stride, const std::string& prefix=" "); int32_t 1500 libde265/x86/sse-dct.cc int32_t shift; int32_t 2255 libde265/x86/sse-dct.cc int32_t shift;