/external/iw/ |
D | util.c | 461 static void print_mcs_index(const __u8 *mcs) in print_mcs_index() argument 470 mcs_rate_idx_set = !!(mcs[mcs_octet] & MCS_RATE_BIT); in print_mcs_index() 599 void print_ht_mcs(const __u8 *mcs) in print_ht_mcs() argument 605 max_rx_supp_data_rate = (mcs[10] | ((mcs[11] & 0x3) << 8)); in print_ht_mcs() 606 tx_mcs_set_defined = !!(mcs[12] & (1 << 0)); in print_ht_mcs() 607 tx_mcs_set_equal = !(mcs[12] & (1 << 1)); in print_ht_mcs() 608 tx_max_num_spatial_streams = ((mcs[12] >> 2) & 3) + 1; in print_ht_mcs() 609 tx_unequal_modulation = !!(mcs[12] & (1 << 4)); in print_ht_mcs() 618 print_mcs_index(mcs); in print_ht_mcs() 621 print_mcs_index(mcs); in print_ht_mcs() [all …]
|
D | bitrate.c | 7 static int parse_vht_chunk(const char *arg, __u8 *nss, __u16 *mcs) in parse_vht_chunk() argument 12 *nss = 0; *mcs = 0; in parse_vht_chunk() 32 *mcs |= 1 << i; in parse_vht_chunk() 50 *mcs |= 1 << tab[i]; in parse_vht_chunk() 61 __u16 mcs; in setup_vht() local 67 if(!parse_vht_chunk(argv[i], &nss, &mcs)) in setup_vht() 71 txrate_vht->mcs[nss] |= mcs; in setup_vht() 98 uint8_t *mcs = NULL; in handle_bitrates() local 138 mcs = ht_mcs_24; in handle_bitrates() 145 mcs = ht_mcs_5; in handle_bitrates() [all …]
|
D | info.c | 535 cm->mcs.rx_mask[0], cm->mcs.rx_mask[1], in print_phy_handler() 536 cm->mcs.rx_mask[2], cm->mcs.rx_mask[3], in print_phy_handler() 537 cm->mcs.rx_mask[4], cm->mcs.rx_mask[5], in print_phy_handler() 538 cm->mcs.rx_mask[6], cm->mcs.rx_mask[7], in print_phy_handler() 539 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 | 142 void print_ht_mcs(const __u8 *mcs); 146 void print_vht_info(__u32 capa, const __u8 *mcs);
|
/external/mesa3d/src/intel/blorp/ |
D | blorp_nir_builder.h | 74 nir_ssa_def *mcs, in blorp_nir_mcs_is_clear_color() argument 82 return nir_ieq_imm(b, nir_iand(b, nir_channel(b, mcs, 0), in blorp_nir_mcs_is_clear_color() 87 return nir_ieq_imm(b, nir_channel(b, mcs, 0), 0xff); in blorp_nir_mcs_is_clear_color() 90 return nir_ieq_imm(b, nir_channel(b, mcs, 0), ~0); in blorp_nir_mcs_is_clear_color() 94 return nir_iand(b, nir_ieq_imm(b, nir_channel(b, mcs, 0), ~0), in blorp_nir_mcs_is_clear_color() 95 nir_ieq_imm(b, nir_channel(b, mcs, 1), ~0)); in blorp_nir_mcs_is_clear_color()
|
D | blorp_blit.c | 217 nir_ssa_def *pos, nir_ssa_def *mcs, nir_alu_type dst_type) in blorp_nir_txf_ms() argument 221 mcs != NULL ? 3 : 2, dst_type); in blorp_nir_txf_ms() 233 if (mcs) { in blorp_nir_txf_ms() 235 tex->src[2].src = nir_src_for_ssa(mcs); in blorp_nir_txf_ms() 575 nir_ssa_def *mcs = NULL; in blorp_nir_combine_samples() local 577 mcs = blorp_blit_txf_ms_mcs(b, v, pos); in blorp_nir_combine_samples() 652 texture_data[stack_depth++] = blorp_nir_txf_ms(b, v, ms_pos, mcs, dst_type); in blorp_nir_combine_samples() 674 nir_ssa_def *mcs_zero = nir_ieq_imm(b, nir_channel(b, mcs, 0), 0); in blorp_nir_combine_samples() 677 nir_ieq_imm(b, nir_channel(b, mcs, 1), 0)); in blorp_nir_combine_samples() 680 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/u-boot/board/imgtec/boston/ |
D | config.mk | 9 u-boot.mcs: u-boot.bin 14 ALL-$(has_srec_cat) += u-boot.mcs 15 CLEAN_FILES += u-boot.mcs
|
/external/autotest/client/cros/cellular/mbim_compliance/ |
D | usb_descriptors.py | 95 def __new__(mcs, name, bases, attrs): argument 100 return super(DescriptorMeta, mcs).__new__(mcs, name, bases, attrs) 161 cls = super(DescriptorMeta, mcs).__new__(mcs, name, 167 mcs.descriptor_classes.append(cls)
|
D | mbim_message.py | 171 def __new__(mcs, name, bases, attrs): argument 176 return super(MBIMControlMessageMeta, mcs).__new__( 177 mcs, name, bases, attrs) 206 cls = super(MBIMControlMessageMeta, mcs).__new__( 207 mcs, name, (message_class,) + bases, attrs)
|
D | mbim_data_transfer.py | 401 def __new__(mcs, name, bases, attrs): argument 403 return super(MBIMNtbHeadersMeta, mcs).__new__( 404 mcs, name, bases, attrs) 416 cls = super(MBIMNtbHeadersMeta, mcs).__new__( 417 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/flatbuffers/tests/FlatBuffers.Test/ |
D | NetTest.sh | 5 mcs -debug -out:./fbnettest.exe \ 15 mcs -debug -out:./fbnettest.exe \
|
/external/tensorflow/tensorflow/python/platform/ |
D | benchmark.py | 163 def __new__(mcs, clsname, base, attrs): argument 164 newclass = type.__new__(mcs, clsname, base, attrs) 173 def __new__(mcs, clsname, base, attrs): argument 199 return super(mcs, ParameterizedBenchmark).__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/mesa3d/src/mesa/drivers/dri/i915/ |
D | i830_vtbl.c | 134 GLuint mcs = (i830->state.Tex[i][I830_TEXREG_MCS] & in i830_render_start() local 140 mcs |= TEXCOORDTYPE_VECTOR; in i830_render_start() 148 mcs |= TEXCOORDTYPE_CARTESIAN; in i830_render_start() 153 mcs |= TEXCOORDTYPE_HOMOGENEOUS; in i830_render_start() 164 if (mcs != i830->state.Tex[i][I830_TEXREG_MCS]) { in i830_render_start() 166 i830->state.Tex[i][I830_TEXREG_MCS] = mcs; in i830_render_start()
|
/external/protobuf/python/google/protobuf/internal/ |
D | _parameterized.py | 360 def __new__(mcs, class_name, bases, dct): argument 369 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/selinux/sandbox/ |
D | seunshare.c | 574 const char *mcs = context_range_get(con); in killall() local 575 printf("mcs=%s\n", mcs); in killall() 602 if (strcmp(context_range_get(pidcon), mcs) == 0) in killall()
|
/external/libiio/src/bindings/csharp/ |
D | CMakeLists.txt | 7 set(MCS_EXECUTABLE_NAME mcs)
|
/external/wpa_supplicant_8/src/drivers/ |
D | driver_nl80211_capa.c | 1443 u8 *mcs; in phy_info_ht_capa() local 1444 mcs = nla_data(mcs_set); in phy_info_ht_capa() 1445 os_memcpy(mode->mcs_set, mcs, 16); in phy_info_ht_capa() 1458 u8 *mcs; in phy_info_vht_capa() local 1459 mcs = nla_data(mcs_set); in phy_info_vht_capa() 1460 os_memcpy(mode->vht_mcs_set, mcs, 8); in phy_info_vht_capa() 1777 if (len > sizeof(he_capab->mcs)) in phy_info_iftype_copy() 1778 len = sizeof(he_capab->mcs); in phy_info_iftype_copy() 1779 os_memcpy(he_capab->mcs, in phy_info_iftype_copy()
|
/external/mesa3d/src/intel/isl/ |
D | isl_format_layout.csv | 336 … , 8, 1, 1, 1, , , , , , , , , , mcs 337 … , 8, 1, 1, 1, , , , , , , , , , mcs 338 … , 32, 1, 1, 1, , , , , , , , , , mcs 339 … , 64, 1, 1, 1, , , , , , , , , , mcs
|
/external/tensorflow/tensorflow/python/framework/ |
D | tensor_shape_test.py | 371 mcs = tensor_shape.TensorShape(x).most_specific_compatible_shape( 373 mcs_dims = mcs.dims 377 self.assertEqual(expected, mcs.as_list())
|