/third_party/wpa_supplicant/wpa_supplicant-2.9/src/ap/ |
D | dfs.c | 512 int chan_offset, int chan_width, int cf1, in set_dfs_state() argument 535 frequency = cf1; in set_dfs_state() 539 frequency = cf1 - 10; in set_dfs_state() 543 frequency = cf1 - 30; in set_dfs_state() 547 frequency = cf1 - 70; in set_dfs_state() 567 int chan_width, int cf1, int cf2) in dfs_are_channels_overlapped() argument 591 frequency = cf1; in dfs_are_channels_overlapped() 595 frequency = cf1 - 10; in dfs_are_channels_overlapped() 599 frequency = cf1 - 30; in dfs_are_channels_overlapped() 603 frequency = cf1 - 70; in dfs_are_channels_overlapped() [all …]
|
D | dfs.h | 16 int cf1, int cf2); 19 int cf1, int cf2); 23 int cf1, int cf2); 26 int chan_offset, int chan_width, int cf1, int cf2); 30 int cf1, int cf2);
|
D | drv_callbacks.c | 788 int offset, int width, int cf1, int cf2, in hostapd_event_ch_switch() argument 803 width, channel_width_to_string(width), cf1, cf2); in hostapd_event_ch_switch() 842 if (cf1 > 5000) in hostapd_event_ch_switch() 843 seg0_idx = (cf1 - 5000) / 5; in hostapd_event_ch_switch() 848 ieee80211_freq_to_chan(cf1, &seg0_idx); in hostapd_event_ch_switch() 881 cf1, cf2, is_dfs); in hostapd_event_ch_switch() 1527 radar->cf1, radar->cf2); in hostapd_event_dfs_radar_detected() 1537 radar->cf1, radar->cf2); in hostapd_event_dfs_pre_cac_expired() 1547 radar->cf1, radar->cf2); in hostapd_event_dfs_cac_finished() 1557 radar->cf1, radar->cf2); in hostapd_event_dfs_cac_aborted() [all …]
|
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/ap/ |
D | dfs.c | 598 int chan_offset, int chan_width, int cf1, in set_dfs_state() argument 622 frequency = cf1; in set_dfs_state() 626 frequency = cf1 - 10; in set_dfs_state() 630 frequency = cf1 - 30; in set_dfs_state() 634 frequency = cf1 - 30; in set_dfs_state() 639 frequency = cf1 - 70; in set_dfs_state() 664 int chan_width, int cf1, int cf2) in dfs_are_channels_overlapped() argument 688 frequency = cf1; in dfs_are_channels_overlapped() 692 frequency = cf1 - 10; in dfs_are_channels_overlapped() 696 frequency = cf1 - 30; in dfs_are_channels_overlapped() [all …]
|
D | dfs.h | 16 int cf1, int cf2); 19 int cf1, int cf2); 23 int cf1, int cf2); 26 int chan_offset, int chan_width, int cf1, int cf2); 31 int cf1, int cf2);
|
D | drv_callbacks.c | 863 int offset, int width, int cf1, int cf2, in hostapd_event_ch_switch() argument 877 width, channel_width_to_string(width), cf1, cf2); in hostapd_event_ch_switch() 916 if (cf1 == 5935) in hostapd_event_ch_switch() 917 seg0_idx = (cf1 - 5925) / 5; in hostapd_event_ch_switch() 918 else if (cf1 > 5950) in hostapd_event_ch_switch() 919 seg0_idx = (cf1 - 5950) / 5; in hostapd_event_ch_switch() 920 else if (cf1 > 5000) in hostapd_event_ch_switch() 921 seg0_idx = (cf1 - 5000) / 5; in hostapd_event_ch_switch() 931 ieee80211_freq_to_chan(cf1, &seg0_idx); in hostapd_event_ch_switch() 988 cf1, cf2, is_dfs); in hostapd_event_ch_switch() [all …]
|
/third_party/flutter/skia/gm/ |
D | runtimecolorfilter.cpp | 54 auto cf1 = fact.make(data); variable 56 p.setColorFilter(cf1); 62 wb.writeFlattenable(cf1.get()); 79 auto cf1 = fact.make(data); variable 81 p.setColorFilter(cf1); 87 wb.writeFlattenable(cf1.get());
|
D | srgb.cpp | 25 auto cf1 = SkColorFilters::LinearToSRGBGamma(); variable 33 p.setColorFilter(cf1); 35 p.setColorFilter(cf1->makeComposed(cf0));
|
D | mixercolorfilter.cpp | 94 auto cf1 = MakeTintColorFilter(0xff003000, 0xff00a000); // green tint in onDraw() local 96 this->mixRow(canvas, paint, nullptr, cf1); in onDraw() 98 this->mixRow(canvas, paint, cf0, cf1); in onDraw() 106 sk_sp<SkColorFilter> cf0, sk_sp<SkColorFilter> cf1) { in mixRow() argument 112 SkColorFilters::Lerp(static_cast<float>(i) / (fTileCount - 1), cf0, cf1)); in mixRow()
|
D | imagefiltersgraph.cpp | 132 sk_sp<SkColorFilter> cf1(SkColorFilters::Blend(SK_ColorBLUE, SkBlendMode::kSrcIn)); in onDraw() local 137 std::move(cf1), nullptr, &outerRect)); in onDraw()
|
/third_party/skia/gm/ |
D | mixercolorfilter.cpp | 93 auto cf1 = MakeTintColorFilter(0xff003000, 0xff00a000); // green tint in onDraw() local 95 this->mixRow(canvas, paint, nullptr, cf1); in onDraw() 97 this->mixRow(canvas, paint, cf0, cf1); in onDraw() 105 sk_sp<SkColorFilter> cf0, sk_sp<SkColorFilter> cf1) { in mixRow() argument 121 paint.setColorFilter(SkColorFilters::Lerp(t, cf0, cf1)); in mixRow()
|
D | srgb.cpp | 25 auto cf1 = SkColorFilters::LinearToSRGBGamma(); variable 34 p.setColorFilter(cf1); 36 p.setColorFilter(cf1->makeComposed(cf0));
|
D | composecolorfilter.cpp | 91 auto cf1 = MakeTintColorFilter(0xff003000, 0xff00a000, useSkSL); // green tint variable 97 paint.setColorFilter(cf1);
|
D | imagefiltersgraph.cpp | 131 sk_sp<SkColorFilter> cf1(SkColorFilters::Blend(SK_ColorBLUE, SkBlendMode::kSrcIn)); in onDraw() local 136 std::move(cf1), nullptr, &outerRect)); in onDraw()
|
/third_party/flutter/skia/src/core/ |
D | SkColorFilter.cpp | 260 SkMixerColorFilter(sk_sp<SkColorFilter> cf0, sk_sp<SkColorFilter> cf1, float weight) in SkMixerColorFilter() argument 261 : fCF0(std::move(cf0)), fCF1(std::move(cf1)), fWeight(weight) in SkMixerColorFilter() 333 sk_sp<SkColorFilter> cf1(buffer.readColorFilter()); in CreateProc() local 335 return SkColorFilters::Lerp(weight, std::move(cf0), std::move(cf1)); in CreateProc() 339 sk_sp<SkColorFilter> cf1) { in Lerp() argument 340 if (!cf0 && !cf1) { in Lerp() 347 if (cf0 == cf1) { in Lerp() 355 return cf1; in Lerp() 359 ? new SkMixerColorFilter(std::move(cf0), std::move(cf1), weight) in Lerp() 360 : new SkMixerColorFilter(std::move(cf1), nullptr, 1 - weight)); in Lerp()
|
/third_party/skia/samplecode/ |
D | SampleMixer.cpp | 40 void dodraw(SkCanvas* canvas, sk_sp<SkColorFilter> cf0, sk_sp<SkColorFilter> cf1, float gap) { in dodraw() argument 45 paint.setColorFilter(SkColorFilters::Lerp(fWeight, cf0, cf1)); in dodraw() 49 paint.setColorFilter(cf1); in dodraw()
|
D | SampleImageFilterDAG.cpp | 331 sk_sp<SkImageFilter> cf1 = SkImageFilters::ColorFilter( in onDrawContent() local 334 sk_sp<SkImageFilter> merge0 = SkImageFilters::Merge(std::move(blur1), std::move(cf1)); in onDrawContent()
|
/third_party/flutter/skia/samplecode/ |
D | SampleMixer.cpp | 40 void dodraw(SkCanvas* canvas, sk_sp<SkColorFilter> cf0, sk_sp<SkColorFilter> cf1, float gap) { in dodraw() argument 45 paint.setColorFilter(SkColorFilters::Lerp(fWeight, cf0, cf1)); in dodraw() 48 paint.setColorFilter(cf1); in dodraw()
|
/third_party/skia/src/core/ |
D | SkColorFilter.cpp | 455 sk_sp<SkColorFilter> cf1) { in Lerp() argument 457 if (!cf0 && !cf1) { in Lerp() 464 if (cf0 == cf1) { in Lerp() 472 return cf1; in Lerp() 486 sk_sp<SkColorFilter> inputs[] = {cf0,cf1}; in Lerp()
|
/third_party/ffmpeg/libavfilter/ |
D | af_afade.c | 49 uint8_t * const *cf1, 423 uint8_t * const *cf1, \ 435 const type *s1 = (type *)cf1[c]; \ 444 uint8_t * const *cf1, \ 450 const type *s1 = (type *)cf1[0]; \
|
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/drivers/ |
D | driver_nl80211_event.c | 508 static int calculate_chan_offset(int width, int freq, int cf1, int cf2) in calculate_chan_offset() argument 517 freq1 = cf1 - 10; in calculate_chan_offset() 520 freq1 = cf1 - 30; in calculate_chan_offset() 523 freq1 = cf1 - 70; in calculate_chan_offset() 538 struct nlattr *cf1, struct nlattr *cf2, in mlme_event_ch_switch() argument 578 } else if (bw && cf1) { in mlme_event_ch_switch() 582 nla_get_u32(cf1), in mlme_event_ch_switch() 594 if (cf1) in mlme_event_ch_switch() 595 data.ch_switch.cf1 = nla_get_u32(cf1); in mlme_event_ch_switch() 1616 data.dfs_event.cf1 = nla_get_u32(tb[NL80211_ATTR_CENTER_FREQ1]); in nl80211_radar_event() [all …]
|
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/drivers/ |
D | driver_nl80211_event.c | 650 static int calculate_chan_offset(int width, int freq, int cf1, int cf2) in calculate_chan_offset() argument 659 freq1 = cf1 - 10; in calculate_chan_offset() 662 freq1 = cf1 - 30; in calculate_chan_offset() 665 freq1 = cf1 - 70; in calculate_chan_offset() 668 freq1 = cf1 - 30; in calculate_chan_offset() 686 struct nlattr *cf1, struct nlattr *cf2, in mlme_event_ch_switch() argument 726 } else if (bw && cf1) { in mlme_event_ch_switch() 730 nla_get_u32(cf1), in mlme_event_ch_switch() 744 if (cf1) in mlme_event_ch_switch() 745 data.ch_switch.cf1 = nla_get_u32(cf1); in mlme_event_ch_switch() [all …]
|
/third_party/wpa_supplicant/wpa_supplicant-2.9/wpa_supplicant/ |
D | ap.c | 1395 int offset, int width, int cf1, int cf2, int finished) in wpas_ap_ch_switch() argument 1407 offset, width, cf1, cf2, finished); in wpas_ap_ch_switch() 1613 radar->cf1, radar->cf2); in wpas_ap_event_dfs_radar_detected() 1629 radar->chan_width, radar->cf1, radar->cf2); in wpas_ap_event_dfs_cac_started() 1645 radar->chan_width, radar->cf1, radar->cf2); in wpas_ap_event_dfs_cac_finished() 1661 radar->chan_width, radar->cf1, radar->cf2); in wpas_ap_event_dfs_cac_aborted() 1677 radar->chan_width, radar->cf1, radar->cf2); in wpas_ap_event_dfs_cac_nop_finished()
|
/third_party/gstreamer/gstplugins_base/tests/check/elements/ |
D | audioresample.c | 403 GstElement *pipeline, *src, *cf1, *ar, *cf2, *sink; in GST_START_TEST() local 411 cf1 = gst_check_setup_element ("capsfilter"); in GST_START_TEST() 418 g_object_set (cf1, "caps", caps, NULL); in GST_START_TEST() 429 gst_bin_add_many (GST_BIN (pipeline), src, cf1, ar, cf2, sink, NULL); in GST_START_TEST() 430 fail_if (!gst_element_link_many (src, cf1, ar, cf2, sink, NULL)); in GST_START_TEST()
|
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/wpa_supplicant/ |
D | ap.c | 1628 int offset, int width, int cf1, int cf2, int finished) in wpas_ap_ch_switch() argument 1640 offset, width, cf1, cf2, finished); in wpas_ap_ch_switch() 1872 radar->cf1, radar->cf2); in wpas_ap_event_dfs_radar_detected() 1888 radar->chan_width, radar->cf1, radar->cf2); in wpas_ap_event_dfs_cac_started() 1904 radar->chan_width, radar->cf1, radar->cf2); in wpas_ap_event_dfs_cac_finished() 1920 radar->chan_width, radar->cf1, radar->cf2); in wpas_ap_event_dfs_cac_aborted() 1936 radar->chan_width, radar->cf1, radar->cf2); in wpas_ap_event_dfs_cac_nop_finished()
|