/linux/drivers/gpu/drm/vmwgfx/device_include/ |
H A D | svga3d_dx.h | 132 #pragma pack(push, 1) 137 #pragma pack(pop) 139 #pragma pack(push, 1) 143 #pragma pack(pop) 145 #pragma pack(push, 1) 149 #pragma pack(pop) 151 #pragma pack(push, 1) 157 #pragma pack(pop) 159 #pragma pack(push, 1) 163 #pragma pack(pop) [all …]
|
H A D | svga3d_cmd.h | 335 #pragma pack(push, 1) 340 #pragma pack(pop) 342 #pragma pack(push, 1) 346 #pragma pack(pop) 348 #pragma pack(push, 1) 357 #pragma pack(pop) 359 #pragma pack(push, 1) 370 #pragma pack(pop) 372 #pragma pack(push, 1) 376 #pragma pack(pop) [all …]
|
H A D | svga_reg.h | 240 #pragma pack(push, 1) 245 #pragma pack(pop) 247 #pragma pack(push, 1) 252 #pragma pack(pop) 294 #pragma pack(push, 1) 312 #pragma pack(pop) 358 #pragma pack(push, 1) 364 #pragma pack(pop) 379 #pragma pack(push, 1) 386 #pragma pack(pop) [all …]
|
H A D | svga3d_types.h | 59 #pragma pack(push, 1) 64 #pragma pack(pop) 66 #pragma pack(push, 1) 75 #pragma pack(pop) 77 #pragma pack(push, 1) 89 #pragma pack(pop) 91 #pragma pack(push, 1) 98 #pragma pack(pop) 100 #pragma pack(push, 1) 109 #pragma pack(pop) [all …]
|
H A D | svga_overlay.h | 80 #pragma pack(push, 1) 85 #pragma pack(pop) 87 #pragma pack(push, 1) 91 #pragma pack(pop) 93 #pragma pack(push, 1) 101 #pragma pack(pop) 103 #pragma pack(push, 1) 111 #pragma pack(pop)
|
/linux/Documentation/networking/ |
H A D | 6pack.rst | 4 6pack Protocol 7 This is the 6pack-mini-HOWTO, written by 17 1. What is 6pack, and what are the advantages to KISS? 20 6pack is a transmission protocol for data exchange between the PC and 23 6pack has two major advantages: 37 (however, this feature is not supported yet by the Linux 6pack driver). 44 More details about 6pack are described in the file 6pack.ps that is located 47 2. Who has developed the 6pack protocol? 50 The 6pack protocol has been developed by Ekki Plicht DF4OR, Henning Rech 51 DF9IC and Gunter Jost DK7WJ. A driver for 6pack, written by Gunter Jost and [all …]
|
/linux/drivers/gpu/drm/nouveau/nvkm/engine/gr/ |
H A D | gk20a.c | 40 struct gf100_gr_pack *pack; in gk20a_gr_av_to_init_() local 45 pack = vzalloc((sizeof(*pack) * 2) + (sizeof(*init) * (nent + 1))); in gk20a_gr_av_to_init_() 46 if (!pack) in gk20a_gr_av_to_init_() 49 init = (void *)(pack + 2); in gk20a_gr_av_to_init_() 50 pack[0].init = init; in gk20a_gr_av_to_init_() 62 *ppack = pack; in gk20a_gr_av_to_init_() 83 struct gf100_gr_pack *pack; in gk20a_gr_aiv_to_init() local 88 pack = vzalloc((sizeof(*pack) * 2) + (sizeof(*init) * (nent + 1))); in gk20a_gr_aiv_to_init() 89 if (!pack) in gk20a_gr_aiv_to_init() 92 init = (void *)(pack + 2); in gk20a_gr_aiv_to_init() [all …]
|
H A D | ga102.c | 244 struct gf100_gr_pack *pack; in ga102_gr_av64_to_init() local 249 pack = vzalloc((sizeof(*pack) * 2) + (sizeof(*init) * (nent + 1))); in ga102_gr_av64_to_init() 250 if (!pack) in ga102_gr_av64_to_init() 253 init = (void *)(pack + 2); in ga102_gr_av64_to_init() 254 pack[0].init = init; in ga102_gr_av64_to_init() 255 pack[0].type = 64; in ga102_gr_av64_to_init() 267 *ppack = pack; in ga102_gr_av64_to_init()
|
/linux/tools/usb/usbip/src/ |
H A D | usbip_network.c | 53 uint32_t usbip_net_pack_uint32_t(int pack, uint32_t num) in usbip_net_pack_uint32_t() argument 57 if (pack) in usbip_net_pack_uint32_t() 65 uint16_t usbip_net_pack_uint16_t(int pack, uint16_t num) in usbip_net_pack_uint16_t() argument 69 if (pack) in usbip_net_pack_uint16_t() 77 void usbip_net_pack_usb_device(int pack, struct usbip_usb_device *udev) in usbip_net_pack_usb_device() argument 79 udev->busnum = usbip_net_pack_uint32_t(pack, udev->busnum); in usbip_net_pack_usb_device() 80 udev->devnum = usbip_net_pack_uint32_t(pack, udev->devnum); in usbip_net_pack_usb_device() 81 udev->speed = usbip_net_pack_uint32_t(pack, udev->speed); in usbip_net_pack_usb_device() 83 udev->idVendor = usbip_net_pack_uint16_t(pack, udev->idVendor); in usbip_net_pack_usb_device() 84 udev->idProduct = usbip_net_pack_uint16_t(pack, udev->idProduct); in usbip_net_pack_usb_device() [all …]
|
H A D | usbip_network.h | 71 #define PACK_OP_IMPORT_REQUEST(pack, request) do {\ argument 74 #define PACK_OP_IMPORT_REPLY(pack, reply) do {\ argument 75 usbip_net_pack_usb_device(pack, &(reply)->udev);\ 93 #define PACK_OP_EXPORT_REQUEST(pack, request) do {\ argument 94 usbip_net_pack_usb_device(pack, &(request)->udev);\ 97 #define PACK_OP_EXPORT_REPLY(pack, reply) do {\ argument 114 #define PACK_OP_UNEXPORT_REQUEST(pack, request) do {\ argument 115 usbip_net_pack_usb_device(pack, &(request)->udev);\ 118 #define PACK_OP_UNEXPORT_REPLY(pack, reply) do {\ argument 156 #define PACK_OP_DEVLIST_REQUEST(pack, request) do {\ argument [all …]
|
/linux/drivers/net/wireless/broadcom/b43/ |
H A D | pio.c | 25 struct b43_pio_txpacket *pack) in generate_cookie() argument 38 cookie |= pack->index; in generate_cookie() 46 struct b43_pio_txpacket **pack) in parse_cookie() argument 74 *pack = &q->packets[pack_index]; in parse_cookie() 180 struct b43_pio_txpacket *pack; in b43_pio_cancel_tx_packets() local 184 pack = &(q->packets[i]); in b43_pio_cancel_tx_packets() 185 if (pack->skb) { in b43_pio_cancel_tx_packets() 186 ieee80211_free_txskb(q->dev->wl->hw, pack->skb); in b43_pio_cancel_tx_packets() 187 pack->skb = NULL; in b43_pio_cancel_tx_packets() 349 static void pio_tx_frame_2byte_queue(struct b43_pio_txpacket *pack, in pio_tx_frame_2byte_queue() argument [all …]
|
/linux/drivers/gpu/drm/nouveau/nvkm/subdev/therm/ |
H A D | gf100.c | 28 #define pack_for_each_init(init, pack, head) \ argument 29 for (pack = head; pack && pack->init; pack++) \ 30 for (init = pack->init; init && init->count; init++) 36 const struct nvkm_therm_clkgate_pack *pack; in gf100_clkgate_init() local 40 pack_for_each_init(init, pack, p) { in gf100_clkgate_init()
|
/linux/arch/arm/lib/ |
H A D | io-readsw-armv4.S | 10 .macro pack, rd, hw1, hw2 macro 37 pack r3, r3, r4 41 pack r4, r4, r5 45 pack r5, r5, ip 49 pack ip, ip, lr 60 pack r3, r3, r4 64 pack r4, r4, ip 73 pack r3, r3, ip
|
/linux/drivers/net/hamradio/ |
H A D | 6pack.c | 3 * 6pack.c This module implements the 6pack protocol for kernel-based 41 #define SIXP_SEOF 0x40 /* start and end of a 6pack frame */ 46 #define SIXP_CHKSUM 0xFF /* valid checksum of a 6pack frame */ 75 /* 6pack configuration. */ 76 #define SIXP_NRUNIT 31 /* MAX number of 6pack channels */ 102 unsigned char mode; /* 6pack mode */ 104 /* 6pack stuff */ 156 /* ----> 6pack timer interrupt handler and friends. <---- */ 264 /* Close the low-level part of the 6pack channel. */ 421 * a block of 6pack data has been received, which can now be decapsulated [all …]
|
H A D | Kconfig | 13 Although KISS is less advanced than the 6pack protocol, it has 20 config 6PACK 21 tristate "Serial port 6PACK driver" 24 6pack is a transmission protocol for the data exchange between your 33 driver, read <file:Documentation/networking/6pack.rst>. 36 will be called 6pack.
|
/linux/tools/testing/selftests/tpm2/ |
H A D | tpm2.py | 260 return struct.pack(fmt, self.session_handle, len(self.nonce), 278 return struct.pack(fmt, len(self.user_auth), self.user_auth, 311 return struct.pack(self.__fmt(), 413 cmd = struct.pack(fmt, 445 cmd = struct.pack( 459 cmd = struct.pack(fmt, 501 cmd = struct.pack(fmt, 516 cmd = struct.pack(fmt, 526 cmd = struct.pack(fmt, 536 cmd = struct.pack(fmt, [all …]
|
/linux/drivers/net/ethernet/aquantia/atlantic/macsec/ |
H A D | macsec_api.h | 57 /*! Pack the fields of rec, and write the packed data into the 75 /*! Pack the fields of rec, and write the packed data into the 93 /*! Pack the fields of rec, and write the packed data into the 111 /*! Pack the fields of rec, and write the packed data into the 129 /*! Pack the fields of rec, and write the packed data into the 147 /*! Pack the fields of rec, and write the packed data into the 165 /*! Pack the fields of rec, and write the packed data into the 183 /*! Pack the fields of rec, and write the packed data into the 201 /*! Pack the fields of rec, and write the packed data into the 219 /*! Pack the fields of rec, and write the packed data into the [all …]
|
/linux/sound/usb/usx2y/ |
H A D | usx2yhwdeppcm.c | 105 int count, counts, pack; in usx2y_hwdep_urb_play_prepare() local 119 for (pack = 0; pack < nr_of_packs(); pack++) { in usx2y_hwdep_urb_play_prepare() 127 urb->iso_frame_desc[pack].offset = shm->captured_iso[shm->playback_iso_head].offset; in usx2y_hwdep_urb_play_prepare() 128 urb->iso_frame_desc[pack].length = shm->captured_iso[shm->playback_iso_head].length; in usx2y_hwdep_urb_play_prepare() 130 memset((char *)urb->transfer_buffer + urb->iso_frame_desc[pack].offset, 0, in usx2y_hwdep_urb_play_prepare() 131 urb->iso_frame_desc[pack].length); in usx2y_hwdep_urb_play_prepare() 145 int pack, head; in usx2y_usbpcm_urb_capt_iso_advance() local 147 for (pack = 0; pack < nr_of_packs(); ++pack) { in usx2y_usbpcm_urb_capt_iso_advance() 148 desc = urb->iso_frame_desc + pack; in usx2y_usbpcm_urb_capt_iso_advance() 154 shm->captured_iso[head].frame = urb->start_frame + pack; in usx2y_usbpcm_urb_capt_iso_advance() [all …]
|
H A D | usbusx2yaudio.c | 124 int count, counts, pack, len; in usx2y_urb_play_prepare() local 127 for (pack = 0; pack < nr_of_packs(); pack++) { in usx2y_urb_play_prepare() 129 counts = cap_urb->iso_frame_desc[pack].actual_length / usx2y->stride; in usx2y_urb_play_prepare() 137 urb->iso_frame_desc[pack].offset = pack ? in usx2y_urb_play_prepare() 138 urb->iso_frame_desc[pack - 1].offset + in usx2y_urb_play_prepare() 139 urb->iso_frame_desc[pack - 1].length : in usx2y_urb_play_prepare() 141 urb->iso_frame_desc[pack].length = cap_urb->iso_frame_desc[pack].actual_length; in usx2y_urb_play_prepare() 488 unsigned long pack; in usx2y_urbs_start() local 509 for (pack = 0; pack < nr_of_packs(); pack++) { in usx2y_urbs_start() 510 urb->iso_frame_desc[pack].offset = subs->maxpacksize * pack; in usx2y_urbs_start() [all …]
|
/linux/drivers/gpu/drm/armada/ |
H A D | armada_fb.c | 37 FMT(RGB888, 888PACK, CFG_SWAPRB); in armada_framebuffer_create() 38 FMT(BGR888, 888PACK, 0); in armada_framebuffer_create() 43 FMT(YUYV, 422PACK, CFG_YUV2RGB | CFG_SWAPYU | CFG_SWAPUV); in armada_framebuffer_create() 44 FMT(UYVY, 422PACK, CFG_YUV2RGB); in armada_framebuffer_create() 45 FMT(VYUY, 422PACK, CFG_YUV2RGB | CFG_SWAPUV); in armada_framebuffer_create() 46 FMT(YVYU, 422PACK, CFG_YUV2RGB | CFG_SWAPYU); in armada_framebuffer_create()
|
/linux/scripts/ |
H A D | tools-support-relr.sh | 11 # ld.lld before 15 did not support -z pack-relative-relocs. 12 if ! $LD $tmp_file.o -shared -Bsymbolic --pack-dyn-relocs=relr -o $tmp_file 2>/dev/null; then 13 $LD $tmp_file.o -shared -Bsymbolic -z pack-relative-relocs -o $tmp_file 2>&1 | 14 grep -q pack-relative-relocs && exit 1
|
/linux/sound/soc/tegra/ |
H A D | tegra20_spdif.h | 91 * Pack data mode: 328 * 16-bit (BIT_MODE=00, PACK=0) 329 * 20-bit (BIT_MODE=01, PACK=0) 330 * 24-bit (BIT_MODE=10, PACK=0) 331 * raw (BIT_MODE=11, PACK=0) 332 * 16-bit packed (BIT_MODE=00, PACK=1) 368 * 16-bit (BIT_MODE=00, PACK=0) 369 * 20-bit (BIT_MODE=01, PACK=0) 370 * 24-bit (BIT_MODE=10, PACK=0) 371 * raw (BIT_MODE=11, PACK=0) [all …]
|
/linux/drivers/misc/ibmasm/ |
H A D | i2o.h | 10 #pragma pack(1) 21 #pragma pack() 35 #pragma pack(1) 40 #pragma pack()
|
/linux/drivers/net/dsa/sja1105/ |
H A D | sja1105_clocking.c | 134 sja1105_cgu_idiv_packing(packed_buf, &idiv, PACK); in sja1105_cgu_idiv_config() 185 sja1105_cgu_mii_control_packing(packed_buf, &mii_tx_clk, PACK); in sja1105_cgu_mii_tx_clk_config() 212 sja1105_cgu_mii_control_packing(packed_buf, &mii_rx_clk, PACK); in sja1105_cgu_mii_rx_clk_config() 239 sja1105_cgu_mii_control_packing(packed_buf, &mii_ext_tx_clk, PACK); in sja1105_cgu_mii_ext_tx_clk_config() 266 sja1105_cgu_mii_control_packing(packed_buf, &mii_ext_rx_clk, PACK); in sja1105_cgu_mii_ext_rx_clk_config() 368 sja1105_cgu_mii_control_packing(packed_buf, &txc, PACK); in sja1105_cgu_rgmii_tx_clk_config() 419 sja1105_cfg_pad_mii_packing(packed_buf, &pad_mii_tx, PACK); in sja1105_rgmii_cfg_pad_tx_config() 455 sja1105_cfg_pad_mii_packing(packed_buf, &pad_mii_rx, PACK); in sja1105_cfg_pad_rx_config() 533 sja1105_cfg_pad_mii_id_packing(packed_buf, &pad_mii_id, PACK); in sja1105pqrs_setup_rgmii_delay() 549 sja1105_cfg_pad_mii_id_packing(packed_buf, &pad_mii_id, PACK); in sja1105pqrs_setup_rgmii_delay() [all …]
|
/linux/tools/perf/scripts/python/ |
H A D | export-to-postgresql.py | 735 file_header = struct.pack("!11sii", b"PGCOPY\n\377\r\n\0", 0, 0) 980 value = struct.pack(fmt, 2, 8, evsel_id, n, evsel_name) 987 value = struct.pack(fmt, 3, 8, machine_id, 4, pid, n, root_dir) 991 value = struct.pack("!hiqiqiqiiii", 5, 8, thread_id, 8, machine_id, 8, process_id, 4, pid, 4, tid) 998 value = struct.pack(fmt, 5, 8, comm_id, n, comm_str, 8, thread_id, 8, time, 1, exec_flag) 1003 value = struct.pack(fmt, 3, 8, comm_thread_id, 8, comm_id, 8, thread_id) 1014 value = struct.pack(fmt, 5, 8, dso_id, 8, machine_id, n1, short_name, n2, long_name, n3, build_id) 1021 …value = struct.pack(fmt, 6, 8, symbol_id, 8, dso_id, 8, sym_start, 8, sym_end, 4, binding, n, symb… 1028 value = struct.pack(fmt, 2, 4, branch_type, n, name) 1033 …value = struct.pack("!hiqiqiqiqiqiqiqiqiqiqiiiqiqiqiqiiiBiqiqiqii", 21, 8, sample_id, 8, evsel_id,… [all …]
|