/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 …]
|
D | hostapd.h | 635 int offset, int width, int cf1, int cf2,
|
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/ap/ |
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 | dfs.c | 603 int chan_offset, int chan_width, int cf1, in set_dfs_state() argument 627 frequency = cf1; in set_dfs_state() 631 frequency = cf1 - 10; in set_dfs_state() 635 frequency = cf1 - 30; in set_dfs_state() 639 frequency = cf1 - 30; in set_dfs_state() 644 frequency = cf1 - 70; in set_dfs_state() 669 int chan_width, int cf1, int cf2) in dfs_are_channels_overlapped() argument 693 frequency = cf1; in dfs_are_channels_overlapped() 697 frequency = cf1 - 10; in dfs_are_channels_overlapped() 701 frequency = cf1 - 30; in dfs_are_channels_overlapped() [all …]
|
D | drv_callbacks.c | 876 int offset, int width, int cf1, int cf2, in hostapd_event_ch_switch() argument 890 width, channel_width_to_string(width), cf1, cf2); in hostapd_event_ch_switch() 929 if (cf1 == 5935) in hostapd_event_ch_switch() 930 seg0_idx = (cf1 - 5925) / 5; in hostapd_event_ch_switch() 931 else if (cf1 > 5950) in hostapd_event_ch_switch() 932 seg0_idx = (cf1 - 5950) / 5; in hostapd_event_ch_switch() 933 else if (cf1 > 5000) in hostapd_event_ch_switch() 934 seg0_idx = (cf1 - 5000) / 5; in hostapd_event_ch_switch() 944 ieee80211_freq_to_chan(cf1, &seg0_idx); in hostapd_event_ch_switch() 1001 cf1, cf2, is_dfs); in hostapd_event_ch_switch() [all …]
|
/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/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/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 | 657 static int calculate_chan_offset(int width, int freq, int cf1, int cf2) in calculate_chan_offset() argument 666 freq1 = cf1 - 10; in calculate_chan_offset() 669 freq1 = cf1 - 30; in calculate_chan_offset() 672 freq1 = cf1 - 70; in calculate_chan_offset() 675 freq1 = cf1 - 30; in calculate_chan_offset() 693 struct nlattr *cf1, struct nlattr *cf2, in mlme_event_ch_switch() argument 733 } else if (bw && cf1) { in mlme_event_ch_switch() 737 nla_get_u32(cf1), in mlme_event_ch_switch() 751 if (cf1) in mlme_event_ch_switch() 752 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()
|
D | ap.h | 57 int offset, int width, int cf1, int cf2, int 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 | 1639 int offset, int width, int cf1, int cf2, int finished) in wpas_ap_ch_switch() argument 1651 offset, width, cf1, cf2, finished); in wpas_ap_ch_switch() 1883 radar->cf1, radar->cf2); in wpas_ap_event_dfs_radar_detected() 1899 radar->chan_width, radar->cf1, radar->cf2); in wpas_ap_event_dfs_cac_started() 1915 radar->chan_width, radar->cf1, radar->cf2); in wpas_ap_event_dfs_cac_finished() 1931 radar->chan_width, radar->cf1, radar->cf2); in wpas_ap_event_dfs_cac_aborted() 1947 radar->chan_width, radar->cf1, radar->cf2); in wpas_ap_event_dfs_cac_nop_finished()
|
D | ap.h | 57 int offset, int width, int cf1, int cf2, int finished);
|
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/test/fuzz/ |
D | fuzzerutil_test.cpp | 92 OpName %20 "cf1" in TEST() 395 OpName %20 "cf1" in TEST()
|
/third_party/skia/third_party/externals/spirv-tools/test/fuzz/ |
D | fuzzerutil_test.cpp | 92 OpName %20 "cf1" in TEST() 395 OpName %20 "cf1" in TEST()
|
/third_party/spirv-tools/test/fuzz/ |
D | fuzzerutil_test.cpp | 92 OpName %20 "cf1" in TEST() 395 OpName %20 "cf1" in TEST()
|