/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/common/ |
H A D | ieee802_11_common.c | 24 struct ieee802_11_elems *elems, in ieee802_11_parse_vendor_specific() 50 elems->wpa_ie = pos; in ieee802_11_parse_vendor_specific() 51 elems->wpa_ie_len = elen; in ieee802_11_parse_vendor_specific() 71 elems->wmm = pos; in ieee802_11_parse_vendor_specific() 72 elems->wmm_len = elen; in ieee802_11_parse_vendor_specific() 75 elems->wmm_tspec = pos; in ieee802_11_parse_vendor_specific() 76 elems->wmm_tspec_len = elen; in ieee802_11_parse_vendor_specific() 88 elems->wps_ie = pos; in ieee802_11_parse_vendor_specific() 89 elems->wps_ie_len = elen; in ieee802_11_parse_vendor_specific() 104 elems in ieee802_11_parse_vendor_specific() 23 ieee802_11_parse_vendor_specific(const u8 *pos, size_t elen, struct ieee802_11_elems *elems, int show_errors) ieee802_11_parse_vendor_specific() argument 211 ieee802_11_parse_mle(const u8 *pos, size_t elen, size_t **total_len, struct ieee802_11_elems *elems, int show_errors) ieee802_11_parse_mle() argument 256 ieee802_11_fragments_length(struct ieee802_11_elems *elems, const u8 *start, size_t len) ieee802_11_fragments_length() argument 274 ieee802_11_parse_extension(const u8 *pos, size_t elen, struct ieee802_11_elems *elems, const u8 *start, size_t len, int show_errors) ieee802_11_parse_extension() argument 475 ieee802_11_parse_elems(const u8 *start, size_t len, struct ieee802_11_elems *elems, int show_errors) ieee802_11_parse_elems() argument 1691 supp_rates_11b_only(struct ieee802_11_elems *elems) supp_rates_11b_only() argument 2890 ieee802_11_defrag_data(const struct ieee802_11_elems *elems, u8 eid, u8 eid_ext, const u8 *data, u8 len) ieee802_11_defrag_data() argument 2927 ieee802_11_defrag(const struct ieee802_11_elems *elems, u8 eid, u8 eid_ext) ieee802_11_defrag() argument 3269 ieee802_11_defrag_mle(struct ieee802_11_elems *elems, u8 type) ieee802_11_defrag_mle() argument [all...] |
/foundation/communication/wifi/wifi/services/wifi_standard/wifi_framework/wifi_manage/wifi_native/client/hdi_client/hdi_interface/ |
H A D | wifi_hdi_util.c | 476 struct HdiElems *elems, in HdiParseExtensionInfo() 496 elems->assocDelayInfo = pos; in HdiParseExtensionInfo() 502 elems->filsReqParams = pos; in HdiParseExtensionInfo() 503 elems->filsReqParamsLen = elen; in HdiParseExtensionInfo() 506 elems->filsKeyConfirm = pos; in HdiParseExtensionInfo() 507 elems->filsKeyConfirmLen = elen; in HdiParseExtensionInfo() 513 elems->filsSession = pos; in HdiParseExtensionInfo() 519 elems->filsHlp = pos; in HdiParseExtensionInfo() 520 elems->filsHlpLen = elen; in HdiParseExtensionInfo() 526 elems in HdiParseExtensionInfo() 475 HdiParseExtensionInfo(const uint8_t *pos, size_t elen, struct HdiElems *elems, int show_errors) HdiParseExtensionInfo() argument 586 HdiParseVendorSpec(const uint8_t *pos, size_t elen, struct HdiElems *elems, int show_errors) HdiParseVendorSpec() argument 784 Get80211ElemsFromIE(const uint8_t *start, size_t len, struct HdiElems *elems, int show) Get80211ElemsFromIE() argument 1036 GetScanResultText(const struct WifiScanResultExt *scanResult, struct HdiElems *elems, char* buf, int bufLen) GetScanResultText() argument [all...] |
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/common/ |
H A D | ieee802_11_common.c | 21 struct ieee802_11_elems *elems, in ieee802_11_parse_vendor_specific() 47 elems->wpa_ie = pos; in ieee802_11_parse_vendor_specific() 48 elems->wpa_ie_len = elen; in ieee802_11_parse_vendor_specific() 68 elems->wmm = pos; in ieee802_11_parse_vendor_specific() 69 elems->wmm_len = elen; in ieee802_11_parse_vendor_specific() 72 elems->wmm_tspec = pos; in ieee802_11_parse_vendor_specific() 73 elems->wmm_tspec_len = elen; in ieee802_11_parse_vendor_specific() 85 elems->wps_ie = pos; in ieee802_11_parse_vendor_specific() 86 elems->wps_ie_len = elen; in ieee802_11_parse_vendor_specific() 101 elems in ieee802_11_parse_vendor_specific() 20 ieee802_11_parse_vendor_specific(const u8 *pos, size_t elen, struct ieee802_11_elems *elems, int show_errors) ieee802_11_parse_vendor_specific() argument 192 ieee802_11_parse_extension(const u8 *pos, size_t elen, struct ieee802_11_elems *elems, int show_errors) ieee802_11_parse_extension() argument 306 ieee802_11_parse_elems(const u8 *start, size_t len, struct ieee802_11_elems *elems, int show_errors) ieee802_11_parse_elems() argument 1238 supp_rates_11b_only(struct ieee802_11_elems *elems) supp_rates_11b_only() argument [all...] |
/third_party/mesa3d/src/gallium/frontends/nine/ |
H A D | vertexdeclaration9.c | 196 This->elems = CALLOC(This->nelems, sizeof(struct pipe_vertex_element)); in NineVertexDeclaration9_ctor() 198 if (!This->decls || !This->elems || !This->usage_map) { return E_OUTOFMEMORY; } in NineVertexDeclaration9_ctor() 209 This->elems[i].src_offset = This->decls[i].Offset; in NineVertexDeclaration9_ctor() 210 This->elems[i].instance_divisor = 0; in NineVertexDeclaration9_ctor() 211 This->elems[i].vertex_buffer_index = This->decls[i].Stream; in NineVertexDeclaration9_ctor() 212 This->elems[i].src_format = decltype_format(This->decls[i].Type); in NineVertexDeclaration9_ctor() 213 This->elems[i].dual_slot = false; in NineVertexDeclaration9_ctor() 219 util_format_name(This->elems[i].src_format), in NineVertexDeclaration9_ctor() 233 FREE(This->elems); in NineVertexDeclaration9_dtor() 281 D3DVERTEXELEMENT9 elems[1 in NineVertexDeclaration9_new_from_fvf() local [all...] |
/kernel/linux/linux-5.10/net/mac80211/ |
H A D | spectmgmt.c | 23 struct ieee802_11_elems *elems, in ieee80211_parse_ch_switch_ie() 40 sec_chan_offs = elems->sec_chan_offs; in ieee80211_parse_ch_switch_ie() 41 wide_bw_chansw_ie = elems->wide_bw_chansw_ie; in ieee80211_parse_ch_switch_ie() 52 if (elems->ext_chansw_ie) { in ieee80211_parse_ch_switch_ie() 54 elems->ext_chansw_ie->new_operating_class, in ieee80211_parse_ch_switch_ie() 58 elems->ext_chansw_ie->new_operating_class); in ieee80211_parse_ch_switch_ie() 60 new_chan_no = elems->ext_chansw_ie->new_ch_num; in ieee80211_parse_ch_switch_ie() 61 csa_ie->count = elems->ext_chansw_ie->count; in ieee80211_parse_ch_switch_ie() 62 csa_ie->mode = elems->ext_chansw_ie->mode; in ieee80211_parse_ch_switch_ie() 63 } else if (elems in ieee80211_parse_ch_switch_ie() 22 ieee80211_parse_ch_switch_ie(struct ieee80211_sub_if_data *sdata, struct ieee802_11_elems *elems, enum nl80211_band current_band, u32 vht_cap_info, u32 sta_flags, u8 *bssid, struct ieee80211_csa_ie *csa_ie) ieee80211_parse_ch_switch_ie() argument [all...] |
/kernel/linux/linux-6.6/net/mac80211/ |
H A D | spectmgmt.c | 23 struct ieee802_11_elems *elems, in ieee80211_parse_ch_switch_ie() 40 sec_chan_offs = elems->sec_chan_offs; in ieee80211_parse_ch_switch_ie() 41 wide_bw_chansw_ie = elems->wide_bw_chansw_ie; in ieee80211_parse_ch_switch_ie() 52 if (elems->ext_chansw_ie) { in ieee80211_parse_ch_switch_ie() 54 elems->ext_chansw_ie->new_operating_class, in ieee80211_parse_ch_switch_ie() 58 elems->ext_chansw_ie->new_operating_class); in ieee80211_parse_ch_switch_ie() 60 new_chan_no = elems->ext_chansw_ie->new_ch_num; in ieee80211_parse_ch_switch_ie() 61 csa_ie->count = elems->ext_chansw_ie->count; in ieee80211_parse_ch_switch_ie() 62 csa_ie->mode = elems->ext_chansw_ie->mode; in ieee80211_parse_ch_switch_ie() 63 } else if (elems in ieee80211_parse_ch_switch_ie() 22 ieee80211_parse_ch_switch_ie(struct ieee80211_sub_if_data *sdata, struct ieee802_11_elems *elems, enum nl80211_band current_band, u32 vht_cap_info, ieee80211_conn_flags_t conn_flags, u8 *bssid, struct ieee80211_csa_ie *csa_ie) ieee80211_parse_ch_switch_ie() argument [all...] |
/third_party/mesa3d/src/gallium/auxiliary/gallivm/ |
H A D | lp_bld_const.c | 248 LLVMValueRef elems[LP_MAX_VECTOR_LENGTH]; in lp_build_one() local 255 elems[0] = LLVMConstInt(elem_type, _mesa_float_to_half(1.0f), 0); in lp_build_one() 257 elems[0] = LLVMConstReal(elem_type, 1.0); in lp_build_one() 259 elems[0] = LLVMConstInt(elem_type, 1LL << (type.width/2), 0); in lp_build_one() 261 elems[0] = LLVMConstInt(elem_type, 1, 0); in lp_build_one() 263 elems[0] = LLVMConstInt(elem_type, (1LL << (type.width - 1)) - 1, 0); in lp_build_one() 281 elems[i] = elems[0]; in lp_build_one() 284 return elems[0]; in lp_build_one() 286 return LLVMConstVector(elems, typ in lp_build_one() 325 LLVMValueRef elems[LP_MAX_VECTOR_LENGTH]; lp_build_const_vec() local 339 LLVMValueRef elems[LP_MAX_VECTOR_LENGTH]; lp_build_const_int_vec() local 360 LLVMValueRef elems[LP_MAX_VECTOR_LENGTH]; lp_build_const_aos() local [all...] |
/foundation/communication/wifi/wifi/test/wifi_standard/wifi_framework/wifi_manage/wifi_sta/ |
H A D | ip_qos_monitor_test.cpp | 40 void OnTcpReportMsgCompleteTest(const std::vector<int64_t> &elems, const int32_t cmd, const int32_t mInstId) in OnTcpReportMsgCompleteTest() argument 65 std::vector<int64_t> elems = {1, 2, 3}; in HWTEST_F() local 67 IpQosMonitor::GetInstance().HandleTcpReportMsgComplete(elems, cmd); in HWTEST_F() 72 std::vector<int64_t> elems = {1, 2, 3}; in HWTEST_F() local 74 IpQosMonitor::GetInstance().ParseTcpReportMsg(elems, cmd); in HWTEST_F() 77 IpQosMonitor::GetInstance().ParseTcpReportMsg(elems, cmd); in HWTEST_F() 79 elems = {}; in HWTEST_F() 80 IpQosMonitor::GetInstance().ParseTcpReportMsg(elems, cmd); in HWTEST_F() 85 std::vector<int64_t> elems = {1, 2, 3}; in HWTEST_F() local 86 IpQosMonitor::GetInstance().HandleTcpPktsResp(elems); in HWTEST_F() 104 std::vector<int64_t> elems = {1, 2, 3}; HWTEST_F() local [all...] |
/foundation/communication/wifi/wifi/test/wifi_standard/wifi_framework/wifi_manage/wifi_native/client/hdi_client/hdi_interface/ |
H A D | wifi_hdi_util_test.cpp | 36 struct HdiElems *elems = nullptr; in HWTEST_F() local 39 int result = Get80211ElemsFromIE(start, len, elems, show); in HWTEST_F() 41 result = Get80211ElemsFromIE(0, len, elems, show); in HWTEST_F() 52 struct HdiElems elems; in HWTEST_F() local 53 int ret = Get80211ElemsFromIE((const uint8_t*)&elem, sizeof(elem), &elems, 1); in HWTEST_F() 55 EXPECT_EQ(elems.ssidLen, 5); in HWTEST_F() 56 EXPECT_EQ(elems.ratesLen, 5); in HWTEST_F() 377 extern "C" int HdiParseExtensionInfo(const uint8_t *pos, size_t elen, struct HdiElems *elems, int show_errors); 380 struct HdiElems elems; in HWTEST_F() local 384 int ret = HdiParseExtensionInfo(pos, elen, &elems, sho in HWTEST_F() 394 struct HdiElems elems; HWTEST_F() local 409 struct HdiElems elems; HWTEST_F() local 424 struct HdiElems elems; HWTEST_F() local 435 struct HdiElems elems; HWTEST_F() local 450 struct HdiElems elems; HWTEST_F() local 465 struct HdiElems elems; HWTEST_F() local 476 struct HdiElems elems; HWTEST_F() local 491 struct HdiElems elems; HWTEST_F() local 502 struct HdiElems elems; HWTEST_F() local 517 struct HdiElems elems; HWTEST_F() local 532 struct HdiElems elems; HWTEST_F() local 547 struct HdiElems elems; HWTEST_F() local 558 struct HdiElems elems; HWTEST_F() local 573 struct HdiElems elems; HWTEST_F() local 584 struct HdiElems elems; HWTEST_F() local 637 struct HdiElems elems; HWTEST_F() local 651 struct HdiElems elems; HWTEST_F() local 689 struct HdiElems elems; HWTEST_F() local 724 struct HdiElems elems; HWTEST_F() local 744 struct HdiElems elems; HWTEST_F() local 764 struct HdiElems elems; HWTEST_F() local [all...] |
/kernel/linux/linux-5.10/drivers/staging/media/atomisp/pci/base/circbuf/src/ |
H A D | circbuf.c | 73 ia_css_circbuf_elem_t *elems, in ia_css_circbuf_create() 87 ia_css_circbuf_elem_init(&elems[i]); in ia_css_circbuf_create() 89 cb->elems = elems; in ia_css_circbuf_create() 100 cb->elems = NULL; in ia_css_circbuf_destroy() 160 val = ia_css_circbuf_elem_get_val(&cb->elems[pos]); in ia_css_circbuf_extract() 181 return cb->elems[pos].val; in ia_css_circbuf_peek() 195 return cb->elems[pos].val; in ia_css_circbuf_peek_from_start() 206 ia_css_circbuf_elem_t *elems) in ia_css_circbuf_increase_size() 226 /* If elems ar in ia_css_circbuf_increase_size() 72 ia_css_circbuf_create(ia_css_circbuf_t *cb, ia_css_circbuf_elem_t *elems, ia_css_circbuf_desc_t *desc) ia_css_circbuf_create() argument 203 ia_css_circbuf_increase_size( ia_css_circbuf_t *cb, unsigned int sz_delta, ia_css_circbuf_elem_t *elems) ia_css_circbuf_increase_size() argument [all...] |
/kernel/linux/linux-6.6/drivers/staging/media/atomisp/pci/base/circbuf/src/ |
H A D | circbuf.c | 73 ia_css_circbuf_elem_t *elems, in ia_css_circbuf_create() 87 ia_css_circbuf_elem_init(&elems[i]); in ia_css_circbuf_create() 89 cb->elems = elems; in ia_css_circbuf_create() 100 cb->elems = NULL; in ia_css_circbuf_destroy() 160 val = ia_css_circbuf_elem_get_val(&cb->elems[pos]); in ia_css_circbuf_extract() 181 return cb->elems[pos].val; in ia_css_circbuf_peek() 195 return cb->elems[pos].val; in ia_css_circbuf_peek_from_start() 206 ia_css_circbuf_elem_t *elems) in ia_css_circbuf_increase_size() 226 /* If elems ar in ia_css_circbuf_increase_size() 72 ia_css_circbuf_create(ia_css_circbuf_t *cb, ia_css_circbuf_elem_t *elems, ia_css_circbuf_desc_t *desc) ia_css_circbuf_create() argument 203 ia_css_circbuf_increase_size( ia_css_circbuf_t *cb, unsigned int sz_delta, ia_css_circbuf_elem_t *elems) ia_css_circbuf_increase_size() argument [all...] |
/kernel/linux/linux-6.6/drivers/staging/rtl8723bs/core/ |
H A D | rtw_ieee80211.c | 766 struct rtw_ieee802_11_elems *elems, in rtw_ieee802_11_parse_vendor_specific() 786 elems->wpa_ie = pos; in rtw_ieee802_11_parse_vendor_specific() 787 elems->wpa_ie_len = elen; in rtw_ieee802_11_parse_vendor_specific() 796 elems->wme = pos; in rtw_ieee802_11_parse_vendor_specific() 797 elems->wme_len = elen; in rtw_ieee802_11_parse_vendor_specific() 800 elems->wme_tspec = pos; in rtw_ieee802_11_parse_vendor_specific() 801 elems->wme_tspec_len = elen; in rtw_ieee802_11_parse_vendor_specific() 809 elems->wps_ie = pos; in rtw_ieee802_11_parse_vendor_specific() 810 elems->wps_ie_len = elen; in rtw_ieee802_11_parse_vendor_specific() 820 elems in rtw_ieee802_11_parse_vendor_specific() 765 rtw_ieee802_11_parse_vendor_specific(u8 *pos, uint elen, struct rtw_ieee802_11_elems *elems, int show_errors) rtw_ieee802_11_parse_vendor_specific() argument 843 rtw_ieee802_11_parse_elems(u8 *start, uint len, struct rtw_ieee802_11_elems *elems, int show_errors) rtw_ieee802_11_parse_elems() argument [all...] |
/kernel/linux/linux-5.10/drivers/staging/rtl8188eu/core/ |
H A D | rtw_ieee80211.c | 680 struct rtw_ieee802_11_elems *elems, int show_errors) in rtw_ieee802_11_parse_vendor_specific() 710 elems->wpa_ie = pos; in rtw_ieee802_11_parse_vendor_specific() 711 elems->wpa_ie_len = elen; in rtw_ieee802_11_parse_vendor_specific() 722 elems->wme = pos; in rtw_ieee802_11_parse_vendor_specific() 723 elems->wme_len = elen; in rtw_ieee802_11_parse_vendor_specific() 726 elems->wme_tspec = pos; in rtw_ieee802_11_parse_vendor_specific() 727 elems->wme_tspec_len = elen; in rtw_ieee802_11_parse_vendor_specific() 737 elems->wps_ie = pos; in rtw_ieee802_11_parse_vendor_specific() 738 elems->wps_ie_len = elen; in rtw_ieee802_11_parse_vendor_specific() 750 elems in rtw_ieee802_11_parse_vendor_specific() 679 rtw_ieee802_11_parse_vendor_specific(u8 *pos, uint elen, struct rtw_ieee802_11_elems *elems, int show_errors) rtw_ieee802_11_parse_vendor_specific() argument 775 rtw_ieee802_11_parse_elems(u8 *start, uint len, struct rtw_ieee802_11_elems *elems, int show_errors) rtw_ieee802_11_parse_elems() argument [all...] |
/third_party/skia/third_party/externals/tint/src/resolver/ |
H A D | resolver_constants.cc | 91 sem::Constant::Scalars elems; in EvaluateConstantValue() local 98 elems.insert(elems.end(), cast.Elements().begin(), cast.Elements().end()); in EvaluateConstantValue() 102 if (elems.size() == 1) { in EvaluateConstantValue() 104 elems.emplace_back(elems[0]); in EvaluateConstantValue() 108 return sem::Constant(type, std::move(elems)); in EvaluateConstantValue() 117 sem::Constant::Scalars elems; in ConstantCast() local 120 elems.emplace_back( in ConstantCast() 123 elems in ConstantCast() [all...] |
/foundation/communication/wifi/wifi/services/wifi_standard/wifi_framework/wifi_manage/wifi_self_cure/ |
H A D | ip_qos_monitor.cpp | 50 void IpQosMonitor::HandleTcpReportMsgComplete(const std::vector<int64_t> &elems, int32_t cmd) in HandleTcpReportMsgComplete() argument 53 ParseTcpReportMsg(elems, cmd); in HandleTcpReportMsgComplete() 56 void IpQosMonitor::ParseTcpReportMsg(const std::vector<int64_t> &elems, int32_t cmd) in ParseTcpReportMsg() argument 58 if (elems.size() == 0) { in ParseTcpReportMsg() 59 WIFI_LOGE("TcpReportMsg elems size is 0"); in ParseTcpReportMsg() 63 HandleTcpPktsResp(elems); in ParseTcpReportMsg() 67 void IpQosMonitor::HandleTcpPktsResp(const std::vector<int64_t> &elems) in HandleTcpPktsResp() argument 70 bool internetGood = ParseNetworkInternetGood(elems); in HandleTcpPktsResp() 119 bool IpQosMonitor::ParseNetworkInternetGood(const std::vector<int64_t> &elems) in ParseNetworkInternetGood() argument 122 bool queryResp = (elems[QOS_MSG_FRO in ParseNetworkInternetGood() [all...] |
/third_party/icu/icu4c/source/i18n/unicode/ |
H A D | ucoleitr.h | 135 * @param elems The UCollationElements to close. 139 ucol_closeElements(UCollationElements *elems); 145 * @param elems The UCollationElements to reset. 151 ucol_reset(UCollationElements *elems); 156 * @param elems The UCollationElements containing the text. 163 ucol_next(UCollationElements *elems, UErrorCode *status); 169 * @param elems The UCollationElements containing the text. 179 ucol_previous(UCollationElements *elems, UErrorCode *status); 185 * @param elems The UCollationElements containing the text. 193 ucol_getMaxExpansion(const UCollationElements *elems, int32_ [all...] |
/third_party/node/deps/icu-small/source/i18n/unicode/ |
H A D | ucoleitr.h | 135 * @param elems The UCollationElements to close. 139 ucol_closeElements(UCollationElements *elems); 145 * @param elems The UCollationElements to reset. 151 ucol_reset(UCollationElements *elems); 156 * @param elems The UCollationElements containing the text. 163 ucol_next(UCollationElements *elems, UErrorCode *status); 169 * @param elems The UCollationElements containing the text. 179 ucol_previous(UCollationElements *elems, UErrorCode *status); 185 * @param elems The UCollationElements containing the text. 193 ucol_getMaxExpansion(const UCollationElements *elems, int32_ [all...] |
/third_party/skia/third_party/externals/icu/source/i18n/unicode/ |
H A D | ucoleitr.h | 135 * @param elems The UCollationElements to close. 139 ucol_closeElements(UCollationElements *elems); 145 * @param elems The UCollationElements to reset. 151 ucol_reset(UCollationElements *elems); 156 * @param elems The UCollationElements containing the text. 163 ucol_next(UCollationElements *elems, UErrorCode *status); 169 * @param elems The UCollationElements containing the text. 179 ucol_previous(UCollationElements *elems, UErrorCode *status); 185 * @param elems The UCollationElements containing the text. 193 ucol_getMaxExpansion(const UCollationElements *elems, int32_ [all...] |
/kernel/linux/linux-5.10/drivers/staging/rtl8723bs/core/ |
H A D | rtw_ieee80211.c | 861 struct rtw_ieee802_11_elems *elems, in rtw_ieee802_11_parse_vendor_specific() 887 elems->wpa_ie = pos; in rtw_ieee802_11_parse_vendor_specific() 888 elems->wpa_ie_len = elen; in rtw_ieee802_11_parse_vendor_specific() 901 elems->wme = pos; in rtw_ieee802_11_parse_vendor_specific() 902 elems->wme_len = elen; in rtw_ieee802_11_parse_vendor_specific() 905 elems->wme_tspec = pos; in rtw_ieee802_11_parse_vendor_specific() 906 elems->wme_tspec_len = elen; in rtw_ieee802_11_parse_vendor_specific() 918 elems->wps_ie = pos; in rtw_ieee802_11_parse_vendor_specific() 919 elems->wps_ie_len = elen; in rtw_ieee802_11_parse_vendor_specific() 933 elems in rtw_ieee802_11_parse_vendor_specific() 860 rtw_ieee802_11_parse_vendor_specific(u8 *pos, uint elen, struct rtw_ieee802_11_elems *elems, int show_errors) rtw_ieee802_11_parse_vendor_specific() argument 964 rtw_ieee802_11_parse_elems(u8 *start, uint len, struct rtw_ieee802_11_elems *elems, int show_errors) rtw_ieee802_11_parse_elems() argument [all...] |
/third_party/mesa3d/src/freedreno/rnn/ |
H A D | rnndec.c | 370 static struct rnndecaddrinfo *trymatch (struct rnndeccontext *ctx, struct rnndelem **elems, int elemsnum, uint64_t addr, int write, int dwidth, uint64_t *indices, int indicesnum) { in trymatch() argument 374 if (!rnndec_varmatch(ctx, &elems[i]->varinfo)) in trymatch() 378 switch (elems[i]->type) { in trymatch() 380 if (addr < elems[i]->offset) in trymatch() 382 if (elems[i]->stride) { in trymatch() 383 idx = (addr-elems[i]->offset)/elems[i]->stride; in trymatch() 384 offset = (addr-elems[i]->offset)%elems[i]->stride; in trymatch() 387 offset = addr-elems[ in trymatch() 490 tryreg(struct rnndeccontext *ctx, struct rnndelem **elems, int elemsnum, int dwidth, const char *name, uint64_t *offset) tryreg() argument [all...] |
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/wpa_supplicant/ |
H A D | mesh_mpm.c | 123 struct ieee802_11_elems *elems) in copy_supp_rates() 125 if (!elems->supp_rates) { in copy_supp_rates() 131 if (elems->supp_rates_len + elems->ext_supp_rates_len > in copy_supp_rates() 135 " %d+%d", MAC2STR(sta->addr), elems->supp_rates_len, in copy_supp_rates() 136 elems->ext_supp_rates_len); in copy_supp_rates() 142 elems->supp_rates, elems->supp_rates_len, in copy_supp_rates() 143 elems->ext_supp_rates, elems in copy_supp_rates() 121 copy_supp_rates(struct wpa_supplicant *wpa_s, struct sta_info *sta, struct ieee802_11_elems *elems) copy_supp_rates() argument 150 matches_local(struct wpa_supplicant *wpa_s, struct ieee802_11_elems *elems) matches_local() argument 704 mesh_mpm_add_peer(struct wpa_supplicant *wpa_s, const u8 *addr, struct ieee802_11_elems *elems) mesh_mpm_add_peer() argument 816 wpa_mesh_new_mesh_peer(struct wpa_supplicant *wpa_s, const u8 *addr, struct ieee802_11_elems *elems) wpa_mesh_new_mesh_peer() argument 1154 struct ieee802_11_elems elems; mesh_mpm_action_rx() local [all...] |
/third_party/ffmpeg/libavutil/ |
H A D | dict.c | 32 AVDictionaryEntry *elems; member 49 i = prev - m->elems + 1; in av_dict_get() 54 const char *s = m->elems[i].key; in av_dict_get() 65 return &m->elems[i]; in av_dict_get() 104 *tag = m->elems[--m->count]; in av_dict_set() 106 AVDictionaryEntry *tmp = av_realloc_array(m->elems, in av_dict_set() 107 m->count + 1, sizeof(*m->elems)); in av_dict_set() 110 m->elems = tmp; in av_dict_set() 113 m->elems[m->count].key = copy_key; in av_dict_set() 114 m->elems[ in av_dict_set() [all...] |
/third_party/wpa_supplicant/wpa_supplicant-2.9/wpa_supplicant/ |
H A D | mesh_mpm.c | 123 struct ieee802_11_elems *elems) in copy_supp_rates() 125 if (!elems->supp_rates) { in copy_supp_rates() 131 if (elems->supp_rates_len + elems->ext_supp_rates_len > in copy_supp_rates() 135 " %d+%d", MAC2STR(sta->addr), elems->supp_rates_len, in copy_supp_rates() 136 elems->ext_supp_rates_len); in copy_supp_rates() 142 elems->supp_rates, elems->supp_rates_len, in copy_supp_rates() 143 elems->ext_supp_rates, elems in copy_supp_rates() 121 copy_supp_rates(struct wpa_supplicant *wpa_s, struct sta_info *sta, struct ieee802_11_elems *elems) copy_supp_rates() argument 150 matches_local(struct wpa_supplicant *wpa_s, struct ieee802_11_elems *elems) matches_local() argument 691 mesh_mpm_add_peer(struct wpa_supplicant *wpa_s, const u8 *addr, struct ieee802_11_elems *elems) mesh_mpm_add_peer() argument 800 wpa_mesh_new_mesh_peer(struct wpa_supplicant *wpa_s, const u8 *addr, struct ieee802_11_elems *elems) wpa_mesh_new_mesh_peer() argument 1124 struct ieee802_11_elems elems; mesh_mpm_action_rx() local [all...] |
/foundation/communication/wifi/wifi/services/wifi_standard/wifi_framework/wifi_manage/wifi_common/ |
H A D | wifi_netlink.cpp | 188 std::vector<int64_t> elems(NEW_INT_ARR_LENGTH, 0); in ProcessReportMsg() 189 elems[QOS_RTT] = info.qos.rtt; in ProcessReportMsg() 190 elems[QOS_RTT_PKTS] = info.qos.rttPkts; in ProcessReportMsg() 191 elems[QOS_RTT_WHEN] = info.qos.rttWhen; in ProcessReportMsg() 192 elems[QOS_CONGESTION] = info.qos.congestion; in ProcessReportMsg() 193 elems[QOS_CONG_WHEN] = info.qos.congWhen; in ProcessReportMsg() 194 elems[QOS_TCP_QUALITY] = info.qos.tcpQuality; in ProcessReportMsg() 195 elems[QOS_TCP_TX_PKTS] = info.qos.tcpTxPkts; in ProcessReportMsg() 196 elems[QOS_TCP_RX_PKTS] = info.qos.tcpRxPkts; in ProcessReportMsg() 197 elems[QOS_TCP_RETRANS_PKT in ProcessReportMsg() [all...] |
/third_party/ltp/metadata/ |
H A D | data_storage.h | 37 struct data_hash_elem elems[]; member 147 struct data_hash_elem *elem = &hash->elems[hash->elems_used++]; in data_node_hash_add() 165 data_node_free(self->hash.elems[i].node); in data_node_free() 166 free(self->hash.elems[i].id); in data_node_free() 184 if (!strcmp(hash->elems[i].id, id)) in data_node_hash_del() 191 data_node_free(hash->elems[i].node); in data_node_hash_del() 192 free(hash->elems[i].id); in data_node_hash_del() 194 hash->elems[i] = hash->elems[--hash->elems_used]; in data_node_hash_del() 205 if (!strcmp(hash->elems[ in data_node_hash_get() [all...] |