Home
last modified time | relevance | path

Searched full:desc (Results 1 – 25 of 2365) sorted by relevance

12345678910>>...95

/freebsd/sys/dev/bhnd/nvram/
H A Dnvram_map35 desc "Available 2.4GHz Antennas"
40 desc "Available 5GHz Antennas"
46 desc "Antenna 0 Gain"
52 desc "Antenna 1 Gain"
58 desc "Antenna 2 Gain"
64 desc "Antenna 3 Gain"
71 desc "Available TX Chains"
79 desc "Available RX Chains"
87 desc "Antenna Diversity Switch Type"
95 #desc <variable description>
[all …]
/freebsd/contrib/llvm-project/lldb/source/Commands/
H A DOptions.td5 Desc<"Supply a sort order when dumping the symbol table.">,
8 Desc<"Do not demangle symbol names before showing them.">;
13 Desc<"Output the details in JSON format.">;
15 Desc<"Filter to show only debug info files with errors.">;
20 Desc<"Hide aliases in the command list.">;
22 Desc<"Hide user-defined commands from the list.">;
24 Desc<"Include commands prefixed with an underscore.">;
29 Desc<"Apply the new value to the global default value.">;
31 Desc<"Force an empty value to be accepted as the default.">;
33 Desc<"Set the setting if it exists, but do not cause the command to raise "
[all …]
/freebsd/sys/ofed/drivers/infiniband/core/
H A Dib_packer.c56 * @desc:Array of structure field descriptions
57 * @desc_len:Number of entries in @desc
62 * controlled by the array of fields in @desc.
64 void ib_pack(const struct ib_field *desc, in ib_pack() argument
72 if (desc[i].size_bits <= 32) { in ib_pack()
78 shift = 32 - desc[i].offset_bits - desc[i].size_bits; in ib_pack()
79 if (desc[i].struct_size_bytes) in ib_pack()
80 val = value_read(desc[i].struct_offset_bytes, in ib_pack()
81 desc[i].struct_size_bytes, in ib_pack()
86 mask = cpu_to_be32(((1ull << desc[i].size_bits) - 1) << shift); in ib_pack()
[all …]
/freebsd/sys/contrib/dev/athk/ath12k/
H A Dhal_rx.c27 struct hal_reo_get_queue_stats *desc; in ath12k_hal_reo_cmd_queue_stats() local
30 u32_encode_bits(sizeof(*desc), HAL_TLV_HDR_LEN); in ath12k_hal_reo_cmd_queue_stats()
32 desc = (struct hal_reo_get_queue_stats *)tlv->value; in ath12k_hal_reo_cmd_queue_stats()
33 memset_startat(desc, 0, queue_addr_lo); in ath12k_hal_reo_cmd_queue_stats()
35 desc->cmd.info0 &= ~cpu_to_le32(HAL_REO_CMD_HDR_INFO0_STATUS_REQUIRED); in ath12k_hal_reo_cmd_queue_stats()
37 desc->cmd.info0 |= cpu_to_le32(HAL_REO_CMD_HDR_INFO0_STATUS_REQUIRED); in ath12k_hal_reo_cmd_queue_stats()
39 desc->queue_addr_lo = cpu_to_le32(cmd->addr_lo); in ath12k_hal_reo_cmd_queue_stats()
40 desc->info0 = le32_encode_bits(cmd->addr_hi, in ath12k_hal_reo_cmd_queue_stats()
43 desc->info0 |= cpu_to_le32(HAL_REO_GET_QUEUE_STATS_INFO0_CLEAR_STATS); in ath12k_hal_reo_cmd_queue_stats()
45 return le32_get_bits(desc->cmd.info0, HAL_REO_CMD_HDR_INFO0_CMD_NUMBER); in ath12k_hal_reo_cmd_queue_stats()
[all …]
H A Dhal.c290 static bool ath12k_hw_qcn9274_rx_desc_get_first_msdu(struct hal_rx_desc *desc) in ath12k_hw_qcn9274_rx_desc_get_first_msdu() argument
292 return !!le16_get_bits(desc->u.qcn9274.msdu_end.info5, in ath12k_hw_qcn9274_rx_desc_get_first_msdu()
296 static bool ath12k_hw_qcn9274_rx_desc_get_last_msdu(struct hal_rx_desc *desc) in ath12k_hw_qcn9274_rx_desc_get_last_msdu() argument
298 return !!le16_get_bits(desc->u.qcn9274.msdu_end.info5, in ath12k_hw_qcn9274_rx_desc_get_last_msdu()
302 static u8 ath12k_hw_qcn9274_rx_desc_get_l3_pad_bytes(struct hal_rx_desc *desc) in ath12k_hw_qcn9274_rx_desc_get_l3_pad_bytes() argument
304 return le16_get_bits(desc->u.qcn9274.msdu_end.info5, in ath12k_hw_qcn9274_rx_desc_get_l3_pad_bytes()
308 static bool ath12k_hw_qcn9274_rx_desc_encrypt_valid(struct hal_rx_desc *desc) in ath12k_hw_qcn9274_rx_desc_encrypt_valid() argument
310 return !!le32_get_bits(desc->u.qcn9274.mpdu_start.info4, in ath12k_hw_qcn9274_rx_desc_encrypt_valid()
314 static u32 ath12k_hw_qcn9274_rx_desc_get_encrypt_type(struct hal_rx_desc *desc) in ath12k_hw_qcn9274_rx_desc_get_encrypt_type() argument
316 return le32_get_bits(desc->u.qcn9274.mpdu_start.info2, in ath12k_hw_qcn9274_rx_desc_get_encrypt_type()
[all …]
/freebsd/contrib/llvm-project/lldb/source/Target/
H A DTargetProperties.td6Desc<"If true, inject local variables explicitly into the expression text. This will fix symbol re…
13 Desc<"Default architecture to choose, when there's a choice.">;
16 Desc<"Move breakpoints to nearest code.">;
19 Desc<"The language to use when interpreting expressions entered in commands.">;
22 Desc<"Path to a file containing expressions to be prepended to all expressions.">;
25 Desc<"The maximum amount of errors to emit while parsing an expression. "
29Desc<"Start address within the process address space of memory allocation for expression evaluatio…
32 Desc<"Amount of memory in bytes to allocate for expression evaluation.">;
35 Desc<"Alignment for each memory allocation for expression evaluation.">;
39 Desc<"Should printed values be shown as their dynamic value.">;
[all …]
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/
H A DDWARFExpression.cpp23 typedef Op::Description Desc; typedef
25 static std::vector<Desc> getOpDescriptions() { in getOpDescriptions()
26 std::vector<Desc> Descriptions; in getOpDescriptions()
28 Descriptions[DW_OP_addr] = Desc(Op::Dwarf2, Op::SizeAddr); in getOpDescriptions()
29 Descriptions[DW_OP_deref] = Desc(Op::Dwarf2); in getOpDescriptions()
30 Descriptions[DW_OP_const1u] = Desc(Op::Dwarf2, Op::Size1); in getOpDescriptions()
31 Descriptions[DW_OP_const1s] = Desc(Op::Dwarf2, Op::SignedSize1); in getOpDescriptions()
32 Descriptions[DW_OP_const2u] = Desc(Op::Dwarf2, Op::Size2); in getOpDescriptions()
33 Descriptions[DW_OP_const2s] = Desc(Op::Dwarf2, Op::SignedSize2); in getOpDescriptions()
34 Descriptions[DW_OP_const4u] = Desc(Op::Dwarf2, Op::Size4); in getOpDescriptions()
[all …]
/freebsd/lib/libifconfig/
H A Dlibifconfig_media.c130 lookup_media_desc(const struct ifmedia_description *desc, const char *name) in lookup_media_desc() argument
133 for (; desc->ifmt_string != NULL; ++desc) in lookup_media_desc()
134 if (strcasecmp(desc->ifmt_string, name) == 0) in lookup_media_desc()
135 return (desc); in lookup_media_desc()
141 const struct ifmedia_description *desc; member
146 const struct ifmedia_description *desc; member
151 const struct ifmedia_description *desc; member
221 const struct ifmedia_description *desc; in get_toptype_ttos() local
224 for (desc = ifm_type_descriptions, ttos = ifmedia_types_to_subtypes; in get_toptype_ttos()
225 desc->ifmt_string != NULL; desc++, ttos++) { in get_toptype_ttos()
[all …]
/freebsd/sbin/etherswitchcfg/
H A Difmedia.c403 struct ifmedia_description *desc; member
407 struct ifmedia_description *desc; member
411 struct ifmedia_description *desc; member
479 struct ifmedia_description *desc; in get_media_subtype() local
484 for (desc = ifm_type_descriptions, ttos = ifmedia_types_to_subtypes; in get_media_subtype()
485 desc->ifmt_string != NULL; desc++, ttos++) in get_media_subtype()
486 if (type == desc->ifmt_word) in get_media_subtype()
488 if (desc->ifmt_string == NULL) in get_media_subtype()
491 for (i = 0; ttos->subtypes[i].desc != NULL; i++) { in get_media_subtype()
492 rval = lookup_media_word(ttos->subtypes[i].desc, val); in get_media_subtype()
[all …]
/freebsd/sys/contrib/openzfs/module/icp/spi/
H A Dkcf_spi.c109 kcf_provider_desc_t *desc; in crypto_unregister_provider() local
113 if ((desc = kcf_prov_tab_lookup((crypto_provider_id_t)handle)) == NULL) in crypto_unregister_provider()
116 mutex_enter(&desc->pd_lock); in crypto_unregister_provider()
121 if (desc->pd_state >= KCF_PROV_DISABLED) { in crypto_unregister_provider()
122 mutex_exit(&desc->pd_lock); in crypto_unregister_provider()
124 KCF_PROV_REFRELE(desc); in crypto_unregister_provider()
128 saved_state = desc->pd_state; in crypto_unregister_provider()
129 desc->pd_state = KCF_PROV_REMOVED; in crypto_unregister_provider()
136 if (desc->pd_refcnt > desc->pd_irefcnt + 1) { in crypto_unregister_provider()
137 desc->pd_state = saved_state; in crypto_unregister_provider()
[all …]
/freebsd/lib/libusb/
H A Dlibusb10_desc.c52 struct libusb_device_descriptor *desc) in libusb_get_device_descriptor() argument
57 if ((dev == NULL) || (desc == NULL)) in libusb_get_device_descriptor()
63 desc->bLength = pdesc->bLength; in libusb_get_device_descriptor()
64 desc->bDescriptorType = pdesc->bDescriptorType; in libusb_get_device_descriptor()
65 desc->bcdUSB = pdesc->bcdUSB; in libusb_get_device_descriptor()
66 desc->bDeviceClass = pdesc->bDeviceClass; in libusb_get_device_descriptor()
67 desc->bDeviceSubClass = pdesc->bDeviceSubClass; in libusb_get_device_descriptor()
68 desc->bDeviceProtocol = pdesc->bDeviceProtocol; in libusb_get_device_descriptor()
69 desc->bMaxPacketSize0 = pdesc->bMaxPacketSize0; in libusb_get_device_descriptor()
70 desc->idVendor = pdesc->idVendor; in libusb_get_device_descriptor()
[all …]
/freebsd/usr.sbin/cxgbetool/
H A Dtcbinfot5.c39 "ULP mode: 0 =toe, 2=iscsi, 4=rdma, 5=ddp, 6=fcoe, 7=user, remaining values reserved", /*desc*/
46 "ULP subtype", /*desc*/
53 "Destination MAC address index", /*desc*/
60 "Source MAC address index", /*desc*/
67 NULL, /*desc*/
74 NULL, /*desc*/
81 NULL, /*desc*/
88 NULL, /*desc*/
95 NULL, /*desc*/
102 NULL, /*desc*/
[all …]
H A Dtcbinfot6.c39 …0 =toe, 2=iscsi, 4=rdma, 5=ddp, 6=fcoe, 7=user, 8=tls, 9=dtls, remaining values reserved", /*desc*/
46 "ULP subtype", /*desc*/
53 "Destination MAC address index", /*desc*/
60 "Source MAC address index", /*desc*/
67 NULL, /*desc*/
74 NULL, /*desc*/
81 NULL, /*desc*/
88 NULL, /*desc*/
95 NULL, /*desc*/
102 NULL, /*desc*/
[all …]
H A Dtcbinfot4.c39 "ULP mode: 0 =toe, 2=iscsi, 4=rdma, 5=ddp, remaining values are reserved", /*desc*/
46 "ULP subtype", /*desc*/
53 "Destination MAC address index", /*desc*/
60 "Source MAC address index", /*desc*/
67 NULL, /*desc*/
74 NULL, /*desc*/
81 NULL, /*desc*/
88 NULL, /*desc*/
95 NULL, /*desc*/
102 NULL, /*desc*/
[all …]
/freebsd/sys/dev/ismt/
H A Dismt.c163 struct ismt_desc *desc; member
229 struct ismt_desc *desc; in ismt_alloc_desc() local
235 desc = &sc->desc[sc->head++]; in ismt_alloc_desc()
239 memset(desc, 0, sizeof(*desc)); in ismt_alloc_desc()
241 return (desc); in ismt_alloc_desc()
245 ismt_submit(struct ismt_softc *sc, struct ismt_desc *desc, uint8_t slave, in ismt_submit() argument
250 desc->control |= ISMT_DESC_FAIR; in ismt_submit()
252 desc->control |= ISMT_DESC_INT; in ismt_submit()
254 desc->tgtaddr_rw = ISMT_DESC_ADDR_RW(slave, is_read); in ismt_submit()
255 desc->dptr_low = (sc->dma_buffer_bus_addr & 0xFFFFFFFFLL); in ismt_submit()
[all …]
/freebsd/sys/dev/enic/
H A Dcq_enet_desc.h19 static inline void cq_enet_wq_desc_enc(struct cq_enet_wq_desc *desc, in cq_enet_wq_desc_enc() argument
22 cq_desc_enc((struct cq_desc *)desc, type, in cq_enet_wq_desc_enc()
26 static inline void cq_enet_wq_desc_dec(struct cq_enet_wq_desc *desc, in cq_enet_wq_desc_dec() argument
29 cq_desc_dec((struct cq_desc *)desc, type, in cq_enet_wq_desc_dec()
110 static inline void cq_enet_rq_desc_enc(struct cq_enet_rq_desc *desc, in cq_enet_rq_desc_enc() argument
118 cq_desc_enc((struct cq_desc *)desc, type, in cq_enet_rq_desc_enc()
121 desc->completed_index_flags |= cpu_to_le16( in cq_enet_rq_desc_enc()
127 desc->q_number_rss_type_flags |= cpu_to_le16( in cq_enet_rq_desc_enc()
132 desc->rss_hash = cpu_to_le32(rss_hash); in cq_enet_rq_desc_enc()
134 desc->bytes_written_flags = cpu_to_le16( in cq_enet_rq_desc_enc()
[all …]
/freebsd/sys/contrib/dev/athk/ath11k/
H A Dhal_rx.c26 struct hal_reo_get_queue_stats *desc; in ath11k_hal_reo_cmd_queue_stats() local
29 FIELD_PREP(HAL_TLV_HDR_LEN, sizeof(*desc)); in ath11k_hal_reo_cmd_queue_stats()
31 desc = (struct hal_reo_get_queue_stats *)tlv->value; in ath11k_hal_reo_cmd_queue_stats()
32 memset_startat(desc, 0, queue_addr_lo); in ath11k_hal_reo_cmd_queue_stats()
34 desc->cmd.info0 &= ~HAL_REO_CMD_HDR_INFO0_STATUS_REQUIRED; in ath11k_hal_reo_cmd_queue_stats()
36 desc->cmd.info0 |= HAL_REO_CMD_HDR_INFO0_STATUS_REQUIRED; in ath11k_hal_reo_cmd_queue_stats()
38 desc->queue_addr_lo = cmd->addr_lo; in ath11k_hal_reo_cmd_queue_stats()
39 desc->info0 = FIELD_PREP(HAL_REO_GET_QUEUE_STATS_INFO0_QUEUE_ADDR_HI, in ath11k_hal_reo_cmd_queue_stats()
42 desc->info0 |= HAL_REO_GET_QUEUE_STATS_INFO0_CLEAR_STATS; in ath11k_hal_reo_cmd_queue_stats()
44 return FIELD_GET(HAL_REO_CMD_HDR_INFO0_CMD_NUMBER, desc->cmd.info0); in ath11k_hal_reo_cmd_queue_stats()
[all …]
/freebsd/contrib/bsddialog/examples_library/
H A Dmixedlist.c21 { "", true, 0, "Checklist", "(desc)", "" } in main()
24 { "+", true, 0, "Name 1", "Desc 1", "Bottom Desc 1" }, in main()
25 { "" , false, 0, "Name 2", "Desc 2", "Bottom Desc 2" }, in main()
26 { "+", true, 0, "Name 3", "Desc 3", "Bottom Desc 3" }, in main()
27 { "" , false, 0, "Name 4", "Desc 4", "Bottom Desc 4" }, in main()
28 { "+", true, 0, "Name 5", "Desc 5", "Bottom Desc 5" } in main()
31 { "", true, 0, "Radiolist", "(desc)", "" }, in main()
32 { "", true, 0, "Subtitle", "(desc)", "" } in main()
35 { "", true, 0, "Name 1", "Desc 1", "Bottom Desc 1" }, in main()
36 { "+", false, 0, "Name 2", "Desc 2", "Bottom Desc 2" }, in main()
[all …]
/freebsd/sys/dev/usb/
H A Dusb_parse.c65 * descriptors. If the "desc" argument passed to this function is
70 * Else: Next descriptor after "desc"
79 uint8_t *desc; in usb_desc_foreach() local
88 desc = (uint8_t *)_desc; in usb_desc_foreach()
91 if (desc == NULL) in usb_desc_foreach()
92 desc = start; in usb_desc_foreach()
94 desc = desc + desc[0]; in usb_desc_foreach()
97 if ((desc < start) || (desc >= end)) in usb_desc_foreach()
101 desc_next = desc + desc[0]; in usb_desc_foreach()
106 if (desc[0] < 3) in usb_desc_foreach()
[all …]
/freebsd/sys/dev/ixl/
H A Di40e_common.c318 * @desc: pointer to admin queue descriptor
324 void i40e_debug_aq(struct i40e_hw *hw, enum i40e_debug_mask mask, void *desc, in i40e_debug_aq() argument
327 struct i40e_aq_desc *aq_desc = (struct i40e_aq_desc *)desc; in i40e_debug_aq()
333 if (!effective_mask || !desc) in i40e_debug_aq()
419 struct i40e_aq_desc desc; in i40e_aq_queue_shutdown() local
421 (struct i40e_aqc_queue_shutdown *)&desc.params.raw; in i40e_aq_queue_shutdown()
424 i40e_fill_default_direct_cmd_desc(&desc, in i40e_aq_queue_shutdown()
429 status = i40e_asq_send_command(hw, &desc, NULL, 0, NULL); in i40e_aq_queue_shutdown()
451 struct i40e_aq_desc desc; in i40e_aq_get_set_rss_lut() local
453 (struct i40e_aqc_get_set_rss_lut *)&desc.params.raw; in i40e_aq_get_set_rss_lut()
[all …]
/freebsd/contrib/llvm-project/clang/lib/AST/Interp/
H A DInterpBlock.h43 /// │ sizeof(Block) │ Desc->getMetadataSize() │ Desc->getSize() │
46 /// Desc->getAllocSize() describes the size after the Block, i.e.
53 const Descriptor *Desc, bool IsStatic = false, bool IsExtern = false)
55 IsDynamic(false), Desc(Desc) { in EvalID()
56 assert(Desc); in EvalID()
59 Block(unsigned EvalID, const Descriptor *Desc, bool IsStatic = false,
62 IsExtern(IsExtern), IsDynamic(false), Desc(Desc) { in EvalID()
63 assert(Desc); in EvalID()
67 const Descriptor *getDescriptor() const { return Desc; } in getDescriptor()
75 bool isTemporary() const { return Desc->IsTemporary; } in isTemporary()
[all …]
/freebsd/contrib/llvm-project/lldb/source/Core/
H A DCoreProperties.td7Desc<"Control the use of external tools and repositories to locate symbol files. Directories liste…
11Desc<"Alias for backward compatibility: when enabled this is the equivalent to 'symbols.auto-downl…
16Desc<"On macOS, automatically download symbols with dsymForUUID (or an equivalent script/binary) f…
20 Desc<"The path to the clang modules cache directory (-fmodules-cache-path).">;
24Desc<"Debug info path which should be resolved while parsing, relative to the host filesystem.">;
28Desc<"Enable caching for debug sessions in LLDB. LLDB can cache data for each module for improved …
32 Desc<"The path to the LLDB index cache directory.">;
36Desc<"The maximum size for the LLDB index cache directory in bytes. A value over the amount of ava…
40Desc<"The maximum size for the cache directory in terms of percentage of the available space on th…
44Desc<"The expiration time in days for a file. When a file hasn't been accessed for the specified a…
[all …]
/freebsd/sys/riscv/riscv/
H A Didentcpu.c151 parse_ext_s(struct cpu_desc *desc, char *isa, int idx, int len) in parse_ext_s() argument
157 desc->smode_extensions |= flag; \ in parse_ext_s()
183 parse_ext_x(struct cpu_desc *desc __unused, char *isa, int idx, int len) in parse_ext_x()
197 parse_ext_z(struct cpu_desc *desc __unused, char *isa, int idx, int len) in parse_ext_z()
236 parse_riscv_isa(struct cpu_desc *desc, char *isa, int len) in parse_riscv_isa() argument
257 desc->isa_extensions |= HWCAP_ISA_BIT(isa[i]); in parse_riscv_isa()
261 desc->isa_extensions |= HWCAP_ISA_G; in parse_riscv_isa()
279 i = parse_ext_s(desc, isa, i, len); in parse_riscv_isa()
286 i = parse_ext_x(desc, isa, i, len); in parse_riscv_isa()
292 i = parse_ext_z(desc, isa, i, len); in parse_riscv_isa()
[all …]
/freebsd/sys/dev/sound/pcm/
H A Dfeeder_chain.c52 struct pcm_feederdesc desc; /* feeder descriptor */ member
141 struct pcm_feederdesc *desc; in feeder_build_format() local
144 desc = &(cdesc->desc); in feeder_build_format()
145 desc->type = FEEDER_FORMAT; in feeder_build_format()
146 desc->in = 0; in feeder_build_format()
147 desc->out = 0; in feeder_build_format()
148 desc->flags = 0; in feeder_build_format()
150 fc = feeder_getclass(desc); in feeder_build_format()
157 desc->in = cdesc->current.afmt; in feeder_build_format()
158 desc->out = cdesc->target.afmt; in feeder_build_format()
[all …]
/freebsd/sys/contrib/dev/mediatek/mt76/mt7996/
H A Ddebugfs.c132 int desc = 0; in mt7996_sys_recovery_get() local
141 desc += scnprintf(buff + desc, bufsz - desc, in mt7996_sys_recovery_get()
143 desc += scnprintf(buff + desc, bufsz - desc, in mt7996_sys_recovery_get()
145 desc += scnprintf(buff + desc, bufsz - desc, in mt7996_sys_recovery_get()
147 desc += scnprintf(buff + desc, bufsz - desc, in mt7996_sys_recovery_get()
149 desc += scnprintf(buff + desc, bufsz - desc, in mt7996_sys_recovery_get()
151 desc += scnprintf(buff + desc, bufsz - desc, in mt7996_sys_recovery_get()
153 desc += scnprintf(buff + desc, bufsz - desc, in mt7996_sys_recovery_get()
155 desc += scnprintf(buff + desc, bufsz - desc, in mt7996_sys_recovery_get()
157 desc += scnprintf(buff + desc, bufsz - desc, in mt7996_sys_recovery_get()
[all …]

12345678910>>...95