Lines Matching refs:method_ptr
103 inverse_DCT_method_ptr method_ptr = NULL; in start_pass() local
112 method_ptr = jpeg_idct_1x1; in start_pass()
117 method_ptr = jsimd_idct_2x2; in start_pass()
119 method_ptr = jpeg_idct_2x2; in start_pass()
123 method_ptr = jpeg_idct_3x3; in start_pass()
128 method_ptr = jsimd_idct_4x4; in start_pass()
130 method_ptr = jpeg_idct_4x4; in start_pass()
134 method_ptr = jpeg_idct_5x5; in start_pass()
140 method_ptr = jsimd_idct_6x6; in start_pass()
143 method_ptr = jpeg_idct_6x6; in start_pass()
147 method_ptr = jpeg_idct_7x7; in start_pass()
156 method_ptr = jsimd_idct_islow; in start_pass()
158 method_ptr = jpeg_idct_islow; in start_pass()
165 method_ptr = jsimd_idct_ifast; in start_pass()
167 method_ptr = jpeg_idct_ifast; in start_pass()
174 method_ptr = jsimd_idct_float; in start_pass()
176 method_ptr = jpeg_idct_float; in start_pass()
187 method_ptr = jpeg_idct_9x9; in start_pass()
191 method_ptr = jpeg_idct_10x10; in start_pass()
195 method_ptr = jpeg_idct_11x11; in start_pass()
201 method_ptr = jsimd_idct_12x12; in start_pass()
204 method_ptr = jpeg_idct_12x12; in start_pass()
208 method_ptr = jpeg_idct_13x13; in start_pass()
212 method_ptr = jpeg_idct_14x14; in start_pass()
216 method_ptr = jpeg_idct_15x15; in start_pass()
220 method_ptr = jpeg_idct_16x16; in start_pass()
228 idct->pub.inverse_DCT[ci] = method_ptr; in start_pass()