Home
last modified time | relevance | path

Searched refs:filter_params (Results 1 – 25 of 533) sorted by relevance

12345678910>>...22

/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/blink/renderer/platform/widget/input/prediction/
H A Dfilter_factory_unittests.cc31 FilterParams* filter_params) { in GetFilterParams() argument
32 factory_->GetFilterParams(filter_type, predictor_type, filter_params); in GetFilterParams()
86 FilterParams filter_params; in TEST_F() local
89 PredictorType::kScrollPredictorTypeKalman, &filter_params); in TEST_F()
90 EXPECT_TRUE(filter_params.empty()); in TEST_F()
95 FilterParams filter_params; in TEST_F() local
114 EXPECT_EQ((int)filter_params.size(), 2); in TEST_F()
116 EXPECT_EQ(filter_params.find(ui::OneEuroFilter::kParamBeta)->second, 42); in TEST_F()
119 filter_params.clear(); in TEST_F()
121 &filter_params); in TEST_F()
[all …]
H A Dfilter_factory.cc67 FilterParams filter_params; in CreateFilter() local
68 GetFilterParams(filter_type, predictor_type, &filter_params); in CreateFilter()
70 if (filter_params.empty()) { in CreateFilter()
74 filter_params.find(ui::OneEuroFilter::kParamMincutoff)->second, in CreateFilter()
75 filter_params.find(ui::OneEuroFilter::kParamBeta)->second); in CreateFilter()
84 FilterParams* filter_params) { in GetFilterParams() argument
88 *filter_params = params->second; in GetFilterParams()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/ui/events/blink/prediction/
H A Dfilter_factory_unittests.cc30 FilterParams* filter_params) { in GetFilterParams() argument
31 factory_->GetFilterParams(filter_type, predictor_type, filter_params); in GetFilterParams()
85 FilterParams filter_params; in TEST_F() local
89 EXPECT_TRUE(filter_params.empty()); in TEST_F()
94 FilterParams filter_params; in TEST_F() local
113 EXPECT_EQ((int)filter_params.size(), 2); in TEST_F()
114 EXPECT_EQ(filter_params.find(OneEuroFilter::kParamMincutoff)->second, 33); in TEST_F()
115 EXPECT_EQ(filter_params.find(OneEuroFilter::kParamBeta)->second, 42); in TEST_F()
118 filter_params.clear(); in TEST_F()
120 &filter_params); in TEST_F()
[all …]
H A Dfilter_factory.cc70 FilterParams filter_params; in CreateFilter() local
71 GetFilterParams(filter_type, predictor_type, &filter_params); in CreateFilter()
73 if (filter_params.empty()) in CreateFilter()
77 filter_params.find(OneEuroFilter::kParamMincutoff)->second, in CreateFilter()
78 filter_params.find(OneEuroFilter::kParamBeta)->second); in CreateFilter()
85 FilterParams* filter_params) { in GetFilterParams() argument
89 *filter_params = params->second; in GetFilterParams()
/dports/devel/py-tasklib/tasklib-2.4.3/tasklib/
H A Dfilters.py37 def __init__(self, backend, filter_params=None): argument
38 self.filter_params = filter_params or []
42 self.filter_params.append(filter_str)
58 self.filter_params.insert(0, value)
70 self.filter_params.append("{0}:{1}".format(key, value))
73 return [f for f in self.filter_params if f]
77 c.filter_params = list(self.filter_params)
/dports/lang/spidermonkey60/firefox-60.9.0/third_party/aom/test/
H A Dav1_convolve_optimz_test.cc160 InterpFilterParams filter_params = av1_get_interp_filter_params(filter_); in RunHorizFilterBitExactCheck() local
163 filter_params, subpel_, x_step_q4, &conv_params_); in RunHorizFilterBitExactCheck()
165 conv_horiz_(src_, stride, dst_, stride, width_, height_, filter_params, in RunHorizFilterBitExactCheck()
182 filter_params, subpel_, x_step_q4, &conv_params_); in RunHorizFilterBitExactCheck()
193 filter_params, subpel_, x_step_q4, &conv_params_); in RunVertFilterBitExactCheck()
195 conv_vert_(src_, stride, dst_, stride, width_, height_, filter_params, in RunVertFilterBitExactCheck()
342 filter_params, subpel_, x_step_q4, avg_, in RunHorizFilterBitExactCheck()
345 conv_horiz_(src_, stride, dst_, stride, width_, height_, filter_params, in RunHorizFilterBitExactCheck()
362 filter_params, subpel_, x_step_q4, avg_, bit_depth_); in RunHorizFilterBitExactCheck()
373 filter_params, subpel_, x_step_q4, avg_, in RunVertFilterBitExactCheck()
[all …]
H A Dav1_convolve_test.cc78 const InterpFilterParams filter_params,
273 InterpFilterParams filter_params = in TEST() local
275 int filter_size = filter_params.taps; in TEST()
303 av1_get_interp_filter_subpel_kernel(filter_params, subpel_x_q4); in TEST()
305 av1_get_interp_filter_subpel_kernel(filter_params, subpel_y_q4); in TEST()
328 InterpFilterParams filter_params = in TEST() local
330 int filter_size = filter_params.taps; in TEST()
445 InterpFilterParams filter_params = \
447 int filter_size = filter_params.tap; \
463 av1_get_interp_filter_kernel(filter_params, subpel_x_q4); \
[all …]
/dports/graphics/py-scikit-image/scikit-image-0.19.0/skimage/filters/
H A Dlpi_filter.py46 def __init__(self, impulse_response, **filter_params): argument
81 self.filter_params = filter_params
105 **self.filter_params).reshape(dshape)
133 def forward(data, impulse_response=None, filter_params={}, argument
166 predefined_filter = LPIFilter2D(impulse_response, **filter_params)
170 def inverse(data, impulse_response=None, filter_params={}, max_gain=2, argument
196 filt = LPIFilter2D(impulse_response, **filter_params)
210 def wiener(data, impulse_response=None, filter_params={}, K=0.25, argument
239 filt = LPIFilter2D(impulse_response, **filter_params)
253 filter_params={}): argument
/dports/lang/spidermonkey60/firefox-60.9.0/third_party/aom/av1/common/
H A Dconvolve.c34 int filter_size = filter_params.taps; in av1_convolve_horiz_c()
42 filter_params, x_q4 & SUBPEL_MASK); in av1_convolve_horiz_c()
65 int filter_size = filter_params.taps; in av1_convolve_horiz_scale()
98 int filter_size = filter_params.taps; in av1_convolve_vert_c()
130 int filter_size = filter_params.taps; in av1_convolve_vert_scale()
188 if (filter_params.taps == SUBPEL_TAPS) { in av1_convolve_horiz_facade()
209 if (filter_params.taps == SUBPEL_TAPS) { in av1_convolve_horiz_facade_c()
1179 int filter_size = filter_params.taps; in av1_highbd_convolve_horiz_c()
1210 int filter_size = filter_params.taps; in av1_highbd_convolve_horiz_scale()
1242 int filter_size = filter_params.taps; in av1_highbd_convolve_vert_c()
[all …]
/dports/net-mgmt/observium/observium/html/includes/authentication/
H A Dldap.inc.php66 $filter_params = array();
67 $filter_params[] = ldap_filter_create('objectClass', 'group');
69 $filter = ldap_filter_combine($filter_params);
385 $filter_params = array();
387 $filter_params[] = ldap_filter_create($config['auth_ldap_attr']['uid'], $username);
388 $filter = ldap_filter_combine($filter_params);
490 $filter_params = array();
495 $filter_params[] = ldap_filter_create($config['auth_ldap_attr']['uid'], $username);
510 $filter_params[] = ldap_filter_combine($group_params, '|');
514 $filter = ldap_filter_combine($filter_params);
[all …]
/dports/net-mgmt/pandorafms_console/pandorafms_console-6.0SP2/godmode/agentes/
H A Dplanned_downtime.list.php112 $filter_params = array(); variable
114 $search_text = $filter_params['search_text'] = (string) get_parameter('search_text');
115 $date_from = $filter_params['date_from'] = (string) get_parameter('date_from');
116 $date_to = $filter_params['date_to'] = (string) get_parameter('date_to');
117 $execution_type = $filter_params['execution_type'] = (string) get_parameter('execution_type');
118 $show_archived = $filter_params['archived'] = (bool) get_parameter('archived');
119 $agent_id = $filter_params['agent_id'] = (int) get_parameter('agent_id');
120 $agent_name = $filter_params['agent_name'] = (string) (!empty($agent_id) ? get_parameter('agent_…
121 $module_id = $filter_params['module_id'] = (int) get_parameter('module_name_hidden');
122 $module_name = $filter_params['module_name'] = (string) (!empty($module_id) ? get_parameter('modu…
[all …]
/dports/net/ryu/ryu-4.26/ryu/services/protocols/bgp/operator/
H A Dcommand.py143 filter_params = []
147 filter_params = params[ind:]
151 if len(filter_params) > 1:
153 action_resp = self.filter_resp(action_resp, filter_params[1:])
170 def filter_resp(self, action_resp, filter_params): argument
183 TextFilter.filter(action_resp.value, filter_params)
237 def filter(cls, action_resp_value, filter_params): argument
239 action, expected_value = filter_params
/dports/www/py-wfuzz/wfuzz-3.1.0/src/wfuzz/ui/console/
H A Dclparser.py352 def _parse_filters(self, optsd, filter_params): argument
380 filter_params["filter"] = optsd["--filter"][0]
383 filter_params["hc"] = optsd["--hc"][0].split(",")
385 filter_params["hw"] = optsd["--hw"][0].split(",")
387 filter_params["hl"] = optsd["--hl"][0].split(",")
389 filter_params["hh"] = optsd["--hh"][0].split(",")
391 filter_params["hs"] = optsd["--hs"][0]
393 filter_params["sc"] = optsd["--sc"][0].split(",")
395 filter_params["sw"] = optsd["--sw"][0].split(",")
397 filter_params["sl"] = optsd["--sl"][0].split(",")
[all …]
/dports/lang/spidermonkey60/firefox-60.9.0/third_party/aom/av1/common/x86/
H A Dav1_highbd_convolve_sse4.c72 InterpFilterParams filter_params = in av1_highbd_convolve_init_sse4_1() local
74 int taps = filter_params.taps; in av1_highbd_convolve_init_sse4_1()
75 const int16_t *filter_ptr = filter_params.filter_ptr; in av1_highbd_convolve_init_sse4_1()
81 InterpFilterParams filter_params = in av1_highbd_convolve_init_sse4_1() local
83 int taps = filter_params.taps; in av1_highbd_convolve_init_sse4_1()
84 const int16_t *filter_ptr = filter_params.filter_ptr; in av1_highbd_convolve_init_sse4_1()
288 const InterpFilterParams filter_params, in av1_highbd_convolve_horiz_sse4_1() argument
295 const int tapsNum = filter_params.taps; in av1_highbd_convolve_horiz_sse4_1()
307 hbd_get_subpel_filter_ver_signal_dir(filter_params, subpel_x_q4 - 1); in av1_highbd_convolve_horiz_sse4_1()
503 const int tapsNum = filter_params.taps; in av1_highbd_convolve_vert_sse4_1()
[all …]
/dports/multimedia/handbrake/ffmpeg-4.4/libavcodec/
H A Dralf.c42 VLC filter_params; member
112 ff_free_vlc(&ctx->sets[i].filter_params); in decode_close()
164 ret = init_ralf_vlc(&ctx->sets[i].filter_params, filter_param_def[i], in decode_init()
236 ctx->filter_params = get_vlc2(gb, set->filter_params.table, 9, 2); in decode_channel()
237 if (ctx->filter_params > 1) { in decode_channel()
238 ctx->filter_bits = (ctx->filter_params - 2) >> 6; in decode_channel()
239 ctx->filter_length = ctx->filter_params - (ctx->filter_bits << 6) - 1; in decode_channel()
242 if (ctx->filter_params == FILTER_RAW) { in decode_channel()
252 if (ctx->filter_params == FILTER_NONE) { in decode_channel()
257 if (ctx->filter_params > 1) { in decode_channel()
[all …]
/dports/multimedia/ffmpeg/ffmpeg-4.4.1/libavcodec/
H A Dralf.c42 VLC filter_params; member
112 ff_free_vlc(&ctx->sets[i].filter_params); in decode_close()
164 ret = init_ralf_vlc(&ctx->sets[i].filter_params, filter_param_def[i], in decode_init()
236 ctx->filter_params = get_vlc2(gb, set->filter_params.table, 9, 2); in decode_channel()
237 if (ctx->filter_params > 1) { in decode_channel()
238 ctx->filter_bits = (ctx->filter_params - 2) >> 6; in decode_channel()
239 ctx->filter_length = ctx->filter_params - (ctx->filter_bits << 6) - 1; in decode_channel()
242 if (ctx->filter_params == FILTER_RAW) { in decode_channel()
252 if (ctx->filter_params == FILTER_NONE) { in decode_channel()
257 if (ctx->filter_params > 1) { in decode_channel()
[all …]
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/ffmpeg/libavcodec/
H A Dralf.c42 VLC filter_params; member
112 ff_free_vlc(&ctx->sets[i].filter_params); in decode_close()
164 ret = init_ralf_vlc(&ctx->sets[i].filter_params, filter_param_def[i], in decode_init()
236 ctx->filter_params = get_vlc2(gb, set->filter_params.table, 9, 2); in decode_channel()
237 if (ctx->filter_params > 1) { in decode_channel()
238 ctx->filter_bits = (ctx->filter_params - 2) >> 6; in decode_channel()
239 ctx->filter_length = ctx->filter_params - (ctx->filter_bits << 6) - 1; in decode_channel()
242 if (ctx->filter_params == FILTER_RAW) { in decode_channel()
252 if (ctx->filter_params == FILTER_NONE) { in decode_channel()
257 if (ctx->filter_params > 1) { in decode_channel()
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/ffmpeg/libavcodec/
H A Dralf.c42 VLC filter_params; member
112 ff_free_vlc(&ctx->sets[i].filter_params); in decode_close()
164 ret = init_ralf_vlc(&ctx->sets[i].filter_params, filter_param_def[i], in decode_init()
236 ctx->filter_params = get_vlc2(gb, set->filter_params.table, 9, 2); in decode_channel()
237 if (ctx->filter_params > 1) { in decode_channel()
238 ctx->filter_bits = (ctx->filter_params - 2) >> 6; in decode_channel()
239 ctx->filter_length = ctx->filter_params - (ctx->filter_bits << 6) - 1; in decode_channel()
242 if (ctx->filter_params == FILTER_RAW) { in decode_channel()
252 if (ctx->filter_params == FILTER_NONE) { in decode_channel()
257 if (ctx->filter_params > 1) { in decode_channel()
[all …]
/dports/devel/aarch64-none-elf-gcc/gcc-8.4.0/contrib/
H A DChangeLog.tree-ssa24 * filter_params.pl: Surround comments in @verbatim/@endverbatim.
33 * filter_params.pl: Change most comments to start with /**.
37 * filter_params.pl: Filter ATTRIBUTE_UNUSED.
45 * filter_params.pl: New file.
/dports/lang/gcc9/gcc-9.4.0/contrib/
H A DChangeLog.tree-ssa24 * filter_params.pl: Surround comments in @verbatim/@endverbatim.
33 * filter_params.pl: Change most comments to start with /**.
37 * filter_params.pl: Filter ATTRIBUTE_UNUSED.
45 * filter_params.pl: New file.
/dports/devel/arm-none-eabi-gcc492/gcc-4.9.2/contrib/
H A DChangeLog.tree-ssa24 * filter_params.pl: Surround comments in @verbatim/@endverbatim.
33 * filter_params.pl: Change most comments to start with /**.
37 * filter_params.pl: Filter ATTRIBUTE_UNUSED.
45 * filter_params.pl: New file.
/dports/lang/gnat_util/gcc-6-20180516/contrib/
H A DChangeLog.tree-ssa24 * filter_params.pl: Surround comments in @verbatim/@endverbatim.
33 * filter_params.pl: Change most comments to start with /**.
37 * filter_params.pl: Filter ATTRIBUTE_UNUSED.
45 * filter_params.pl: New file.
/dports/lang/gcc11-devel/gcc-11-20211009/contrib/
H A DChangeLog.tree-ssa24 * filter_params.pl: Surround comments in @verbatim/@endverbatim.
33 * filter_params.pl: Change most comments to start with /**.
37 * filter_params.pl: Filter ATTRIBUTE_UNUSED.
45 * filter_params.pl: New file.
/dports/lang/gcc48/gcc-4.8.5/contrib/
H A DChangeLog.tree-ssa24 * filter_params.pl: Surround comments in @verbatim/@endverbatim.
33 * filter_params.pl: Change most comments to start with /**.
37 * filter_params.pl: Filter ATTRIBUTE_UNUSED.
45 * filter_params.pl: New file.
/dports/lang/gcc10-devel/gcc-10-20211008/contrib/
H A DChangeLog.tree-ssa24 * filter_params.pl: Surround comments in @verbatim/@endverbatim.
33 * filter_params.pl: Change most comments to start with /**.
37 * filter_params.pl: Filter ATTRIBUTE_UNUSED.
45 * filter_params.pl: New file.

12345678910>>...22