Searched refs:step (Results 1 - 25 of 58) sorted by relevance

123

/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/test/
H A Ddct16x16_test.cc84 double step[16]; local
88 // step 1
89 step[ 0] = input[0] + input[15];
90 step[ 1] = input[1] + input[14];
91 step[ 2] = input[2] + input[13];
92 step[ 3] = input[3] + input[12];
93 step[ 4] = input[4] + input[11];
94 step[ 5] = input[5] + input[10];
95 step[ 6] = input[6] + input[ 9];
96 step[
[all...]
H A Dconvolve_test.cc481 /* Assume that each output pixel requires us to step on by 17/16th pixels in
560 for (int step = 1; step <= 32; ++step) {
563 vp9_sub_pel_filters_8[frac], step,
564 vp9_sub_pel_filters_8[frac], step,
573 << ", frac == " << frac << ", step == " << step; local
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/
H A Dvp9_dct.c28 int16_t step[4]; local
31 step[0] = input[0] + input[3];
32 step[1] = input[1] + input[2];
33 step[2] = input[1] - input[2];
34 step[3] = input[0] - input[3];
36 temp1 = (step[0] + step[1]) * cospi_16_64;
37 temp2 = (step[0] - step[1]) * cospi_16_64;
40 temp1 = step[
61 /*canbe16*/ int step[4]; local
1010 int step[32]; local
[all...]
H A Dvp9_subexp.c126 const int step = *bestp > oldp ? -1 : 1; local
128 for (newp = *bestp; newp != oldp; newp += step) {
145 int i, old_b, new_b, update_b, savings, bestsavings, step; local
157 step = (*bestp > oldp[PIVOT_NODE] ? -1 : 1);
159 for (newp = *bestp; newp != oldp[PIVOT_NODE]; newp += step) {
/hardware/qcom/display/msm8996/sdm/include/utils/
H A Dconstants.h51 #define ROUND_UP(number, step) ((((number) + ((step) - 1)) / (step)) * (step))
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/common/
H A Dvp9_blockd.c52 const int step = 1 << (tx_size << 1); local
80 i += step;
84 for (i = 0; i < num_4x4_w * num_4x4_h; i += step)
H A Dvp9_idct.c100 int16_t step[4]; local
105 step[0] = dct_const_round_shift(temp1);
106 step[1] = dct_const_round_shift(temp2);
109 step[2] = dct_const_round_shift(temp1);
110 step[3] = dct_const_round_shift(temp2);
113 output[0] = step[0] + step[3];
114 output[1] = step[1] + step[2];
115 output[2] = step[
[all...]
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/common/arm/neon/
H A Dvp9_iht4x4_add_neon.asm43 ; output[0] = step[0] + step[3];
44 ; output[1] = step[1] + step[2];
45 ; output[3] = step[0] - step[3];
46 ; output[2] = step[1] - step[2];
H A Dvp9_iht8x8_add_neon.asm232 vadd.s16 q0, q9, q15 ; output[0] = step[0] + step[3]
233 vadd.s16 q1, q11, q13 ; output[1] = step[1] + step[2]
234 vsub.s16 q2, q11, q13 ; output[2] = step[1] - step[2]
235 vsub.s16 q3, q9, q15 ; output[3] = step[0] - step[3]
/hardware/libhardware/include/hardware/
H A Dradio.h72 * step(), tune() or auto AF switching. The event status is 0 (no error) if in tune,
98 * Automatically cancels pending scan, step or tune.
133 * Automatically cancels pending scan, step or tune.
153 * 0 if step successfully started
157 * Automatically cancels pending scan, step or tune.
160 * step completed or after a time out. The event status should indicate
163 int (*step)(const struct radio_tuner *tuner, member in struct:radio_tuner
180 * Automatically cancels pending scan, step or tune.
190 * Cancel a scan, step or tune operation.
191 * Must be called while a scan, step o
[all...]
/hardware/bsp/intel/peripheral/libupm/src/grovemd/
H A Dgrovemd.cxx227 int step = m_currentStep % 4; local
229 switch (step)
/hardware/bsp/intel/peripheral/libupm/src/uln200xa/
H A Duln200xa.cxx146 int step = m_currentStep % 8; local
161 switch (step)
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/encoder/arm/neon/
H A Dfastquantizeb_neon.asm165 vorr.s16 q14, q0, q1 ; check if all zero (step 1)
168 vorr.s16 d28, d28, d29 ; check if all zero (step 2)
175 vmov r2, r3, d28 ; check if all zero (step 3)
200 orr r2, r2, r3 ; check if all zero (step 4)
201 cmp r2, #0 ; check if all zero (step 5)
202 beq zero_output ; check if all zero (step 6)
/hardware/bsp/intel/peripheral/libupm/src/adafruitms1438/
H A Dadafruitms1438.cxx242 int step = m_stepConfig[motor].currentStep % 4; local
252 switch (step)
/hardware/bsp/intel/peripheral/libupm/src/l298/
H A Dl298.cxx281 int step = m_currentStep % 4; local
289 switch (step)
/hardware/intel/common/libva/va/
H A Dva_vpp.h514 float step; member in struct:_VAProcFilterValueRange
/hardware/qcom/audio/legacy/libalsa-intf/
H A Dalsa_mixer.c258 ALOGV(ei->value.integer.step ?
262 ei->value.integer.step);
265 ALOGV(ei->value.integer64.step ?
269 ei->value.integer64.step);
347 int step; local
358 ALOGV(" step=");
359 step = (tlv[3] & 0xffff);
/hardware/qcom/msm8994/kernel-headers/sound/
H A Dasound.h389 unsigned int step; member in struct:snd_pcm_channel_info
856 long step; member in struct:snd_ctl_elem_info::__anon3967::__anon3968
862 long long step; member in struct:snd_ctl_elem_info::__anon3967::__anon3969
/hardware/qcom/msm8994/original-kernel-headers/sound/
H A Dasound.h400 unsigned int step; /* samples distance in bits */ member in struct:snd_pcm_channel_info
850 long step; /* R: step (0 variable) */ member in struct:snd_ctl_elem_info::__anon4083::__anon4084
855 long long step; /* R: step (0 variable) */ member in struct:snd_ctl_elem_info::__anon4083::__anon4085
/hardware/qcom/msm8996/kernel-headers/sound/
H A Dasound.h392 unsigned int step; member in struct:snd_pcm_channel_info
862 long step; member in struct:snd_ctl_elem_info::__anon4231::__anon4232
869 long long step; member in struct:snd_ctl_elem_info::__anon4231::__anon4233
/hardware/qcom/msm8996/original-kernel-headers/sound/
H A Dasound.h408 unsigned int step; /* samples distance in bits */ member in struct:snd_pcm_channel_info
861 long step; /* R: step (0 variable) */ member in struct:snd_ctl_elem_info::__anon4382::__anon4383
866 long long step; /* R: step (0 variable) */ member in struct:snd_ctl_elem_info::__anon4382::__anon4384
/hardware/qcom/msm8x26/kernel-headers/sound/
H A Dasound.h387 unsigned int step; member in struct:snd_pcm_channel_info
855 long step; member in struct:snd_ctl_elem_info::__anon4448::__anon4449
861 long long step; member in struct:snd_ctl_elem_info::__anon4448::__anon4450
/hardware/qcom/msm8x26/original-kernel-headers/sound/
H A Dasound.h399 unsigned int step; /* samples distance in bits */ member in struct:snd_pcm_channel_info
849 long step; /* R: step (0 variable) */ member in struct:snd_ctl_elem_info::__anon4512::__anon4513
854 long long step; /* R: step (0 variable) */ member in struct:snd_ctl_elem_info::__anon4512::__anon4514
/hardware/qcom/msm8x84/kernel-headers/sound/
H A Dasound.h387 unsigned int step; member in struct:snd_pcm_channel_info
855 long step; member in struct:snd_ctl_elem_info::__anon4633::__anon4634
861 long long step; member in struct:snd_ctl_elem_info::__anon4633::__anon4635
/hardware/qcom/msm8x84/original-kernel-headers/sound/
H A Dasound.h399 unsigned int step; /* samples distance in bits */ member in struct:snd_pcm_channel_info
849 long step; /* R: step (0 variable) */ member in struct:snd_ctl_elem_info::__anon4730::__anon4731
854 long long step; /* R: step (0 variable) */ member in struct:snd_ctl_elem_info::__anon4730::__anon4732

Completed in 700 milliseconds

123