/linux-6.12.1/include/linux/dsa/ |
D | ocelot.h | 188 packing(extraction, rew_val, 116, 85, OCELOT_TAG_LEN, UNPACK, 0); in ocelot_xfh_get_rew_val() 195 packing(extraction, &llen, 84, 79, OCELOT_TAG_LEN, UNPACK, 0); in ocelot_xfh_get_len() 196 packing(extraction, &wlen, 78, 71, OCELOT_TAG_LEN, UNPACK, 0); in ocelot_xfh_get_len() 203 packing(extraction, src_port, 46, 43, OCELOT_TAG_LEN, UNPACK, 0); in ocelot_xfh_get_src_port() 208 packing(extraction, qos_class, 19, 17, OCELOT_TAG_LEN, UNPACK, 0); in ocelot_xfh_get_qos_class() 213 packing(extraction, tag_type, 16, 16, OCELOT_TAG_LEN, UNPACK, 0); in ocelot_xfh_get_tag_type() 218 packing(extraction, vlan_tci, 15, 0, OCELOT_TAG_LEN, UNPACK, 0); in ocelot_xfh_get_vlan_tci() 223 packing(injection, &bypass, 127, 127, OCELOT_TAG_LEN, PACK, 0); in ocelot_ifh_set_bypass() 228 packing(injection, &rew_op, 125, 117, OCELOT_TAG_LEN, PACK, 0); in ocelot_ifh_set_rew_op() 233 packing(injection, &dest, 67, 56, OCELOT_TAG_LEN, PACK, 0); in ocelot_ifh_set_dest() [all …]
|
/linux-6.12.1/drivers/net/dsa/sja1105/ |
D | sja1105_static_config.c | 19 int rc = packing(buf, (u64 *)val, start, end, len, in sja1105_pack() 41 int rc = packing((void *)buf, val, start, end, len, in sja1105_unpack() 59 int rc = packing(buf, val, start, end, len, op, QUIRK_LSW32_IS_FIRST); in sja1105_packing() 1149 table->ops->packing(p, entry_ptr, PACK); in sja1105_static_config_pack() 1201 .packing = sja1105et_l2_lookup_entry_packing, 1207 .packing = sja1105_l2_policing_entry_packing, 1213 .packing = sja1105_vlan_lookup_entry_packing, 1219 .packing = sja1105_l2_forwarding_entry_packing, 1225 .packing = sja1105et_mac_config_entry_packing, 1231 .packing = sja1105et_l2_lookup_params_entry_packing, [all …]
|
D | sja1105_static_config.h | 434 size_t (*packing)(void *buf, void *entry_ptr, enum packing_op op); member
|
/linux-6.12.1/Documentation/translations/zh_CN/core-api/ |
D | packing.rst | 5 :Original: Documentation/core-api/packing.rst 155 中描述的相匹配。然后,他们应该封装packing()函数,创建一个新的xxx_packing(),使用 158 packing()函数返回一个int类型的错误码,以防止程序员使用不正确的API。这些错误预计不
|
D | index.rst | 50 packing
|
/linux-6.12.1/drivers/media/platform/intel/ |
D | pxa_camera.c | 239 enum pxa_mbus_packing packing; member 262 .packing = PXA_MBUS_PACKING_2X8_PADHI, 272 .packing = PXA_MBUS_PACKING_2X8_PADHI, 282 .packing = PXA_MBUS_PACKING_2X8_PADHI, 292 .packing = PXA_MBUS_PACKING_2X8_PADHI, 302 .packing = PXA_MBUS_PACKING_2X8_PADHI, 312 .packing = PXA_MBUS_PACKING_2X8_PADHI, 322 .packing = PXA_MBUS_PACKING_2X8_PADHI, 332 .packing = PXA_MBUS_PACKING_2X8_PADHI, 342 .packing = PXA_MBUS_PACKING_NONE, [all …]
|
/linux-6.12.1/Documentation/userspace-api/media/v4l/ |
D | metafmt-generic.rst | 61 The packing of the data follows the MIPI CSI-2 specification and the padding of 105 The packing of the data follows the MIPI CSI-2 specification and the padding of 151 The packing of the data follows the MIPI CSI-2 specification and the padding of 194 The packing of the data follows the MIPI CSI-2 specification and the padding of 197 Some devices support more efficient packing of metadata in conjunction with 243 The packing of the data follows the MIPI CSI-2 specification and the padding of 246 Some devices support more efficient packing of metadata in conjunction with 296 The packing of the data follows the MIPI CSI-2 specification and the padding of 299 Some devices support more efficient packing of metadata in conjunction with
|
D | pixfmt-yuv-luma.rst | 214 the RAW10, RAW12 and RAW14 packing scheme as defined by the MIPI CSI-2
|
/linux-6.12.1/net/dsa/ |
D | tag_sja1105.c | 117 packing(buf, &meta->tstamp, 31, 0, 4, UNPACK, 0); in sja1105_meta_unpack() 118 packing(buf + 4, &meta->dmac_byte_3, 7, 0, 1, UNPACK, 0); in sja1105_meta_unpack() 119 packing(buf + 5, &meta->dmac_byte_4, 7, 0, 1, UNPACK, 0); in sja1105_meta_unpack() 120 packing(buf + 6, &meta->source_port, 7, 0, 1, UNPACK, 0); in sja1105_meta_unpack() 121 packing(buf + 7, &meta->switch_id, 7, 0, 1, UNPACK, 0); in sja1105_meta_unpack() 601 packing(rx_trailer, tstamp, 63, 0, 8, UNPACK, 0); in sja1110_rcv_inband_control_extension()
|
/linux-6.12.1/lib/ |
D | packing.c | 77 int packing(void *pbuf, u64 *uval, int startbit, int endbit, size_t pbuflen, in packing() function 199 EXPORT_SYMBOL(packing);
|
D | Kconfig | 26 bool "Generic bitfield packing and unpacking" 30 This option provides the packing() helper function, which permits
|
/linux-6.12.1/include/linux/ |
D | packing.h | 46 int packing(void *pbuf, u64 *uval, int startbit, int endbit, size_t pbuflen,
|
/linux-6.12.1/Documentation/core-api/ |
D | packing.rst | 2 Generic bitfield packing and unpacking functions 159 describes. Then they should wrap the packing() function, creating a new 162 The packing() function returns an int-encoded error code, which protects the
|
D | index.rst | 47 packing
|
/linux-6.12.1/Documentation/filesystems/ |
D | btrfs.rst | 15 * Space efficient packing of small files
|
/linux-6.12.1/drivers/staging/vt6656/ |
D | rxtx.h | 45 u16 packing; /* packing to 48 bytes */ member
|
/linux-6.12.1/fs/reiserfs/ |
D | bitmap.c | 327 __le32 packing; in reiserfs_choose_packing() local 335 packing = INODE_PKEY(dir)->k_objectid; in reiserfs_choose_packing() 337 packing = INODE_PKEY(dir)->k_dir_id; in reiserfs_choose_packing() 339 packing = INODE_PKEY(dir)->k_objectid; in reiserfs_choose_packing() 340 return packing; in reiserfs_choose_packing()
|
/linux-6.12.1/Documentation/ABI/testing/ |
D | sysfs-bus-intel_th-devices-gth | 38 Description: (RW) Force flush data from byte packing buffer for the output
|
/linux-6.12.1/drivers/staging/vt6655/ |
D | rxtx.h | 42 u16 packing; /* packing to 48 bytes */ member
|
/linux-6.12.1/include/net/bluetooth/ |
D | bluetooth.h | 181 __u8 packing; member 191 __u8 packing; member
|
/linux-6.12.1/Documentation/arch/arm/ |
D | vlocks.rst | 125 * By packing the members of the currently_voting array close together, 174 packing of the currently_voting array does not work with cached
|
/linux-6.12.1/Documentation/admin-guide/mm/ |
D | multigen_lru.rst | 99 optimize job scheduling (bin packing) to improve memory utilizations.
|
/linux-6.12.1/net/bluetooth/ |
D | hci_conn.c | 1750 cp.bis.packing = qos->bcast.packing; in hci_le_create_big() 1776 pdu->packing = qos->ucast.packing; in set_cig_params_sync()
|
D | iso.c | 807 .packing = 0x00, 1425 if (qos->ucast.packing > 0x01) in check_ucast_qos() 1445 if (qos->bcast.packing > 0x01) in check_bcast_qos()
|
/linux-6.12.1/Documentation/bpf/ |
D | map_devmap.rst | 22 - While ``BPF_MAP_TYPE_DEVMAP_HASH`` allows for densely packing the net devices
|