/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/wpa_supplicant/ |
H A D | pasn_supplicant.c | 452 struct ieee802_11_elems elems; in wpas_pasn_wd_fils_rx() local 495 if (ieee802_11_parse_elems(data, buf_len, &elems, 1) == ParseFailed) { in wpas_pasn_wd_fils_rx() 500 if (!elems.rsn_ie || !elems.fils_nonce || !elems.fils_nonce || in wpas_pasn_wd_fils_rx() 501 !elems.wrapped_data) { in wpas_pasn_wd_fils_rx() 506 ret = wpa_parse_wpa_ie(elems.rsn_ie - 2, elems.rsn_ie_len + 2, in wpas_pasn_wd_fils_rx() 525 wpa_hexdump(MSG_DEBUG, "PASN: FILS: ANonce", elems.fils_nonce, in wpas_pasn_wd_fils_rx() 527 os_memcpy(anonce, elems in wpas_pasn_wd_fils_rx() 1347 struct ieee802_11_elems elems; wpas_pasn_auth_rx() local [all...] |
H A D | wnm_sta.h | 69 const struct wpabuf *elems); 71 struct wpabuf *elems);
|
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/rsn_supp/ |
H A D | wpa.c | 3676 struct ieee802_11_elems elems; in fils_process_auth() local 3742 if (ieee802_11_parse_elems(pos, end - pos, &elems, 1) == ParseFailed) { in fils_process_auth() 3748 wpa_hexdump(MSG_DEBUG, "FILS: RSN element", elems.rsn_ie, in fils_process_auth() 3749 elems.rsn_ie_len); in fils_process_auth() 3750 if (!elems.rsn_ie || in fils_process_auth() 3751 wpa_parse_wpa_ie_rsn(elems.rsn_ie - 2, elems.rsn_ie_len + 2, in fils_process_auth() 3757 if (!elems.fils_nonce) { in fils_process_auth() 3761 os_memcpy(sm->fils_anonce, elems.fils_nonce, FILS_NONCE_LEN); in fils_process_auth() 3768 if (!elems in fils_process_auth() 4269 struct ieee802_11_elems elems; fils_process_assoc_resp() local 4561 struct ieee802_11_elems elems; owe_process_assoc_resp() local [all...] |
/kernel/linux/linux-6.6/net/mac80211/ |
H A D | mesh_hwmp.c | 925 struct ieee802_11_elems *elems; in mesh_rx_path_sel_frame() local 943 elems = ieee802_11_parse_elems(mgmt->u.action.u.mesh_action.variable, in mesh_rx_path_sel_frame() 945 if (!elems) in mesh_rx_path_sel_frame() 948 if (elems->preq) { in mesh_rx_path_sel_frame() 949 if (elems->preq_len != 37) in mesh_rx_path_sel_frame() 952 path_metric = hwmp_route_info_get(sdata, mgmt, elems->preq, in mesh_rx_path_sel_frame() 955 hwmp_preq_frame_process(sdata, mgmt, elems->preq, in mesh_rx_path_sel_frame() 958 if (elems->prep) { in mesh_rx_path_sel_frame() 959 if (elems->prep_len != 31) in mesh_rx_path_sel_frame() 962 path_metric = hwmp_route_info_get(sdata, mgmt, elems in mesh_rx_path_sel_frame() [all...] |
H A D | tdls.c | 1792 struct ieee802_11_elems *elems = NULL; in ieee80211_process_tdls_channel_switch_resp() local 1826 elems = ieee802_11_parse_elems(tf->u.chan_switch_resp.variable, in ieee80211_process_tdls_channel_switch_resp() 1828 if (!elems) { in ieee80211_process_tdls_channel_switch_resp() 1833 if (elems->parse_error) { in ieee80211_process_tdls_channel_switch_resp() 1839 if (!elems->ch_sw_timing || !elems->lnk_id) { in ieee80211_process_tdls_channel_switch_resp() 1847 !memcmp(elems->lnk_id->init_sta, sdata->vif.addr, ETH_ALEN); in ieee80211_process_tdls_channel_switch_resp() 1854 params.switch_time = le16_to_cpu(elems->ch_sw_timing->switch_time); in ieee80211_process_tdls_channel_switch_resp() 1855 params.switch_timeout = le16_to_cpu(elems->ch_sw_timing->switch_timeout); in ieee80211_process_tdls_channel_switch_resp() 1875 kfree(elems); in ieee80211_process_tdls_channel_switch_resp() 1884 struct ieee802_11_elems *elems; ieee80211_process_tdls_channel_switch_req() local [all...] |
/kernel/linux/linux-6.6/drivers/staging/media/atomisp/pci/isp/kernels/crop/crop_1.0/ |
H A D | ia_css_crop.host.c | 50 to->width_a_over_b = elems_a / to->port_b.elems; in ia_css_crop_config() 53 if (elems_a % to->port_b.elems != 0) in ia_css_crop_config()
|
/kernel/linux/linux-6.6/sound/soc/sof/ |
H A D | ipc3-dtrace.c | 150 struct sof_ipc_trace_filter_elem *elems) in ipc3_trace_update_filter() 156 size = struct_size(msg, elems, num_elems); in ipc3_trace_update_filter() 167 memcpy(&msg->elems[0], elems, num_elems * sizeof(*elems)); in ipc3_trace_update_filter() 187 struct sof_ipc_trace_filter_elem *elems = NULL; in dfsentry_trace_filter_write() local 203 ret = trace_filter_parse(sdev, string, &num_elems, &elems); in dfsentry_trace_filter_write() 208 ret = ipc3_trace_update_filter(sdev, num_elems, elems); in dfsentry_trace_filter_write() 217 kfree(elems); in dfsentry_trace_filter_write() 149 ipc3_trace_update_filter(struct snd_sof_dev *sdev, int num_elems, struct sof_ipc_trace_filter_elem *elems) ipc3_trace_update_filter() argument
|
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/ap/ |
H A D | mbo_ap.c | 84 struct ieee802_11_elems *elems) in mbo_ap_check_sta_assoc() 89 if (!hapd->conf->mbo_enabled || !elems->mbo) in mbo_ap_check_sta_assoc() 92 pos = elems->mbo + 4; in mbo_ap_check_sta_assoc() 93 len = elems->mbo_len - 4; in mbo_ap_check_sta_assoc() 83 mbo_ap_check_sta_assoc(struct hostapd_data *hapd, struct sta_info *sta, struct ieee802_11_elems *elems) mbo_ap_check_sta_assoc() argument
|
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/ap/ |
H A D | mbo_ap.c | 84 struct ieee802_11_elems *elems) in mbo_ap_check_sta_assoc() 89 if (!hapd->conf->mbo_enabled || !elems->mbo) in mbo_ap_check_sta_assoc() 92 pos = elems->mbo + 4; in mbo_ap_check_sta_assoc() 93 len = elems->mbo_len - 4; in mbo_ap_check_sta_assoc() 83 mbo_ap_check_sta_assoc(struct hostapd_data *hapd, struct sta_info *sta, struct ieee802_11_elems *elems) mbo_ap_check_sta_assoc() argument
|
/third_party/libwebsockets/minimal-examples/crypto/minimal-crypto-cose-key/ |
H A D | main.c | 39 int elems; in cose_key_dump() local 49 elems = LWS_GENCRYPTO_OCT_KEYEL_COUNT; in cose_key_dump() 53 elems = LWS_GENCRYPTO_RSA_KEYEL_COUNT; in cose_key_dump() 57 elems = LWS_GENCRYPTO_EC_KEYEL_COUNT; in cose_key_dump() 88 for (n = 0; n < elems; n++) { in cose_key_dump()
|
/third_party/mesa3d/src/panfrost/vulkan/ |
H A D | panvk_vX_image.c | 195 view->elems = size / blksz; in CreateBufferView() 210 cfg.width = view->elems; in CreateBufferView() 228 cfg.size = view->elems * blksz; in CreateBufferView() 233 cfg.s_dimension = view->elems; in CreateBufferView() 236 cfg.row_stride = view->elems * blksz; in CreateBufferView()
|
/third_party/mesa3d/src/gallium/auxiliary/gallivm/ |
H A D | lp_bld_nir_aos.c | 65 LLVMValueRef elems[16]; in lp_nir_aos_conv_const() local 77 elems[j * 4 + i] = in lp_nir_aos_conv_const() 83 elems[j * 4 + i] = in lp_nir_aos_conv_const() 87 return LLVMConstVector(elems, 16); in lp_nir_aos_conv_const() 303 LLVMValueRef elems[4]; in emit_load_const() local 312 elems[idx] = LLVMConstInt(LLVMInt32TypeInContext(gallivm->context), in emit_load_const() 316 outval[0] = LLVMConstVector(elems, nc); in emit_load_const()
|
H A D | lp_bld_gather.c | 509 LLVMValueRef elems[LP_MAX_VECTOR_WIDTH / 8]; in lp_build_gather() local 544 elems[i] = lp_build_gather_elem_vec(gallivm, length, in lp_build_gather() 549 res = LLVMBuildInsertElement(gallivm->builder, res, elems[i], index, ""); in lp_build_gather() 568 elems[i] = LLVMBuildBitCast(gallivm->builder, elems[i], in lp_build_gather() 571 res = lp_build_concat(gallivm, elems, dst_type, length); in lp_build_gather()
|
/kernel/linux/linux-5.10/tools/testing/selftests/bpf/progs/ |
H A D | bpf_iter_sockmap.c | 32 __u32 elems = 0; variable 45 elems++; in copy()
|
/kernel/linux/linux-6.6/tools/testing/selftests/bpf/progs/ |
H A D | bpf_iter_sockmap.c | 32 __u32 elems = 0; variable 45 elems++; in copy()
|
/third_party/alsa-lib/src/mixer/ |
H A D | mixer.c | 77 INIT_LIST_HEAD(&mixer->elems); in snd_mixer_open() 428 list_add_tail(&elem->list, &mixer->elems); in snd_mixer_elem_add() 621 assert(list_empty(&mixer->elems)); in snd_mixer_close() 664 INIT_LIST_HEAD(&mixer->elems); in snd_mixer_sort() 667 list_add_tail(&mixer->pelems[k]->list, &mixer->elems); in snd_mixer_sort() 802 if (list_empty(&mixer->elems)) in snd_mixer_first_elem() 804 return list_entry(mixer->elems.next, snd_mixer_elem_t, list); in snd_mixer_first_elem() 815 if (list_empty(&mixer->elems)) in snd_mixer_last_elem() 817 return list_entry(mixer->elems.prev, snd_mixer_elem_t, list); in snd_mixer_last_elem() 828 if (elem->list.next == &elem->class->mixer->elems) in snd_mixer_elem_next() [all...] |
/kernel/linux/linux-5.10/net/mac80211/ |
H A D | mesh_hwmp.c | 911 struct ieee802_11_elems elems; in mesh_rx_path_sel_frame() local 930 len - baselen, false, &elems, mgmt->bssid, NULL); in mesh_rx_path_sel_frame() 932 if (elems.preq) { in mesh_rx_path_sel_frame() 933 if (elems.preq_len != 37) in mesh_rx_path_sel_frame() 936 path_metric = hwmp_route_info_get(sdata, mgmt, elems.preq, in mesh_rx_path_sel_frame() 939 hwmp_preq_frame_process(sdata, mgmt, elems.preq, in mesh_rx_path_sel_frame() 942 if (elems.prep) { in mesh_rx_path_sel_frame() 943 if (elems.prep_len != 31) in mesh_rx_path_sel_frame() 946 path_metric = hwmp_route_info_get(sdata, mgmt, elems.prep, in mesh_rx_path_sel_frame() 949 hwmp_prep_frame_process(sdata, mgmt, elems in mesh_rx_path_sel_frame() [all...] |
H A D | tdls.c | 1687 struct ieee802_11_elems elems; in ieee80211_process_tdls_channel_switch_resp() local 1722 skb->len - baselen, false, &elems, in ieee80211_process_tdls_channel_switch_resp() 1724 if (elems.parse_error) { in ieee80211_process_tdls_channel_switch_resp() 1730 if (!elems.ch_sw_timing || !elems.lnk_id) { in ieee80211_process_tdls_channel_switch_resp() 1738 !memcmp(elems.lnk_id->init_sta, sdata->vif.addr, ETH_ALEN); in ieee80211_process_tdls_channel_switch_resp() 1745 params.switch_time = le16_to_cpu(elems.ch_sw_timing->switch_time); in ieee80211_process_tdls_channel_switch_resp() 1746 params.switch_timeout = le16_to_cpu(elems.ch_sw_timing->switch_timeout); in ieee80211_process_tdls_channel_switch_resp() 1774 struct ieee802_11_elems elems; in ieee80211_process_tdls_channel_switch_req() local 1835 skb->len - baselen, false, &elems, NUL in ieee80211_process_tdls_channel_switch_req() [all...] |
/kernel/linux/linux-5.10/drivers/staging/media/atomisp/pci/isp/kernels/fpn/fpn_1.0/ |
H A D | ia_css_fpn.host.c | 64 to->width_a_over_b = elems_a / to->port_b.elems; in ia_css_fpn_config() 67 assert(elems_a % to->port_b.elems == 0); in ia_css_fpn_config()
|
/kernel/linux/linux-5.10/drivers/staging/media/atomisp/pci/isp/kernels/tnr/tnr_1.0/ |
H A D | ia_css_tnr.host.c | 85 to->width_a_over_b = elems_a / to->port_b.elems; in ia_css_tnr_config() 93 assert(elems_a % to->port_b.elems == 0); in ia_css_tnr_config()
|
/kernel/linux/linux-6.6/drivers/staging/media/atomisp/pci/isp/kernels/fpn/fpn_1.0/ |
H A D | ia_css_fpn.host.c | 65 to->width_a_over_b = elems_a / to->port_b.elems; in ia_css_fpn_config() 68 if (elems_a % to->port_b.elems != 0) in ia_css_fpn_config()
|
/kernel/linux/linux-6.6/drivers/staging/media/atomisp/pci/isp/kernels/tnr/tnr_1.0/ |
H A D | ia_css_tnr.host.c | 85 to->width_a_over_b = elems_a / to->port_b.elems; in ia_css_tnr_config() 93 if (elems_a % to->port_b.elems != 0) in ia_css_tnr_config()
|
/third_party/wpa_supplicant/wpa_supplicant-2.9/wpa_supplicant/ |
H A D | wnm_sta.h | 69 const struct wpabuf *elems); 71 struct wpabuf *elems);
|
/third_party/skia/third_party/externals/abseil-cpp/absl/random/ |
H A D | benchmarks.cc | 149 template <typename Engine, size_t elems> 152 std::vector<uint32_t> v(elems); in BM_Shuffle() 153 while (state.KeepRunningBatch(elems)) { in BM_Shuffle() 159 template <typename Engine, size_t elems> 162 std::vector<uint32_t> v(elems); in BM_ShuffleReuse() 164 while (state.KeepRunningBatch(elems)) { in BM_ShuffleReuse()
|
/third_party/ffmpeg/libavcodec/ |
H A D | avpacket.c | 200 int i, elems = pkt->side_data_elems; in av_packet_add_side_data() local 202 for (i = 0; i < elems; i++) { in av_packet_add_side_data() 213 if ((unsigned)elems + 1 > AV_PKT_DATA_NB) in av_packet_add_side_data() 216 tmp = av_realloc(pkt->side_data, (elems + 1) * sizeof(*tmp)); in av_packet_add_side_data() 221 pkt->side_data[elems].data = data; in av_packet_add_side_data() 222 pkt->side_data[elems].size = size; in av_packet_add_side_data() 223 pkt->side_data[elems].type = type; in av_packet_add_side_data()
|