Home
last modified time | relevance | path

Searched refs:kde (Results 1 – 25 of 348) sorted by relevance

12345678910>>...14

/external/wpa_supplicant_8/src/rsn_supp/
Dtdls.c953 struct wpa_eapol_ie_parse kde; in wpa_tdls_recv_teardown() local
986 if (wpa_supplicant_parse_ies((const u8 *) pos, ielen, &kde) < 0) in wpa_tdls_recv_teardown()
990 if (kde.lnkid == NULL || kde.lnkid_len < 3 * ETH_ALEN) { in wpa_tdls_recv_teardown()
995 lnkid = (struct wpa_tdls_lnkid *) kde.lnkid; in wpa_tdls_recv_teardown()
1000 if (kde.ftie == NULL || kde.ftie_len < sizeof(*ftie)) { in wpa_tdls_recv_teardown()
1005 ftie = (struct wpa_tdls_ftie *) kde.ftie; in wpa_tdls_recv_teardown()
1011 ftie, kde.ftie_len) < 0) { in wpa_tdls_recv_teardown()
1542 struct wpa_eapol_ie_parse kde; in wpa_tdls_process_discovery_request() local
1567 &kde) < 0) { in wpa_tdls_process_discovery_request()
1572 if (!kde.lnkid) { in wpa_tdls_process_discovery_request()
[all …]
Dwpa.c684 struct wpa_eapol_ie_parse *kde) in wpa_handle_ext_key_id() argument
689 if (!kde->key_id) { in wpa_handle_ext_key_id()
697 key_id = kde->key_id[0] & 0x03; in wpa_handle_ext_key_id()
708 if (kde->key_id && (kde->key_id[0] & 0x03)) { in wpa_handle_ext_key_id()
714 if (kde->key_id) { in wpa_handle_ext_key_id()
728 static u8 * rsn_add_kde(u8 *pos, u32 kde, const u8 *data, size_t data_len) in rsn_add_kde() argument
732 RSN_SELECTOR_PUT(pos, kde); in rsn_add_kde()
871 u8 *kde, *kde_buf = NULL; in wpa_supplicant_process_1_of_4() local
955 kde = sm->assoc_wpa_ie; in wpa_supplicant_process_1_of_4()
965 os_memcpy(kde_buf, kde, kde_len); in wpa_supplicant_process_1_of_4()
[all …]
/external/rust/crates/criterion/src/
Dkde.rs1 use crate::stats::univariate::kde::kernel::Gaussian;
2 use crate::stats::univariate::kde::{Bandwidth, Kde};
23 let kde = Kde::new(sample, Gaussian, Bandwidth::Silverman); in sweep_and_estimate() localVariable
24 let h = kde.bandwidth(); in sweep_and_estimate()
37 let ys = kde.map(&xs); in sweep_and_estimate()
38 let point_estimate = kde.estimate(point_to_estimate); in sweep_and_estimate()
/external/rust/crates/criterion/src/stats/univariate/kde/
Dmod.rs101 use crate::stats::univariate::kde::kernel::Gaussian;
102 use crate::stats::univariate::kde::{Bandwidth, Kde};
115 let kde = Kde::new(data, Gaussian, Bandwidth::Silverman); localVariable
116 let h = kde.bandwidth();
123 let mut y = kde.estimate(a);
129 y = kde.estimate(x);
/external/wpa_supplicant_8/src/ap/
Dwpa_auth.c889 struct wpa_eapol_ie_parse *kde) in ft_check_msg_2_of_4() argument
894 if (wpa_parse_wpa_ie_rsn(kde->rsn_ie, kde->rsn_ie_len, &ie) < 0 || in ft_check_msg_2_of_4()
905 if (!kde->mdie || !kde->ftie) { in ft_check_msg_2_of_4()
908 kde->mdie ? "FTIE" : "MDIE"); in ft_check_msg_2_of_4()
912 mdie = (struct rsn_mdie *) (kde->mdie + 2); in ft_check_msg_2_of_4()
913 if (kde->mdie[1] < sizeof(struct rsn_mdie) || in ft_check_msg_2_of_4()
921 (kde->ftie[1] != sm->assoc_resp_ftie[1] || in ft_check_msg_2_of_4()
922 os_memcmp(kde->ftie, sm->assoc_resp_ftie, in ft_check_msg_2_of_4()
926 kde->ftie, kde->ftie_len); in ft_check_msg_2_of_4()
1076 struct wpa_eapol_ie_parse kde; in wpa_receive() local
[all …]
Dwpa_auth_ie.h12 u8 * wpa_add_kde(u8 *pos, u32 kde, const u8 *data, size_t data_len,
/external/vulkan-validation-layers/cmake/
DFindX11_XCB.cmake9 # Copyright (c) 2011 Fredrik Höglund <fredrik@kde.org>
10 # Copyright (c) 2008 Helio Chissini de Castro, <helio@kde.org>
11 # Copyright (c) 2007 Matthias Kretz, <kretz@kde.org>
DCopyright_cmake.txt37 * Adriaan de Groot <groot@kde.org>
39 * Alexander Neundorf <neundorf@kde.org>
49 * Brad Hards <bradh@kde.org>
61 * Helio Chissini de Castro <helio@kde.org>
70 * Matthias Kretz <kretz@kde.org>
/external/oss-fuzz/projects/kimageformats/
DDockerfile21 RUN git clone --depth 1 https://invent.kde.org/frameworks/extra-cmake-modules.git
23 RUN git clone --depth 1 https://invent.kde.org/frameworks/karchive.git
24 RUN git clone --depth 1 https://invent.kde.org/frameworks/kimageformats.git
/external/cronet/third_party/icu/source/data/lang/
Dkde.txt4 kde{
27 kde{"Chimakonde"}
/external/eigen/bench/btl/cmake/
DFindBlitz.cmake8 # Copyright (c) 2006, Montel Laurent, <montel@kde.org>
9 # Copyright (c) 2007, Allen Winter, <winter@kde.org>
/external/icu/icu4c/source/data/lang/
Dkde.txt4 kde{
27 kde{"Chimakonde"}
/external/pcre/cmake/
DFindReadline.cmake1 # from http://websvn.kde.org/trunk/KDE/kdeedu/cmake/modules/FindReadline.cmake
2 # http://websvn.kde.org/trunk/KDE/kdeedu/cmake/modules/COPYING-CMAKE-SCRIPTS
/external/rust/crates/criterion/src/plot/gnuplot_backend/
Dt_test.rs7 use crate::kde;
18 let (xs, ys) = kde::sweep(&comparison.t_distribution, KDE_POINTS, None); in t_test()
Dpdf.rs2 use crate::kde;
36 let (xs, ys) = kde::sweep(scaled_avg_times, KDE_POINTS, None); in pdf()
241 let (xs, ys, mean_y) = kde::sweep_and_estimate(scaled_avg_times, KDE_POINTS, None, mean); in pdf_small()
311 kde::sweep_and_estimate(scaled_base_avg_times, KDE_POINTS, None, base_mean); in pdf_comparison_figure()
313 kde::sweep_and_estimate(scaled_new_avg_times, KDE_POINTS, None, new_mean); in pdf_comparison_figure()
Ddistributions.rs11 use crate::kde;
35 let (kde_xs, ys) = kde::sweep(scaled_xs_sample, KDE_POINTS, Some((start, end))); in abs_distribution()
171 let (xs, ys) = kde::sweep(distribution, KDE_POINTS, Some((start, end))); in rel_distribution()
/external/oss-fuzz/projects/kcodecs/
DDockerfile21 RUN git clone --depth 1 https://invent.kde.org/frameworks/kcodecs.git
22 RUN git clone --depth 1 https://invent.kde.org/frameworks/extra-cmake-modules.git
/external/oss-fuzz/projects/karchive/
DDockerfile24 RUN git clone --depth 1 https://invent.kde.org/frameworks/extra-cmake-modules.git
25 RUN git clone --depth 1 https://invent.kde.org/frameworks/karchive.git
/external/rust/crates/criterion/src/plot/plotters_backend/
Dpdf.rs33 kde::sweep_and_estimate(scaled_base_avg_times, KDE_POINTS, None, base_mean); in pdf_comparison_figure()
35 kde::sweep_and_estimate(scaled_new_avg_times, KDE_POINTS, None, new_mean); in pdf_comparison_figure()
126 let (xs, ys, mean_y) = kde::sweep_and_estimate(scaled_avg_times, KDE_POINTS, None, mean); in pdf_small()
200 let (xs, ys) = kde::sweep(scaled_avg_times, KDE_POINTS, None); in pdf()
/external/cronet/third_party/icu/source/data/unit/
Dkde.txt4 kde{
/external/cronet/third_party/icu/source/data/zone/
Dkde.txt4 kde{
/external/icu/icu4c/source/data/unit/
Dkde.txt4 kde{
/external/icu/icu4c/source/data/zone/
Dkde.txt4 kde{
/external/llvm/utils/kate/
DREADME8 this file to ~/.kde/share/apps/katepart/syntax (or better yet, symlink it).
/external/wayland-protocols/freedesktop.org/
DMEMBERS.md6 - KWin: Eike Hein <hein@kde.org>,

12345678910>>...14