Home
last modified time | relevance | path

Searched refs:mcs (Results 1 – 25 of 55) sorted by relevance

123

/external/iw/
Dutil.c461 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 …]
Dbitrate.c7 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 …]
Dinfo.c535 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()
Dieee80211.h42 struct ieee80211_mcs_info mcs; member
58 struct ieee80211_vht_mcs_info mcs; member
Diw.h142 void print_ht_mcs(const __u8 *mcs);
146 void print_vht_info(__u32 capa, const __u8 *mcs);
/external/mesa3d/src/intel/blorp/
Dblorp_nir_builder.h74 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()
Dblorp_blit.c217 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/
Dslots_metaclass.py23 def __new__(mcs, name, bases, attrs): argument
27 return super(SlotsMetaclass, mcs).__new__(mcs, name, bases, attrs)
/external/u-boot/board/imgtec/boston/
Dconfig.mk9 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/
Dusb_descriptors.py95 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)
Dmbim_message.py171 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)
Dmbim_data_transfer.py401 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/
Dtranspile.sh16 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/
DNetTest.sh5 mcs -debug -out:./fbnettest.exe \
15 mcs -debug -out:./fbnettest.exe \
/external/tensorflow/tensorflow/python/platform/
Dbenchmark.py163 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/
DTODO159 * 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/
Diwcap.c235 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/
Di830_vtbl.c134 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.py360 def __new__(mcs, class_name, bases, dct): argument
369 return type.__new__(mcs, class_name, bases, dct)
/external/flatbuffers/samples/
Dcsharp_sample.sh45 mcs SampleBinary.cs MyGame/Sample/*.cs ../net/FlatBuffers/*.cs
/external/selinux/sandbox/
Dseunshare.c574 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/
DCMakeLists.txt7 set(MCS_EXECUTABLE_NAME mcs)
/external/wpa_supplicant_8/src/drivers/
Ddriver_nl80211_capa.c1443 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/
Disl_format_layout.csv336 … , 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/
Dtensor_shape_test.py371 mcs = tensor_shape.TensorShape(x).most_specific_compatible_shape(
373 mcs_dims = mcs.dims
377 self.assertEqual(expected, mcs.as_list())

123