HomeSort by relevance Sort by last modified time
    Searched refs:coef (Results 1 - 25 of 188) sorted by null

1 2 3 4 5 6 7 8

  /external/libjpeg-turbo/
jdcoefct.h 65 my_coef_ptr coef = (my_coef_ptr) cinfo->coef; local
72 coef->MCU_rows_per_iMCU_row = 1;
75 coef->MCU_rows_per_iMCU_row = cinfo->cur_comp_info[0]->v_samp_factor;
77 coef->MCU_rows_per_iMCU_row = cinfo->cur_comp_info[0]->last_row_height;
80 coef->MCU_ctr = 0;
81 coef->MCU_vert_offset = 0;
jccoefct.c 74 my_coef_ptr coef = (my_coef_ptr) cinfo->coef; variable
81 coef->MCU_rows_per_iMCU_row = 1;
83 if (coef->iMCU_row_num < (cinfo->total_iMCU_rows-1))
84 coef->MCU_rows_per_iMCU_row = cinfo->cur_comp_info[0]->v_samp_factor;
86 coef->MCU_rows_per_iMCU_row = cinfo->cur_comp_info[0]->last_row_height;
89 coef->mcu_ctr = 0;
90 coef->MCU_vert_offset = 0;
101 my_coef_ptr coef = (my_coef_ptr) cinfo->coef; local
144 my_coef_ptr coef = (my_coef_ptr) cinfo->coef; local
246 my_coef_ptr coef = (my_coef_ptr) cinfo->coef; local
342 my_coef_ptr coef = (my_coef_ptr) cinfo->coef; local
406 my_coef_ptr coef; local
    [all...]
jctrans.c 243 my_coef_ptr coef = (my_coef_ptr) cinfo->coef; local
250 coef->MCU_rows_per_iMCU_row = 1;
252 if (coef->iMCU_row_num < (cinfo->total_iMCU_rows-1))
253 coef->MCU_rows_per_iMCU_row = cinfo->cur_comp_info[0]->v_samp_factor;
255 coef->MCU_rows_per_iMCU_row = cinfo->cur_comp_info[0]->last_row_height;
258 coef->mcu_ctr = 0;
259 coef->MCU_vert_offset = 0;
270 my_coef_ptr coef = (my_coef_ptr) cinfo->coef; local
293 my_coef_ptr coef = (my_coef_ptr) cinfo->coef; local
379 my_coef_ptr coef; local
    [all...]
jdcoefct.c 60 my_coef_ptr coef = (my_coef_ptr) cinfo->coef; local
63 if (coef->pub.coef_arrays != NULL) {
65 coef->pub.decompress_data = decompress_smooth_data;
67 coef->pub.decompress_data = decompress_data;
87 my_coef_ptr coef = (my_coef_ptr) cinfo->coef; local
98 for (yoffset = coef->MCU_vert_offset; yoffset < coef->MCU_rows_per_iMCU_row;
100 for (MCU_col_num = coef->MCU_ctr; MCU_col_num <= last_MCU_col
192 my_coef_ptr coef = (my_coef_ptr) cinfo->coef; local
263 my_coef_ptr coef = (my_coef_ptr) cinfo->coef; local
354 my_coef_ptr coef = (my_coef_ptr) cinfo->coef; local
410 my_coef_ptr coef = (my_coef_ptr) cinfo->coef; local
629 my_coef_ptr coef; local
    [all...]
  /frameworks/av/media/libstagefright/codecs/avc/enc/src/
block.cpp 82 int16 *coef = video->block; local
91 coef += ((blkidx & 0x3) << 2) + ((blkidx >> 2) << 6); /* point to the 4x4 block */
109 coef[0] = r0 + r1;
110 coef[2] = r0 - r1;
111 coef[1] = (r3 << 1) + r2;
112 coef[3] = r3 - (r2 << 1);
114 coef += 16;
120 coef -= 64;
125 r0 = coef[0] + coef[48]
262 int16 *coef, *coef8 = video->block; local
366 int16 *coef = video->block; local
729 int16 *coef = video->block + 256; local
    [all...]
  /external/speex/libspeex/
lsp_bfin.h 39 spx_word16_t *coef, /* P or Q coefs in Q13 format */
49 "P0 = %2;\n\t" /* P0: coef[m], coef[m-1],..., coef[0] */
81 : "a" (x), "a" (&coef[m]), "a" (m-1)
  /external/webrtc/webrtc/modules/audio_coding/codecs/ilbc/
interpolate.c 30 int16_t coef, /* (i) weight coefficient in Q14 */
37 Performs the operation out[i] = in[i]*coef + (1-coef)*in2[i] (with rounding)
40 invcoef = 16384 - coef; /* 16384 = 1.0 (Q14)*/
42 out[i] = (int16_t)((coef * in1[i] + invcoef * in2[i] + 8192) >> 14);
bw_expand.h 32 int16_t *coef, /* (i) the bandwidth expansion factor Q15 */
interpolate.h 32 int16_t coef, /* (i) weight coefficient in Q14 */
lsf_interpolate_to_poly_dec.h 32 int16_t coef, /* (i) weighting coefficient to use between
lsf_interpolate_to_poly_enc.h 33 int16_t coef, /* (i) weighting coefficient to use between
bw_expand.c 30 int16_t *coef, /* (i) the bandwidth expansion factor Q15 */
37 /* out[i] = coef[i] * in[i] with rounding.
38 in[] and out[] are in Q12 and coef[] is in Q15
40 out[i] = (int16_t)((coef[i] * in[i] + 16384) >> 15);
lsf_interpolate_to_poly_dec.c 31 int16_t coef, /* (i) weighting coefficient to use between
38 WebRtcIlbcfix_Interpolate(lsftmp, lsf1, lsf2, coef, length);
lsf_interpolate_to_poly_enc.c 32 int16_t coef, /* (i) weighting coefficient to use between
40 WebRtcIlbcfix_Interpolate(lsftmp, lsf1, lsf2, coef, length);
  /external/opencv3/3rdparty/libjpeg/
jccoefct.c 76 my_coef_ptr coef = (my_coef_ptr) cinfo->coef; variable
83 coef->MCU_rows_per_iMCU_row = 1;
85 if (coef->iMCU_row_num < (cinfo->total_iMCU_rows-1))
86 coef->MCU_rows_per_iMCU_row = cinfo->cur_comp_info[0]->v_samp_factor;
88 coef->MCU_rows_per_iMCU_row = cinfo->cur_comp_info[0]->last_row_height;
91 coef->mcu_ctr = 0;
92 coef->MCU_vert_offset = 0;
103 my_coef_ptr coef = (my_coef_ptr) cinfo->coef; local
146 my_coef_ptr coef = (my_coef_ptr) cinfo->coef; local
251 my_coef_ptr coef = (my_coef_ptr) cinfo->coef; local
348 my_coef_ptr coef = (my_coef_ptr) cinfo->coef; local
412 my_coef_ptr coef; local
    [all...]
jdcoefct.c 83 my_coef_ptr coef = (my_coef_ptr) cinfo->coef; local
90 coef->MCU_rows_per_iMCU_row = 1;
93 coef->MCU_rows_per_iMCU_row = cinfo->cur_comp_info[0]->v_samp_factor;
95 coef->MCU_rows_per_iMCU_row = cinfo->cur_comp_info[0]->last_row_height;
98 coef->MCU_ctr = 0;
99 coef->MCU_vert_offset = 0;
123 my_coef_ptr coef = (my_coef_ptr) cinfo->coef; local
126 if (coef->pub.coef_arrays != NULL)
150 my_coef_ptr coef = (my_coef_ptr) cinfo->coef; local
248 my_coef_ptr coef = (my_coef_ptr) cinfo->coef; local
319 my_coef_ptr coef = (my_coef_ptr) cinfo->coef; local
409 my_coef_ptr coef = (my_coef_ptr) cinfo->coef; local
465 my_coef_ptr coef = (my_coef_ptr) cinfo->coef; local
680 my_coef_ptr coef; local
    [all...]
jctrans.c 227 my_coef_ptr coef = (my_coef_ptr) cinfo->coef; local
234 coef->MCU_rows_per_iMCU_row = 1;
236 if (coef->iMCU_row_num < (cinfo->total_iMCU_rows-1))
237 coef->MCU_rows_per_iMCU_row = cinfo->cur_comp_info[0]->v_samp_factor;
239 coef->MCU_rows_per_iMCU_row = cinfo->cur_comp_info[0]->last_row_height;
242 coef->mcu_ctr = 0;
243 coef->MCU_vert_offset = 0;
254 my_coef_ptr coef = (my_coef_ptr) cinfo->coef; local
277 my_coef_ptr coef = (my_coef_ptr) cinfo->coef; local
363 my_coef_ptr coef; local
    [all...]
  /external/pdfium/third_party/libjpeg/
fpdfapi_jccoefct.c 75 my_coef_ptr coef = (my_coef_ptr) cinfo->coef; variable
82 coef->MCU_rows_per_iMCU_row = 1;
84 if (coef->iMCU_row_num < (cinfo->total_iMCU_rows-1))
85 coef->MCU_rows_per_iMCU_row = cinfo->cur_comp_info[0]->v_samp_factor;
87 coef->MCU_rows_per_iMCU_row = cinfo->cur_comp_info[0]->last_row_height;
90 coef->mcu_ctr = 0;
91 coef->MCU_vert_offset = 0;
102 my_coef_ptr coef = (my_coef_ptr) cinfo->coef; local
145 my_coef_ptr coef = (my_coef_ptr) cinfo->coef; local
247 my_coef_ptr coef = (my_coef_ptr) cinfo->coef; local
343 my_coef_ptr coef = (my_coef_ptr) cinfo->coef; local
407 my_coef_ptr coef; local
    [all...]
fpdfapi_jdcoefct.c 82 my_coef_ptr coef = (my_coef_ptr) cinfo->coef; local
89 coef->MCU_rows_per_iMCU_row = 1;
92 coef->MCU_rows_per_iMCU_row = cinfo->cur_comp_info[0]->v_samp_factor;
94 coef->MCU_rows_per_iMCU_row = cinfo->cur_comp_info[0]->last_row_height;
97 coef->MCU_ctr = 0;
98 coef->MCU_vert_offset = 0;
122 my_coef_ptr coef = (my_coef_ptr) cinfo->coef; local
125 if (coef->pub.coef_arrays != NULL)
149 my_coef_ptr coef = (my_coef_ptr) cinfo->coef; local
246 my_coef_ptr coef = (my_coef_ptr) cinfo->coef; local
317 my_coef_ptr coef = (my_coef_ptr) cinfo->coef; local
407 my_coef_ptr coef = (my_coef_ptr) cinfo->coef; local
463 my_coef_ptr coef = (my_coef_ptr) cinfo->coef; local
678 my_coef_ptr coef; local
    [all...]
fpdfapi_jctrans.c 230 my_coef_ptr coef = (my_coef_ptr) cinfo->coef; local
237 coef->MCU_rows_per_iMCU_row = 1;
239 if (coef->iMCU_row_num < (cinfo->total_iMCU_rows-1))
240 coef->MCU_rows_per_iMCU_row = cinfo->cur_comp_info[0]->v_samp_factor;
242 coef->MCU_rows_per_iMCU_row = cinfo->cur_comp_info[0]->last_row_height;
245 coef->mcu_ctr = 0;
246 coef->MCU_vert_offset = 0;
257 my_coef_ptr coef = (my_coef_ptr) cinfo->coef; local
280 my_coef_ptr coef = (my_coef_ptr) cinfo->coef; local
366 my_coef_ptr coef; local
    [all...]
  /external/webrtc/webrtc/common_audio/signal_processing/
resample.c 318 int16_t coef; local
320 coef = coef_ptr[0];
321 tmp1 += coef * in1[0];
322 tmp2 += coef * in2[-0];
324 coef = coef_ptr[1];
325 tmp1 += coef * in1[1];
326 tmp2 += coef * in2[-1];
328 coef = coef_ptr[2];
329 tmp1 += coef * in1[2];
330 tmp2 += coef * in2[-2]
364 int16_t coef; local
    [all...]
resample_fractional.c 153 int16_t coef; local
155 coef = coef_ptr[0];
156 tmp1 += coef * in1[0];
157 tmp2 += coef * in2[-0];
159 coef = coef_ptr[1];
160 tmp1 += coef * in1[1];
161 tmp2 += coef * in2[-1];
163 coef = coef_ptr[2];
164 tmp1 += coef * in1[2];
165 tmp2 += coef * in2[-2]
    [all...]
  /external/mesa3d/src/gallium/drivers/softpipe/
sp_fs.h 43 void sp_setup_pos_vector(const struct tgsi_interp_coef *coef,
  /external/aac/libAACdec/src/
pulsedata.cpp 142 FIXP_DBL *coef) /*!< pointer to spectrum */
153 if (coef [k] > (FIXP_DBL)0) coef[k] += (FIXP_DBL)(int)PulseData->PulseAmp[i];
154 else coef[k] -= (FIXP_DBL)(int)PulseData->PulseAmp[i];
  /frameworks/av/media/libstagefright/codecs/amrwbenc/src/
az_isp.c 69 Word16 *coef; local
110 coef = f1;
113 ylow = Chebps2(xlow, coef, order);
121 ylow = Chebps2(xlow, coef, order);
128 ymid = Chebps2(xmid, coef, order);
170 coef = f2;
175 coef = f1;
178 ylow = Chebps2(xlow, coef, order);

Completed in 314 milliseconds

1 2 3 4 5 6 7 8