Lines Matching refs:method_ptr
102 inverse_DCT_method_ptr method_ptr = NULL; in start_pass() local
111 method_ptr = jpeg_idct_1x1; in start_pass()
116 method_ptr = jsimd_idct_2x2; in start_pass()
118 method_ptr = jpeg_idct_2x2; in start_pass()
122 method_ptr = jpeg_idct_3x3; in start_pass()
127 method_ptr = jsimd_idct_4x4; in start_pass()
129 method_ptr = jpeg_idct_4x4; in start_pass()
133 method_ptr = jpeg_idct_5x5; in start_pass()
139 method_ptr = jsimd_idct_6x6; in start_pass()
142 method_ptr = jpeg_idct_6x6; in start_pass()
146 method_ptr = jpeg_idct_7x7; in start_pass()
155 method_ptr = jsimd_idct_islow; in start_pass()
157 method_ptr = jpeg_idct_islow; in start_pass()
164 method_ptr = jsimd_idct_ifast; in start_pass()
166 method_ptr = jpeg_idct_ifast; in start_pass()
173 method_ptr = jsimd_idct_float; in start_pass()
175 method_ptr = jpeg_idct_float; in start_pass()
186 method_ptr = jpeg_idct_9x9; in start_pass()
190 method_ptr = jpeg_idct_10x10; in start_pass()
194 method_ptr = jpeg_idct_11x11; in start_pass()
200 method_ptr = jsimd_idct_12x12; in start_pass()
203 method_ptr = jpeg_idct_12x12; in start_pass()
207 method_ptr = jpeg_idct_13x13; in start_pass()
211 method_ptr = jpeg_idct_14x14; in start_pass()
215 method_ptr = jpeg_idct_15x15; in start_pass()
219 method_ptr = jpeg_idct_16x16; in start_pass()
227 idct->pub.inverse_DCT[ci] = method_ptr; in start_pass()