Home
last modified time | relevance | path

Searched refs:taps (Results 1 – 25 of 41) sorted by relevance

12

/external/libvpx/libvpx/test/
Dblockiness_test.cc110 void Blur(uint8_t *data, int stride, int taps) { in Blur() argument
112 int half_taps = taps / 2; in Blur()
114 for (int w = 0; w < taps; ++w) { in Blur()
117 for (int w = taps; w < width_; ++w) { in Blur()
118 sum += data[w + h * stride] - data[w - taps + h * stride]; in Blur()
119 data[w - half_taps + h * stride] = (sum + half_taps) / taps; in Blur()
123 for (int h = 0; h < taps; ++h) { in Blur()
126 for (int h = taps; h < height_; ++h) { in Blur()
127 sum += data[w + h * stride] - data[(h - taps) * stride + w]; in Blur()
128 data[(h - half_taps) * stride + w] = (sum + half_taps) / taps; in Blur()
Dconsistency_test.cc97 void Blur(uint8_t *data, int stride, int taps) { in Blur() argument
99 int half_taps = taps / 2; in Blur()
101 for (int w = 0; w < taps; ++w) { in Blur()
104 for (int w = taps; w < width_; ++w) { in Blur()
105 sum += data[w + h * stride] - data[w - taps + h * stride]; in Blur()
106 data[w - half_taps + h * stride] = (sum + half_taps) / taps; in Blur()
110 for (int h = 0; h < taps; ++h) { in Blur()
113 for (int h = taps; h < height_; ++h) { in Blur()
114 sum += data[w + h * stride] - data[(h - taps) * stride + w]; in Blur()
115 data[(h - half_taps) * stride + w] = (sum + half_taps) / taps; in Blur()
/external/libaom/libaom/av1/common/
Dconvolve.c82 const int taps = 3; in av1_convolve_2d_sobel_y_c() local
83 int im_h = h + taps - 1; in av1_convolve_2d_sobel_y_c()
94 for (int k = 0; k < taps; ++k) { in av1_convolve_2d_sobel_y_c()
107 for (int k = 0; k < taps; ++k) { in av1_convolve_2d_sobel_y_c()
122 int im_h = h + filter_params_y->taps - 1; in av1_convolve_2d_sr_c()
124 const int fo_vert = filter_params_y->taps / 2 - 1; in av1_convolve_2d_sr_c()
125 const int fo_horiz = filter_params_x->taps / 2 - 1; in av1_convolve_2d_sr_c()
137 for (int k = 0; k < filter_params_x->taps; ++k) { in av1_convolve_2d_sr_c()
154 for (int k = 0; k < filter_params_y->taps; ++k) { in av1_convolve_2d_sr_c()
172 const int fo_vert = filter_params_y->taps / 2 - 1; in av1_convolve_y_sr_c()
[all …]
Dfilter.h81 uint16_t taps; member
216 return filter_params->filter_ptr + filter_params->taps * subpel; in av1_get_interp_filter_subpel_kernel()
/external/u-boot/drivers/mmc/
Drenesas-sdhi.c120 unsigned int tap_num, unsigned int taps, in renesas_sdhi_select_tuning() argument
138 if (!(taps & BIT(i))) { in renesas_sdhi_select_tuning()
139 taps &= ~BIT(i % tap_num); in renesas_sdhi_select_tuning()
140 taps &= ~BIT((i % tap_num) + tap_num); in renesas_sdhi_select_tuning()
158 if (taps & BIT(i)) in renesas_sdhi_select_tuning()
229 unsigned int taps = 0, smpcmp = 0; in renesas_sdhi_execute_tuning() local
248 if (tap_num * 2 >= sizeof(taps) * 8) { in renesas_sdhi_execute_tuning()
267 taps |= BIT(i); in renesas_sdhi_execute_tuning()
276 ret = renesas_sdhi_select_tuning(priv, tap_num, taps, smpcmp); in renesas_sdhi_execute_tuning()
/external/autotest/client/site_tests/touch_TouchscreenTaps/
Dcontrol7 PURPOSE = "Test that touchscreen finger presses are interpreted as taps."
9 This test will fail if, after playback of touch events, taps do not appear
20 Uses javascript page to listen for touchscreen taps. If all goes well, the
/external/libaom/libaom/av1/common/x86/
Dconvolve_2d_avx2.c70 int im_h = h + filter_params_y->taps - 1; in av1_convolve_2d_sr_avx2()
71 const int fo_vert = filter_params_y->taps / 2 - 1; in av1_convolve_2d_sr_avx2()
108 const int fo_horiz = filter_params_x->taps / 2 - 1; in av1_convolve_2d_sr_avx2()
185 int im_h = h + filter_params_y->taps - 1; in av1_convolve_2d_sr_avx2()
186 const int fo_vert = filter_params_y->taps / 2 - 1; in av1_convolve_2d_sr_avx2()
187 const int fo_horiz = filter_params_x->taps / 2 - 1; in av1_convolve_2d_sr_avx2()
Dav1_convolve_scale_sse4.c242 filter_params_y->taps; in av1_convolve_2d_scale_sse4_1()
244 const int xtaps = filter_params_x->taps; in av1_convolve_2d_scale_sse4_1()
245 const int ytaps = filter_params_y->taps; in av1_convolve_2d_scale_sse4_1()
482 filter_params_y->taps; in av1_highbd_convolve_2d_scale_sse4_1()
483 const int xtaps = filter_params_x->taps; in av1_highbd_convolve_2d_scale_sse4_1()
484 const int ytaps = filter_params_y->taps; in av1_highbd_convolve_2d_scale_sse4_1()
Dhighbd_convolve_2d_ssse3.c28 int im_h = h + filter_params_y->taps - 1; in av1_highbd_convolve_2d_sr_ssse3()
31 const int fo_vert = filter_params_y->taps / 2 - 1; in av1_highbd_convolve_2d_sr_ssse3()
32 const int fo_horiz = filter_params_x->taps / 2 - 1; in av1_highbd_convolve_2d_sr_ssse3()
Djnt_convolve_ssse3.c30 int im_h = h + filter_params_y->taps - 1; in av1_dist_wtd_convolve_2d_ssse3()
33 const int fo_vert = filter_params_y->taps / 2 - 1; in av1_dist_wtd_convolve_2d_ssse3()
34 const int fo_horiz = filter_params_x->taps / 2 - 1; in av1_dist_wtd_convolve_2d_ssse3()
Djnt_convolve_avx2.c133 const int fo_horiz = filter_params_x->taps / 2 - 1; in av1_dist_wtd_convolve_x_avx2()
412 const int fo_vert = filter_params_y->taps / 2 - 1; in av1_dist_wtd_convolve_y_avx2()
648 int im_h = h + filter_params_y->taps - 1; in av1_dist_wtd_convolve_2d_avx2()
649 const int fo_vert = filter_params_y->taps / 2 - 1; in av1_dist_wtd_convolve_2d_avx2()
674 const int fo_horiz = filter_params_x->taps / 2 - 1; in av1_dist_wtd_convolve_2d_avx2()
787 int im_h = h + filter_params_y->taps - 1; in av1_dist_wtd_convolve_2d_avx2()
788 const int fo_vert = filter_params_y->taps / 2 - 1; in av1_dist_wtd_convolve_2d_avx2()
789 const int fo_horiz = filter_params_x->taps / 2 - 1; in av1_dist_wtd_convolve_2d_avx2()
Dhighbd_convolve_2d_avx2.c31 int im_h = h + filter_params_y->taps - 1; in av1_highbd_convolve_2d_sr_avx2()
34 const int fo_vert = filter_params_y->taps / 2 - 1; in av1_highbd_convolve_2d_sr_avx2()
35 const int fo_horiz = filter_params_x->taps / 2 - 1; in av1_highbd_convolve_2d_sr_avx2()
Djnt_convolve_sse2.c28 const int fo_horiz = filter_params_x->taps / 2 - 1; in av1_dist_wtd_convolve_x_sse2()
162 const int fo_vert = filter_params_y->taps / 2 - 1; in av1_dist_wtd_convolve_y_sse2()
399 int im_h = h + filter_params_y->taps - 1; in av1_dist_wtd_convolve_2d_sse2()
402 const int fo_vert = filter_params_y->taps / 2 - 1; in av1_dist_wtd_convolve_2d_sse2()
403 const int fo_horiz = filter_params_x->taps / 2 - 1; in av1_dist_wtd_convolve_2d_sse2()
Dhighbd_convolve_2d_sse4.c180 int im_h = h + filter_params_y->taps - 1; in av1_highbd_dist_wtd_convolve_2d_sse4_1()
185 const int fo_vert = filter_params_y->taps / 2 - 1; in av1_highbd_dist_wtd_convolve_2d_sse4_1()
186 const int fo_horiz = filter_params_x->taps / 2 - 1; in av1_highbd_dist_wtd_convolve_2d_sse4_1()
Dconvolve_2d_sse2.c31 int im_h = h + filter_params_y->taps - 1; in av1_convolve_2d_sr_sse2()
34 const int fo_vert = filter_params_y->taps / 2 - 1; in av1_convolve_2d_sr_sse2()
35 const int fo_horiz = filter_params_x->taps / 2 - 1; in av1_convolve_2d_sr_sse2()
Dhighbd_jnt_convolve_avx2.c239 int im_h = h + filter_params_y->taps - 1; in av1_highbd_dist_wtd_convolve_2d_avx2()
242 const int fo_vert = filter_params_y->taps / 2 - 1; in av1_highbd_dist_wtd_convolve_2d_avx2()
243 const int fo_horiz = filter_params_x->taps / 2 - 1; in av1_highbd_dist_wtd_convolve_2d_avx2()
474 const int fo_horiz = filter_params_x->taps / 2 - 1; in av1_highbd_dist_wtd_convolve_x_avx2()
643 const int fo_vert = filter_params_y->taps / 2 - 1; in av1_highbd_dist_wtd_convolve_y_avx2()
Dconvolve_sse2.c84 const int fo_vert = filter_params_y->taps / 2 - 1; in av1_convolve_y_sr_sse2()
245 const int fo_horiz = filter_params_x->taps / 2 - 1; in av1_convolve_x_sr_sse2()
Dconvolve_avx2.c146 const int fo_vert = filter_params_y->taps / 2 - 1; in av1_convolve_y_sr_avx2()
367 const int fo_horiz = filter_params_x->taps / 2 - 1; in av1_convolve_x_sr_avx2()
Dhighbd_jnt_convolve_sse4.c27 const int fo_vert = filter_params_y->taps / 2 - 1; in av1_highbd_dist_wtd_convolve_y_sse4_1()
269 const int fo_horiz = filter_params_x->taps / 2 - 1; in av1_highbd_dist_wtd_convolve_x_sse4_1()
/external/autotest/client/site_tests/touch_StylusTaps/
Dcontrol9 This test will fail if, after playback of touch events, taps do not appear
20 Uses kernel playback and a javascript page to play and listen for stylus taps.
/external/libvpx/libvpx/vp8/common/x86/
Dsubpixel_mmx.asm42 movq mm1, [rdx + 16] ; do both the negative taps first!!!
77 ; do outer positive taps
140 movq mm1, [rbx + 16] ; do both the negative taps first!!!
/external/walt/pywalt/pywalt/
Dwalt.py538 taps = []
559 taps.append((dt_tap_us, direction))
565 dt_down = numpy.array([t[0] for t in taps if t[1] == 1]) / 1e3
566 dt_up = numpy.array([t[0] for t in taps if t[1] == 0]) / 1e3
/external/libaom/libaom/aom_dsp/x86/
Dhighbd_convolve_ssse3.c27 const int fo_vert = filter_params_y->taps / 2 - 1; in av1_highbd_convolve_y_sr_ssse3()
175 const int fo_horiz = filter_params_x->taps / 2 - 1; in av1_highbd_convolve_x_sr_ssse3()
/external/scapy/test/
Dsendsniff.uts34 = Run a bridge_and_sniff thread between the taps **sockets**
59 = Run a bridge_and_sniff thread between the taps **sockets**
/external/autotest/client/site_tests/touch_TapSettings/
DREADME3 motion (i.e. do not record multipe taps or drags). Having the drag stop in the

12