/external/iw/ |
D | bitrate.c | 7 static int parse_rate_chunk(const char *arg, __u8 *nss, __u16 *mcs, unsigned int mode) in parse_rate_chunk() argument 13 *nss = 0; *mcs = 0; in parse_rate_chunk() 41 *mcs |= 1 << i; in parse_rate_chunk() 66 *mcs |= 1 << tab[i]; in parse_rate_chunk() 73 static int parse_vht_chunk(const char *arg, __u8 *nss, __u16 *mcs) in parse_vht_chunk() argument 75 return parse_rate_chunk(arg, nss, mcs, NL80211_TXRATE_VHT); in parse_vht_chunk() 78 static int parse_he_chunk(const char *arg, __u8 *nss, __u16 *mcs) in parse_he_chunk() argument 80 return parse_rate_chunk(arg, nss, mcs, NL80211_TXRATE_HE); in parse_he_chunk() 87 __u16 mcs; in setup_vht() local 93 if (!parse_vht_chunk(argv[i], &nss, &mcs)) in setup_vht() [all …]
|
D | util.c | 896 static void print_mcs_index(const __u8 *mcs) in print_mcs_index() argument 905 mcs_rate_idx_set = !!(mcs[mcs_octet] & MCS_RATE_BIT); in print_mcs_index() 1034 void print_ht_mcs(const __u8 *mcs) in print_ht_mcs() argument 1040 max_rx_supp_data_rate = (mcs[10] | ((mcs[11] & 0x3) << 8)); in print_ht_mcs() 1041 tx_mcs_set_defined = !!(mcs[12] & (1 << 0)); in print_ht_mcs() 1042 tx_mcs_set_equal = !(mcs[12] & (1 << 1)); in print_ht_mcs() 1043 tx_max_num_spatial_streams = ((mcs[12] >> 2) & 3) + 1; in print_ht_mcs() 1044 tx_unequal_modulation = !!(mcs[12] & (1 << 4)); in print_ht_mcs() 1053 print_mcs_index(mcs); in print_ht_mcs() 1056 print_mcs_index(mcs); in print_ht_mcs() [all …]
|
D | info.c | 536 cm->mcs.rx_mask[0], cm->mcs.rx_mask[1], in print_phy_handler() 537 cm->mcs.rx_mask[2], cm->mcs.rx_mask[3], in print_phy_handler() 538 cm->mcs.rx_mask[4], cm->mcs.rx_mask[5], in print_phy_handler() 539 cm->mcs.rx_mask[6], cm->mcs.rx_mask[7], in print_phy_handler() 540 cm->mcs.rx_mask[8], cm->mcs.rx_mask[9]); in print_phy_handler()
|
D | ieee80211.h | 42 struct ieee80211_mcs_info mcs; member 58 struct ieee80211_vht_mcs_info mcs; member
|
D | iw.h | 216 void print_ht_mcs(const __u8 *mcs); 220 void print_vht_info(__u32 capa, const __u8 *mcs);
|
/external/mesa3d/src/intel/blorp/ |
D | blorp_nir_builder.h | 78 nir_def *mcs, in blorp_nir_mcs_is_clear_color() argument 86 return nir_ieq_imm(b, nir_iand(b, nir_channel(b, mcs, 0), in blorp_nir_mcs_is_clear_color() 91 return nir_ieq_imm(b, nir_channel(b, mcs, 0), 0xff); in blorp_nir_mcs_is_clear_color() 94 return nir_ieq_imm(b, nir_channel(b, mcs, 0), ~0); in blorp_nir_mcs_is_clear_color() 98 return nir_iand(b, nir_ieq_imm(b, nir_channel(b, mcs, 0), ~0), in blorp_nir_mcs_is_clear_color() 99 nir_ieq_imm(b, nir_channel(b, mcs, 1), ~0)); in blorp_nir_mcs_is_clear_color()
|
D | blorp_blit.c | 213 nir_def *pos, nir_def *mcs, nir_alu_type dst_type) in blorp_nir_txf_ms() argument 228 if (!mcs) in blorp_nir_txf_ms() 229 mcs = nir_imm_zero(b, 4, 32); in blorp_nir_txf_ms() 231 tex->src[2] = nir_tex_src_for_ssa(nir_tex_src_ms_mcs_intel, mcs); in blorp_nir_txf_ms() 566 nir_def *mcs = NULL; in blorp_nir_combine_samples() local 568 mcs = blorp_blit_txf_ms_mcs(b, v, pos); in blorp_nir_combine_samples() 644 texture_data[stack_depth++] = blorp_nir_txf_ms(b, v, ms_pos, mcs, dst_type); in blorp_nir_combine_samples() 666 nir_def *mcs_zero = nir_ieq_imm(b, nir_channel(b, mcs, 0), 0); in blorp_nir_combine_samples() 669 nir_ieq_imm(b, nir_channel(b, mcs, 1), 0)); in blorp_nir_combine_samples() 672 blorp_nir_mcs_is_clear_color(b, mcs, tex_samples); in blorp_nir_combine_samples() [all …]
|
/external/chromium-trace/catapult/common/py_utils/py_utils/ |
D | slots_metaclass.py | 23 def __new__(mcs, name, bases, attrs): argument 27 return super(SlotsMetaclass, mcs).__new__(mcs, name, bases, attrs)
|
/external/autotest/server/cros/cellular/simulation_utils/ |
D | LteSimulation.py | 938 mcs = bts_config.dl_mcs 947 if mcs == 27: 957 if mcs == 28: 969 and mcs == 28): 978 and mcs == 27): 983 and mcs == 27): 992 elif self.dl_256_qam and bts_config.tbs_pattern_on and mcs == 27: 1000 elif self.dl_256_qam and bts_config.tbs_pattern_on and mcs == 26: 1005 and mcs == 27): 1014 and mcs == 26): [all …]
|
/external/autotest/client/cros/cellular/mbim_compliance/ |
D | usb_descriptors.py | 104 def __new__(mcs, name, bases, attrs): argument 109 return super(DescriptorMeta, mcs).__new__(mcs, name, bases, attrs) 170 cls = super(DescriptorMeta, mcs).__new__(mcs, name, 176 mcs.descriptor_classes.append(cls)
|
D | mbim_message.py | 180 def __new__(mcs, name, bases, attrs): argument 185 return super(MBIMControlMessageMeta, mcs).__new__( 186 mcs, name, bases, attrs) 215 cls = super(MBIMControlMessageMeta, mcs).__new__( 216 mcs, name, (message_class,) + bases, attrs)
|
D | mbim_data_transfer.py | 410 def __new__(mcs, name, bases, attrs): argument 412 return super(MBIMNtbHeadersMeta, mcs).__new__( 413 mcs, name, bases, attrs) 425 cls = super(MBIMNtbHeadersMeta, mcs).__new__( 426 mcs, name, (header_class,) + bases, attrs)
|
/external/brotli/csharp/ |
D | transpile.sh | 16 if ! which mcs >/dev/null; then 80 mcs $SOURCES -target:library -out:build/brotlidec.dll 81 mcs $SOURCES $TESTS_SOURCES -target:library -out:build/brotlidec_test.dll -r:build/NUnit.3.6.1/lib/…
|
/external/tensorflow/tensorflow/python/platform/ |
D | benchmark.py | 159 def __new__(mcs, clsname, base, attrs): argument 160 newclass = type.__new__(mcs, clsname, base, attrs) 190 def __new__(mcs, clsname, base, attrs): argument 216 return super().__new__(mcs, clsname, base, attrs)
|
/external/elfutils/ |
D | TODO | 159 * mcs 179 other than .comment. By default, mcs deals with the 181 specify another section. mcs can take multiple -n 191 -V Print on standard error the version number of mcs.
|
/external/autotest/client/deps/iwcap/src/ |
D | iwcap.c | 235 static unsigned int get_max_mcs(unsigned char *mcs) in get_max_mcs() argument 245 mcs_rate_idx_set = !!(mcs[mcs_octet] & MCS_RATE_BIT); in get_max_mcs() 342 unsigned char *mcs = nla_data(tb_band[NL80211_BAND_ATTR_HT_MCS_SET]); in check_phy_handler() local 343 int max = get_max_mcs(&mcs[0]); in check_phy_handler()
|
/external/wpa_supplicant_8/src/ap/ |
D | beacon.c | 1853 const u8 *he_mcs = mode->he_capab[IEEE80211_MODE_AP].mcs; in hostapd_gen_fils_discovery_nss() 1855 u16 mcs[6]; in hostapd_gen_fils_discovery_nss() local 1857 os_memset(mcs, 0xff, 6 * sizeof(u16)); in hostapd_gen_fils_discovery_nss() 1860 mcs[0] = WPA_GET_LE16(&he_mcs[0]); in hostapd_gen_fils_discovery_nss() 1861 mcs[1] = WPA_GET_LE16(&he_mcs[2]); in hostapd_gen_fils_discovery_nss() 1865 mcs[2] = WPA_GET_LE16(&he_mcs[4]); in hostapd_gen_fils_discovery_nss() 1866 mcs[3] = WPA_GET_LE16(&he_mcs[6]); in hostapd_gen_fils_discovery_nss() 1870 mcs[4] = WPA_GET_LE16(&he_mcs[8]); in hostapd_gen_fils_discovery_nss() 1871 mcs[5] = WPA_GET_LE16(&he_mcs[10]); in hostapd_gen_fils_discovery_nss() 1882 (((mcs[0] & nss_mask) != nss_mask) || in hostapd_gen_fils_discovery_nss() [all …]
|
/external/cronet/stable/third_party/protobuf/python/google/protobuf/internal/ |
D | _parameterized.py | 355 def __new__(mcs, class_name, bases, dct): argument 364 return type.__new__(mcs, class_name, bases, dct)
|
/external/cronet/tot/third_party/protobuf/python/google/protobuf/internal/ |
D | _parameterized.py | 355 def __new__(mcs, class_name, bases, dct): argument 364 return type.__new__(mcs, class_name, bases, dct)
|
/external/protobuf/python/google/protobuf/internal/ |
D | _parameterized.py | 355 def __new__(mcs, class_name, bases, dct): argument 364 return type.__new__(mcs, class_name, bases, dct)
|
/external/flatbuffers/samples/ |
D | csharp_sample.sh | 45 mcs SampleBinary.cs MyGame/Sample/*.cs ../net/FlatBuffers/*.cs
|
/external/wpa_supplicant_8/src/drivers/ |
D | driver_nl80211_capa.c | 1657 u8 *mcs; in phy_info_ht_capa() local 1658 mcs = nla_data(mcs_set); in phy_info_ht_capa() 1659 os_memcpy(mode->mcs_set, mcs, 16); in phy_info_ht_capa() 1672 u8 *mcs; in phy_info_vht_capa() local 1673 mcs = nla_data(mcs_set); in phy_info_vht_capa() 1674 os_memcpy(mode->vht_mcs_set, mcs, 8); in phy_info_vht_capa() 1997 if (len > sizeof(he_capab->mcs)) in phy_info_iftype_copy() 1998 len = sizeof(he_capab->mcs); in phy_info_iftype_copy() 1999 os_memcpy(he_capab->mcs, in phy_info_iftype_copy() 2043 if (len > sizeof(eht_capab->mcs)) in phy_info_iftype_copy() [all …]
|
/external/python/python-api-core/google/api_core/ |
D | exceptions.py | 102 def __new__(mcs, name, bases, class_dict): argument 103 cls = type.__new__(mcs, name, bases, class_dict)
|
/external/selinux/sandbox/ |
D | seunshare.c | 604 const char *mcs = context_range_get(con); in killall() local 605 printf("mcs=%s\n", mcs); in killall() 632 if (strcmp(context_range_get(pidcon), mcs) == 0) in killall()
|
/external/mesa3d/src/intel/compiler/ |
D | brw_lower_logical_sends.cpp | 743 const brw_reg &mcs, in lower_sampler_logical_send() argument 1001 brw_reg tmp = offset(mcs, bld, i); in lower_sampler_logical_send() 1004 mcs.file == IMM ? mcs : in lower_sampler_logical_send() 1009 mcs.file == IMM ? mcs : in lower_sampler_logical_send() 1014 mcs.file == IMM ? mcs : offset(mcs, bld, i)); in lower_sampler_logical_send() 1272 const brw_reg mcs = inst->src[TEX_LOGICAL_SRC_MCS]; in lower_sampler_logical_send() local 1294 mcs, surface, sampler, in lower_sampler_logical_send()
|