Searched refs:pack (Results 1 - 200 of 261) sorted by relevance

12

/linux-4.1.27/tools/usb/usbip/src/
H A Dusbip_network.h36 #define PACK_OP_COMMON(pack, op_common) do {\
37 usbip_net_pack_uint16_t(pack, &(op_common)->version);\
38 usbip_net_pack_uint16_t(pack, &(op_common)->code);\
39 usbip_net_pack_uint32_t(pack, &(op_common)->status);\
78 #define PACK_OP_IMPORT_REQUEST(pack, request) do {\
81 #define PACK_OP_IMPORT_REPLY(pack, reply) do {\
82 usbip_net_pack_usb_device(pack, &(reply)->udev);\
100 #define PACK_OP_EXPORT_REQUEST(pack, request) do {\
101 usbip_net_pack_usb_device(pack, &(request)->udev);\
104 #define PACK_OP_EXPORT_REPLY(pack, reply) do {\
121 #define PACK_OP_UNEXPORT_REQUEST(pack, request) do {\
122 usbip_net_pack_usb_device(pack, &(request)->udev);\
125 #define PACK_OP_UNEXPORT_REPLY(pack, reply) do {\
163 #define PACK_OP_DEVLIST_REQUEST(pack, request) do {\
166 #define PACK_OP_DEVLIST_REPLY(pack, reply) do {\
167 usbip_net_pack_uint32_t(pack, &(reply)->ndev);\
170 void usbip_net_pack_uint32_t(int pack, uint32_t *num);
171 void usbip_net_pack_uint16_t(int pack, uint16_t *num);
172 void usbip_net_pack_usb_device(int pack, struct usbip_usb_device *udev);
173 void usbip_net_pack_usb_interface(int pack, struct usbip_usb_interface *uinf);
H A Dusbip_network.c65 void usbip_net_pack_uint32_t(int pack, uint32_t *num) usbip_net_pack_uint32_t() argument
69 if (pack) usbip_net_pack_uint32_t()
77 void usbip_net_pack_uint16_t(int pack, uint16_t *num) usbip_net_pack_uint16_t() argument
81 if (pack) usbip_net_pack_uint16_t()
89 void usbip_net_pack_usb_device(int pack, struct usbip_usb_device *udev) usbip_net_pack_usb_device() argument
91 usbip_net_pack_uint32_t(pack, &udev->busnum); usbip_net_pack_usb_device()
92 usbip_net_pack_uint32_t(pack, &udev->devnum); usbip_net_pack_usb_device()
93 usbip_net_pack_uint32_t(pack, &udev->speed); usbip_net_pack_usb_device()
95 usbip_net_pack_uint16_t(pack, &udev->idVendor); usbip_net_pack_usb_device()
96 usbip_net_pack_uint16_t(pack, &udev->idProduct); usbip_net_pack_usb_device()
97 usbip_net_pack_uint16_t(pack, &udev->bcdDevice); usbip_net_pack_usb_device()
100 void usbip_net_pack_usb_interface(int pack __attribute__((unused)), usbip_net_pack_usb_interface()
/linux-4.1.27/arch/arm/include/uapi/asm/
H A Dstatfs.h6 * Let's pack it so the padding goes away to simplify dual ABI support.
7 * Note that user space does NOT have to pack this structure.
/linux-4.1.27/arch/arm/lib/
H A Dio-readsw-armv4.S13 .macro pack, rd, hw1, hw2
40 pack r3, r3, r4
44 pack r4, r4, r5
48 pack r5, r5, ip
52 pack ip, ip, lr
63 pack r3, r3, r4
67 pack r4, r4, ip
76 pack r3, r3, ip
/linux-4.1.27/drivers/misc/ibmasm/
H A Di2o.h24 #pragma pack(1)
35 #pragma pack()
49 #pragma pack(1)
54 #pragma pack()
H A Ddot_command.h43 #pragma pack(1)
51 #pragma pack()
H A Dr_heartbeat.c34 #pragma pack(1)
47 #pragma pack()
/linux-4.1.27/scripts/
H A Dsign-file102 pack("CCC", 85, 4, 3) => "commonName",
103 pack("CCC", 85, 4, 6) => "countryName",
104 pack("CCC", 85, 4, 10) => "organizationName",
105 pack("CCC", 85, 4, 11) => "organizationUnitName",
106 pack("CCCCCCCCC", 42, 134, 72, 134, 247, 13, 1, 1, 1) => "rsaEncryption",
107 pack("CCCCCCCCC", 42, 134, 72, 134, 247, 13, 1, 1, 5) => "sha1WithRSAEncryption",
108 pack("CCCCCCCCC", 42, 134, 72, 134, 247, 13, 1, 9, 1) => "emailAddress",
109 pack("CCC", 85, 29, 35) => "authorityKeyIdentifier",
110 pack("CCC", 85, 29, 14) => "subjectKeyIdentifier",
111 pack("CCC", 85, 29, 19) => "basicConstraints"
320 $prologue = pack("C*",
326 $prologue = pack("C*",
332 $prologue = pack("C*",
338 $prologue = pack("C*",
344 $prologue = pack("C*",
381 $signature = pack("n", length($signature)) . $signature,
390 my $info = pack("CCCCCxxxN",
/linux-4.1.27/drivers/staging/unisys/common-spar/include/
H A Dvmcallinterface.h98 #pragma pack(push, 1)
105 #pragma pack(pop)
110 #pragma pack(push, 1)
122 #pragma pack(pop)
127 #pragma pack(push, 1)
135 #pragma pack(pop)
140 #pragma pack(push, 1)
149 #pragma pack(pop)
H A Dvbusdeviceinfo.h21 #pragma pack(push, 1) /* both GCC and VC now allow this pragma */
36 #pragma pack(pop)
/linux-4.1.27/drivers/net/wireless/b43/
H A Dpio.c38 struct b43_pio_txpacket *pack) generate_cookie()
51 cookie |= pack->index; generate_cookie()
59 struct b43_pio_txpacket **pack) parse_cookie()
87 *pack = &q->packets[pack_index]; parse_cookie()
193 struct b43_pio_txpacket *pack; b43_pio_cancel_tx_packets() local
197 pack = &(q->packets[i]); b43_pio_cancel_tx_packets()
198 if (pack->skb) { b43_pio_cancel_tx_packets()
199 ieee80211_free_txskb(q->dev->wl->hw, pack->skb); b43_pio_cancel_tx_packets()
200 pack->skb = NULL; b43_pio_cancel_tx_packets()
362 static void pio_tx_frame_2byte_queue(struct b43_pio_txpacket *pack, pio_tx_frame_2byte_queue() argument
365 struct b43_pio_txqueue *q = pack->queue; pio_tx_frame_2byte_queue()
366 const char *frame = pack->skb->data; pio_tx_frame_2byte_queue()
367 unsigned int frame_len = pack->skb->len; pio_tx_frame_2byte_queue()
432 static void pio_tx_frame_4byte_queue(struct b43_pio_txpacket *pack, pio_tx_frame_4byte_queue() argument
435 struct b43_pio_txqueue *q = pack->queue; pio_tx_frame_4byte_queue()
436 const char *frame = pack->skb->data; pio_tx_frame_4byte_queue()
437 unsigned int frame_len = pack->skb->len; pio_tx_frame_4byte_queue()
458 struct b43_pio_txpacket *pack; pio_tx_frame() local
466 pack = list_entry(q->packets_list.next, pio_tx_frame()
469 cookie = generate_cookie(q, pack); pio_tx_frame()
485 pack->skb = skb; pio_tx_frame()
487 pio_tx_frame_4byte_queue(pack, (const u8 *)txhdr, hdrlen); pio_tx_frame()
489 pio_tx_frame_2byte_queue(pack, (const u8 *)txhdr, hdrlen); pio_tx_frame()
493 list_del(&pack->list); pio_tx_frame()
580 struct b43_pio_txpacket *pack = NULL; b43_pio_handle_txstatus() local
584 q = parse_cookie(dev, status->cookie, &pack); b43_pio_handle_txstatus()
587 B43_WARN_ON(!pack); b43_pio_handle_txstatus()
589 info = IEEE80211_SKB_CB(pack->skb); b43_pio_handle_txstatus()
593 total_len = pack->skb->len + b43_txhdr_size(dev); b43_pio_handle_txstatus()
598 ieee80211_tx_status(dev->wl->hw, pack->skb); b43_pio_handle_txstatus()
599 pack->skb = NULL; b43_pio_handle_txstatus()
600 list_add(&pack->list, &q->packets_list); b43_pio_handle_txstatus()
37 generate_cookie(struct b43_pio_txqueue *q, struct b43_pio_txpacket *pack) generate_cookie() argument
57 parse_cookie(struct b43_wldev *dev, u16 cookie, struct b43_pio_txpacket **pack) parse_cookie() argument
/linux-4.1.27/drivers/hwmon/
H A Dasus_atk0110.c285 union acpi_object *pack, atk_get_pack_member()
314 return &pack->package.elements[offset]; atk_get_pack_member()
501 union acpi_object *pack; atk_ggrp() local
515 pack = buf.pointer; atk_ggrp()
516 if (pack->type != ACPI_TYPE_PACKAGE) { atk_ggrp()
518 ACPI_FREE(pack); atk_ggrp()
522 if (pack->package.count < 1) { atk_ggrp()
524 ACPI_FREE(pack); atk_ggrp()
527 return pack; atk_ggrp()
709 static void atk_pack_print(char *buf, size_t sz, union acpi_object *pack) atk_pack_print() argument
714 for (i = 0; i < pack->package.count; i++) { atk_pack_print()
715 union acpi_object *obj = &pack->package.elements[i]; atk_pack_print()
744 union acpi_object *pack = &ret->package.elements[i]; atk_debugfs_ggrp_open() local
747 if (pack->type != ACPI_TYPE_PACKAGE) atk_debugfs_ggrp_open()
749 if (!pack->package.count) atk_debugfs_ggrp_open()
751 id = &pack->package.elements[0]; atk_debugfs_ggrp_open()
759 atk_pack_print(buf, 512, pack); atk_debugfs_ggrp_open()
970 union acpi_object *pack; atk_enumerate_old_hwmon() local
986 pack = buf.pointer; atk_enumerate_old_hwmon()
987 for (i = 1; i < pack->package.count; i++) { atk_enumerate_old_hwmon()
988 union acpi_object *obj = &pack->package.elements[i]; atk_enumerate_old_hwmon()
1008 pack = buf.pointer; atk_enumerate_old_hwmon()
1009 for (i = 1; i < pack->package.count; i++) { atk_enumerate_old_hwmon()
1010 union acpi_object *obj = &pack->package.elements[i]; atk_enumerate_old_hwmon()
1030 pack = buf.pointer; atk_enumerate_old_hwmon()
1031 for (i = 1; i < pack->package.count; i++) { atk_enumerate_old_hwmon()
1032 union acpi_object *obj = &pack->package.elements[i]; atk_enumerate_old_hwmon()
1049 union acpi_object *pack; atk_ec_present() local
1054 pack = atk_ggrp(data, ATK_MUX_MGMT); atk_ec_present()
1055 if (IS_ERR(pack)) { atk_ec_present()
1056 if (PTR_ERR(pack) == -ENOENT) { atk_ec_present()
1061 return PTR_ERR(pack); atk_ec_present()
1066 for (i = 0; i < pack->package.count; i++) { atk_ec_present()
1067 union acpi_object *obj = &pack->package.elements[i]; atk_ec_present()
1088 ACPI_FREE(pack); atk_ec_present()
1154 union acpi_object *pack; atk_enumerate_new_hwmon() local
1177 pack = atk_ggrp(data, ATK_MUX_HWMON); atk_enumerate_new_hwmon()
1178 if (IS_ERR(pack)) atk_enumerate_new_hwmon()
1179 return PTR_ERR(pack); atk_enumerate_new_hwmon()
1181 for (i = 0; i < pack->package.count; i++) { atk_enumerate_new_hwmon()
1182 union acpi_object *obj = &pack->package.elements[i]; atk_enumerate_new_hwmon()
1189 ACPI_FREE(pack); atk_enumerate_new_hwmon()
284 atk_get_pack_member(struct atk_data *data, union acpi_object *pack, enum atk_pack_member m) atk_get_pack_member() argument
/linux-4.1.27/tools/perf/util/
H A Dwrapper.c7 * There's no pack memory to release - but stay close to the Git
/linux-4.1.27/drivers/net/hamradio/
H A D6pack.c2 * 6pack.c This module implements the 6pack protocol for kernel-based
43 #define SIXP_SEOF 0x40 /* start and end of a 6pack frame */
48 #define SIXP_CHKSUM 0xFF /* valid checksum of a 6pack frame */
77 /* 6pack configuration. */
78 #define SIXP_NRUNIT 31 /* MAX number of 6pack channels */
107 unsigned char mode; /* 6pack mode */
109 /* 6pack stuff */
161 /* ----> 6pack timer interrupt handler and friends. <---- */
274 /* Close the low-level part of the 6pack channel. */ sp_close()
432 * a block of 6pack data has been received, which can now be decapsulated
557 * Open the high-level part of the 6pack channel.
559 * 6pack line discipline is called for. Because we are
663 * Close down a 6pack channel.
665 * TTY line discipline to what it was before it got hooked to 6pack
691 /* Free all 6pack frame buffers. */ sixpack_close()
696 /* Perform I/O control on an active 6pack channel. */ sixpack_ioctl()
779 .name = "6pack",
790 /* Initialize 6pack control device -- register 6pack line discipline */
793 "AX.25: 6pack driver, " SIXPACK_VERSION "\n";
795 "6pack: can't register line discipline (err = %d)\n";
811 "6pack: can't unregister line discipline (err = %d)\n";
821 /* encode an AX.25 packet into 6pack */
881 /* identify and execute a 6pack priority command byte */
901 printk(KERN_DEBUG "6pack: protocol violation\n"); decode_prio_command()
938 /* identify and execute a standard 6pack command byte */
969 printk(KERN_DEBUG "6pack: bad checksum %2.2x\n", checksum); decode_std_command()
977 case SIXP_TX_URUN: printk(KERN_DEBUG "6pack: TX underrun\n"); decode_std_command()
979 case SIXP_RX_ORUN: printk(KERN_DEBUG "6pack: RX overrun\n"); decode_std_command()
982 printk(KERN_DEBUG "6pack: RX buffer overflow\n"); decode_std_command()
986 /* decode a 6pack packet */
1010 MODULE_DESCRIPTION("6pack driver for AX.25");
/linux-4.1.27/sound/usb/usx2y/
H A Dusx2yhwdeppcm.c113 int count, counts, pack; usX2Y_hwdep_urb_play_prepare() local
127 for (pack = 0; pack < nr_of_packs(); pack++) { usX2Y_hwdep_urb_play_prepare()
135 urb->iso_frame_desc[pack].offset = shm->captured_iso[shm->playback_iso_head].offset; usX2Y_hwdep_urb_play_prepare()
136 urb->iso_frame_desc[pack].length = shm->captured_iso[shm->playback_iso_head].length; usX2Y_hwdep_urb_play_prepare()
138 memset((char *)urb->transfer_buffer + urb->iso_frame_desc[pack].offset, 0, usX2Y_hwdep_urb_play_prepare()
139 urb->iso_frame_desc[pack].length); usX2Y_hwdep_urb_play_prepare()
152 int pack; usX2Y_usbpcm_urb_capt_iso_advance() local
153 for (pack = 0; pack < nr_of_packs(); ++pack) { usX2Y_usbpcm_urb_capt_iso_advance()
154 struct usb_iso_packet_descriptor *desc = urb->iso_frame_desc + pack; usX2Y_usbpcm_urb_capt_iso_advance()
160 shm->captured_iso[head].frame = urb->start_frame + pack; usX2Y_usbpcm_urb_capt_iso_advance()
437 unsigned long pack; usX2Y_usbpcm_urbs_start() local
441 for (pack = 0; pack < nr_of_packs(); pack++) { usX2Y_usbpcm_urbs_start()
442 urb->iso_frame_desc[pack].offset = subs->maxpacksize * (pack + u * nr_of_packs()); usX2Y_usbpcm_urbs_start()
443 urb->iso_frame_desc[pack].length = subs->maxpacksize; usX2Y_usbpcm_urbs_start()
H A Dusb_stream.c37 int pack, lb = 0; playback_prep_freqn() local
39 for (pack = 0; pack < sk->n_o_ps; pack++) { playback_prep_freqn()
45 urb->iso_frame_desc[pack].offset = lb; playback_prep_freqn()
46 urb->iso_frame_desc[pack].length = l; playback_prep_freqn()
52 urb->number_of_packets = pack; playback_prep_freqn()
626 for (pack = 1; pack < urb->number_of_packets; ++pack) { i_capture_start()
627 int l = urb->iso_frame_desc[pack].actual_length; i_capture_start()
H A Dusbusx2yaudio.c131 int count, counts, pack; usX2Y_urb_play_prepare() local
136 for (pack = 0; pack < nr_of_packs(); pack++) { usX2Y_urb_play_prepare()
138 counts = cap_urb->iso_frame_desc[pack].actual_length / usX2Y->stride; usX2Y_urb_play_prepare()
145 urb->iso_frame_desc[pack].offset = pack ? usX2Y_urb_play_prepare()
146 urb->iso_frame_desc[pack - 1].offset + usX2Y_urb_play_prepare()
147 urb->iso_frame_desc[pack - 1].length : usX2Y_urb_play_prepare()
149 urb->iso_frame_desc[pack].length = cap_urb->iso_frame_desc[pack].actual_length; usX2Y_urb_play_prepare()
485 unsigned long pack; usX2Y_urbs_start() local
489 for (pack = 0; pack < nr_of_packs(); pack++) { usX2Y_urbs_start()
490 urb->iso_frame_desc[pack].offset = subs->maxpacksize * pack; usX2Y_urbs_start()
491 urb->iso_frame_desc[pack].length = subs->maxpacksize; usX2Y_urbs_start()
/linux-4.1.27/drivers/gpu/drm/radeon/
H A Devergreen_smc.h28 #pragma pack(push, 1)
65 #pragma pack(pop)
H A Drv770_smc.h28 #pragma pack(push, 1)
174 #pragma pack(pop)
H A Dsmu7.h27 #pragma pack(push, 1)
167 #pragma pack(pop)
H A Dsmu7_fusion.h29 #pragma pack(push, 1)
297 #pragma pack(pop)
H A Dnislands_smc.h26 #pragma pack(push, 1)
326 #pragma pack(pop)
H A Dppsmc.h26 #pragma pack(push, 1)
189 #pragma pack(pop)
H A Dsislands_smc.h28 #pragma pack(push, 1)
403 #pragma pack(pop)
H A Dsmu7_discrete.h29 #pragma pack(push, 1)
511 #pragma pack(pop)
H A DObjectID.h28 #pragma pack(1)
729 #pragma pack()
H A Dpptable.h26 #pragma pack(1)
688 #pragma pack()
H A Dr600_hdmi.c444 DRM_ERROR("failed to pack audio infoframe\n"); r600_hdmi_update_audio_settings()
H A Dradeon_audio.c538 DRM_ERROR("failed to pack AVI infoframe: %d\n", err); radeon_audio_set_avi_packet()
/linux-4.1.27/arch/arm/mach-pxa/include/mach/
H A Dh5000.h50 #define H5000_GPIO_OPT_SPI_CLK (23) /* to extension pack */
51 #define H5000_GPIO_OPT_SPI_CS_N (24) /* to extension pack */
52 #define H5000_GPIO_OPT_SPI_DOUT (25) /* to extension pack */
53 #define H5000_GPIO_OPT_SPI_DIN (26) /* to extension pack */
95 #define H5000_GPIO_OPT_NVRAM (64) /* controls power to expansion pack */
/linux-4.1.27/tools/perf/scripts/python/
H A Dexport-to-postgresql.py222 file_header = struct.pack("!11sii", "PGCOPY\n\377\r\n\0", 0, 0)
385 value = struct.pack(fmt, 2, 8, evsel_id, n, evsel_name)
391 value = struct.pack(fmt, 3, 8, machine_id, 4, pid, n, root_dir)
395 value = struct.pack("!hiqiqiqiiii", 5, 8, thread_id, 8, machine_id, 8, process_id, 4, pid, 4, tid)
401 value = struct.pack(fmt, 2, 8, comm_id, n, comm_str)
406 value = struct.pack(fmt, 3, 8, comm_thread_id, 8, comm_id, 8, thread_id)
414 value = struct.pack(fmt, 5, 8, dso_id, 8, machine_id, n1, short_name, n2, long_name, n3, build_id)
420 value = struct.pack(fmt, 6, 8, symbol_id, 8, dso_id, 8, sym_start, 8, sym_end, 4, binding, n, symbol_name)
426 value = struct.pack(fmt, 2, 4, branch_type, n, name)
431 value = struct.pack("!hiqiqiqiqiqiqiqiqiqiqiiiqiqiqiqiiiB", 17, 8, sample_id, 8, evsel_id, 8, machine_id, 8, thread_id, 8, comm_id, 8, dso_id, 8, symbol_id, 8, sym_offset, 8, ip, 8, time, 4, cpu, 8, to_dso_id, 8, to_symbol_id, 8, to_sym_offset, 8, to_ip, 4, branch_type, 1, in_tx)
433 value = struct.pack("!hiqiqiqiqiqiqiqiqiqiqiiiqiqiqiqiqiqiqiqiiiB", 21, 8, sample_id, 8, evsel_id, 8, machine_id, 8, thread_id, 8, comm_id, 8, dso_id, 8, symbol_id, 8, sym_offset, 8, ip, 8, time, 4, cpu, 8, to_dso_id, 8, to_symbol_id, 8, to_sym_offset, 8, to_ip, 8, period, 8, weight, 8, transaction, 8, data_src, 4, branch_type, 1, in_tx)
438 value = struct.pack(fmt, 4, 8, cp_id, 8, parent_id, 8, symbol_id, 8, ip)
443 value = struct.pack(fmt, 11, 8, cr_id, 8, thread_id, 8, comm_id, 8, call_path_id, 8, call_time, 8, return_time, 8, branch_count, 8, call_id, 8, return_id, 8, parent_call_path_id, 4, flags)
/linux-4.1.27/drivers/media/usb/go7007/
H A Dgo7007-fw.c955 u16 pack[] = { brctrl_to_package() local
1081 return copy_packages(code, pack, 6, space); brctrl_to_package()
1091 u16 pack[] = { config_package() local
1203 return copy_packages(code, pack, 5, space); config_package()
1215 u16 pack[] = { seqhead_to_package() local
1270 return copy_packages(code, pack, 3, space); seqhead_to_package()
1294 u16 pack[] = { avsync_to_package() local
1313 return copy_packages(code, pack, 1, space); avsync_to_package()
1319 u16 pack[] = { final_package() local
1376 return copy_packages(code, pack, 1, space); final_package()
1387 u16 pack[] = { audio_to_package() local
1426 return copy_packages(code, pack, 2, space); audio_to_package()
1436 u16 pack[32]; modet_to_package() local
1462 memset(pack, 0, 64); modet_to_package()
1465 pack[i * 2 + 3] <<= 2; modet_to_package()
1466 pack[i * 2 + 3] |= go->modet_map[mb]; modet_to_package()
1469 pack[i * 2 + 2] = addr++; modet_to_package()
1472 pack[0] = 0x2000 | i; modet_to_package()
1473 ret = copy_packages(code + cnt, pack, 1, space - cnt); modet_to_package()
1478 memset(pack, 0, 64); modet_to_package()
1480 pack[i * 2 + 3] = 0; modet_to_package()
1483 memset(pack, 0, 64); modet_to_package()
1486 pack[i * 2 + 2] = addr; modet_to_package()
1487 pack[i * 2 + 3] = 0; modet_to_package()
1490 pack[0] = 0x2000 | i; modet_to_package()
1491 ret = copy_packages(code + cnt, pack, 1, space - cnt); modet_to_package()
1496 memset(pack, 0, 64); modet_to_package()
/linux-4.1.27/drivers/pnp/pnpbios/
H A Dpnpbios.h96 #pragma pack(1)
125 #pragma pack()
141 #pragma pack(1)
161 #pragma pack()
/linux-4.1.27/include/uapi/linux/
H A Dcciss_defs.h53 #pragma pack(1)
128 #pragma pack()
H A Defs_fs_sb.h37 char fs_fpack[6]; /* file system pack name */
H A Dvirtio_balloon.h62 * pack it, to disable this padding. This also often causes compiler to
H A Dfdreg.h104 * pack more sectors on a track) */
/linux-4.1.27/arch/arm/mach-sa1100/include/mach/
H A Dh3xxx.h65 #define H3XXX_EGPIO_OPT_RESET (H3XXX_EGPIO_BASE + 2) /* reset the attached option pack. active high. */
68 #define H3XXX_EGPIO_OPT_ON (H3XXX_EGPIO_BASE + 5) /* full power to option pack. active high. */
H A Dsimpad.h143 #define SIMPAD_BATT_NOT_INSTALLED 0x20 /* For expansion pack batteries */
/linux-4.1.27/drivers/gpu/drm/nouveau/nvkm/engine/gr/
H A Dgf100.h155 #define pack_for_each_init(init, pack, head) \
156 for (pack = head; pack && pack->init; pack++) \
157 for (init = pack->init; init && init->count; init++)
H A Dgf100.c669 const struct gf100_gr_pack *pack; gf100_gr_mmio() local
672 pack_for_each_init(init, pack, p) { pack_for_each_init()
685 const struct gf100_gr_pack *pack; gf100_gr_icmd() local
691 pack_for_each_init(init, pack, p) { pack_for_each_init()
695 if ((pack == p && init == p->init) || data != init->data) { pack_for_each_init()
713 const struct gf100_gr_pack *pack; gf100_gr_mthd() local
717 pack_for_each_init(init, pack, p) { pack_for_each_init()
718 u32 ctrl = 0x80000000 | pack->type; pack_for_each_init()
722 if ((pack == p && init == p->init) || data != init->data) { pack_for_each_init()
1219 const struct gf100_gr_pack *pack, gf100_gr_init_csdata()
1234 pack_for_each_init(init, iter, pack) { pack_for_each_init()
1218 gf100_gr_init_csdata(struct gf100_gr_priv *priv, const struct gf100_gr_pack *pack, u32 falcon, u32 starstar, u32 base) gf100_gr_init_csdata() argument
/linux-4.1.27/drivers/net/ethernet/intel/i40e/
H A Di40e_dcb.h93 #pragma pack(1)
101 #pragma pack()
/linux-4.1.27/drivers/staging/unisys/common-spar/include/channels/
H A Dvbuschannel.h60 #pragma pack(push, 1) /* both GCC and VC now allow this pragma */
92 #pragma pack(pop)
H A Dchannel.h190 #pragma pack(push, 1) /* both GCC and VC now allow this pragma */
270 #pragma pack(pop)
H A Diochannel.h227 * structs with pragma pack */
232 #pragma pack(push, 1)
688 #pragma pack(pop)
/linux-4.1.27/drivers/net/ethernet/brocade/bna/
H A Dbfa_defs_mfg_comm.h62 #pragma pack(1)
153 #pragma pack()
H A Dbfi_cna.h25 #pragma pack(1)
162 #pragma pack()
H A Dcna.h45 #pragma pack(1)
49 #pragma pack()
H A Dbfa_defs.h190 #pragma pack(1)
232 #pragma pack()
H A Dbfa_defs_cna.h112 #pragma pack(1)
219 #pragma pack()
H A Dbfi.h24 #pragma pack(1)
569 #pragma pack()
H A Dbfi_enet.h39 #pragma pack(1)
857 #pragma pack()
/linux-4.1.27/fs/udf/
H A Dudf_sb.h55 #pragma pack(1) /* XXX(hch): Why? This file just defines in-core structures */
111 #pragma pack()
/linux-4.1.27/arch/m68k/fpsp040/
H A Dsacos.S66 movel (%a0),%d0 | ...pack exponent with upper 16 fraction
95 movel (%a0),%d0 | ...pack exponent with upper 16 fraction
H A Dx_unsupp.S16 | if fmove.p fpm,<ea> then pack source (fpm)
/linux-4.1.27/sound/pci/asihpi/
H A Dhpidspcd.h34 /*#pragma pack(push, 1) */
49 /*#pragma pack(pop) */
H A Dhpimsgx.c104 #pragma pack(push, 1)
139 #pragma pack(pop)
H A Dhpi_internal.h548 #pragma pack(push, 1)
1388 #pragma pack(pop)
H A Dhpi.h1117 #pragma pack(push, 1)
1160 #pragma pack(pop)
/linux-4.1.27/net/9p/
H A Dtrans_virtio.c69 * @sg: scatter gather list which is used to pack a request (protected?)
172 * pack_sg_list - pack a scatter gather list from a linear buffer
173 * @sg: scatter/gather list to pack into
175 * @limit: maximum segment to pack data to
176 * @data: data to pack into scatter/gather list
177 * @count: amount of data to pack into the scatter/gather list
179 * sg_lists have multiple segments of various sizes. This will pack
216 * @sg: scatter/gather list to pack into
219 * @nr_pages: number of pages to pack into the scatter/gather list
220 * @offs: amount of data in the beginning of first page _not_ to pack
221 * @count: amount of data to pack into the scatter/gather list
/linux-4.1.27/drivers/video/fbdev/mb862xx/
H A Dmb862xxfbdrv.c230 reg = pack(d_pitch(&fbi->var) / GC_L0M_L0W_UNIT, mb862xxfb_set_par()
241 reg = pack(fbi->var.yres - 1, fbi->var.xres); mb862xxfb_set_par()
255 reg = pack(fbi->var.xres - 1, fbi->var.xres - 1); mb862xxfb_set_par()
257 reg = pack((fbi->var.yres - 1), vsp(&fbi->var)); mb862xxfb_set_par()
260 pack((fbi->var.hsync_len - 1), hsp(&fbi->var)); mb862xxfb_set_par()
262 outreg(disp, GC_HTP, pack(h_total(&fbi->var) - 1, 0)); mb862xxfb_set_par()
263 outreg(disp, GC_VTR, pack(v_total(&fbi->var) - 1, 0)); mb862xxfb_set_par()
279 reg = pack(var->yoffset, var->xoffset); mb862xxfb_pan()
282 reg = pack(info->var.yres_virtual, info->var.xres_virtual); mb862xxfb_pan()
336 pack((l1_cfg->sh << 11) / l1_cfg->dh, mb862xxfb_ioctl()
344 pack((l1_cfg->sh << 11) / l1_cfg->dh, mb862xxfb_ioctl()
347 pack(l1_cfg->sw >> 1, l1_cfg->sh)); mb862xxfb_ioctl()
349 pack(l1_cfg->dw >> 1, l1_cfg->dh)); mb862xxfb_ioctl()
370 pack(l1_cfg->sy >> 1, l1_cfg->sx)); mb862xxfb_ioctl()
372 pack(l1_cfg->sh, l1_cfg->sw)); mb862xxfb_ioctl()
376 pack(l1_cfg->dy, l1_cfg->dx)); mb862xxfb_ioctl()
378 pack(l1_cfg->dh - 1, l1_cfg->dw)); mb862xxfb_ioctl()
H A Dmb862xxfb.h117 #define pack(a, b) (((a) << 16) | (b)) macro
/linux-4.1.27/drivers/isdn/hardware/eicon/
H A Dpkmaint.h31 Only one purpose of this compiler dependent file to pack
/linux-4.1.27/drivers/acpi/acpica/
H A Dacresrc.h52 * If possible, pack the following structures to byte alignment, since we
54 * pack the structures:
60 #pragma pack(1)
156 #pragma pack()
H A Dacinterp.h56 * If possible, pack the following structures to byte alignment, since we
58 * pack the structures:
64 #pragma pack(1)
97 #pragma pack()
H A Dacobject.h59 #pragma pack(8)
61 #pragma pack(4)
461 #pragma pack()
H A Damlresrc.h137 #pragma pack(1)
409 #pragma pack()
H A Daclocal.h299 #pragma pack(1)
365 #pragma pack()
/linux-4.1.27/include/net/
H A Dbond_3ad.h113 #pragma pack(1)
172 #pragma pack()
180 #pragma pack(8)
259 #pragma pack()
/linux-4.1.27/include/linux/
H A Dsysv_fs.h47 char s_fpack[6]; /* file system pack name */
89 char s_fpack[6]; /* file system pack name */
117 char s_fpack[6]; /* file system pack name */
149 char s_fpack[6]; /* file system pack name */
186 char s_fpack[6]; /* file system pack name */
H A Dcper.h262 #pragma pack(1)
441 #pragma pack()
H A Dhdmi.h318 * This is used by the generic pack function. This works since all infoframes
H A Dipack.h2 * Industry-pack bus.
H A Df2fs_fs.h118 __le32 cp_pack_total_block_count; /* total # of one cp pack */
H A Dhyperv.h43 #pragma pack(push, 1)
80 #pragma pack(pop)
H A Dgenhd.h499 char d_packname[16]; /* pack identifier */
/linux-4.1.27/drivers/usb/usbip/
H A Dusbip_common.c393 int pack) usbip_pack_cmd_submit()
401 if (pack) { usbip_pack_cmd_submit()
418 int pack) usbip_pack_ret_submit()
422 if (pack) { usbip_pack_ret_submit()
438 int pack) usbip_pack_pdu()
442 usbip_pack_cmd_submit(pdu, urb, pack); usbip_pack_pdu()
445 usbip_pack_ret_submit(pdu, urb, pack); usbip_pack_pdu()
579 struct usb_iso_packet_descriptor *uiso, int pack) usbip_pack_iso()
581 if (pack) { usbip_pack_iso()
392 usbip_pack_cmd_submit(struct usbip_header *pdu, struct urb *urb, int pack) usbip_pack_cmd_submit() argument
417 usbip_pack_ret_submit(struct usbip_header *pdu, struct urb *urb, int pack) usbip_pack_ret_submit() argument
437 usbip_pack_pdu(struct usbip_header *pdu, struct urb *urb, int cmd, int pack) usbip_pack_pdu() argument
578 usbip_pack_iso(struct usbip_iso_packet_descriptor *iso, struct usb_iso_packet_descriptor *uiso, int pack) usbip_pack_iso() argument
H A Dusbip_common.h304 int pack);
/linux-4.1.27/drivers/input/serio/
H A Dhil_mlc.c446 #define OUT(pack) \
447 { HILSE_OUT, { .packet = pack }, 0, HILSEN_NEXT, HILSEN_DOZE, 0 },
458 #define OUT_DISC(pack) \
459 { HILSE_OUT_DISC, { .packet = pack }, 0, 0, 0, 0 },
460 #define OUT_LAST(pack) \
461 { HILSE_OUT_LAST, { .packet = pack }, 0, 0, 0, 0 },
639 hil_packet pack; hilse_donode() local
675 pack = node->object.packet; hilse_donode()
676 pack |= ((mlc->ddi + 1) << HIL_PKT_ADDR_SHIFT); hilse_donode()
681 pack = node->object.packet; hilse_donode()
682 pack |= ((mlc->ddi + 2) << HIL_PKT_ADDR_SHIFT); hilse_donode()
687 pack = node->object.packet; hilse_donode()
706 mlc->opacket = pack; hilse_donode()
/linux-4.1.27/include/net/caif/
H A Dcaif_hsi.h33 #pragma pack(1) /* Byte alignment. */
40 #pragma pack() /* Default alignment. */
/linux-4.1.27/drivers/infiniband/hw/amso1100/
H A Dc2_user.h43 * that they pack the same way on 32-bit and 64-bit architectures (to
/linux-4.1.27/drivers/infiniband/hw/cxgb3/
H A Diwch_user.h39 * that they pack the same way on 32-bit and 64-bit architectures (to
/linux-4.1.27/drivers/infiniband/hw/cxgb4/
H A Duser.h39 * that they pack the same way on 32-bit and 64-bit architectures (to
/linux-4.1.27/arch/x86/include/asm/xen/
H A Dinterface_32.h93 * must use the following accessor macros to pack/unpack valid MFNs.
/linux-4.1.27/drivers/scsi/dpt/
H A Dsys_info.h61 #pragma pack(1)
410 #pragma pack(4)
412 #pragma pack()
H A Ddptsig.h71 #pragma pack(1)
319 /* Microsoft's NT compiler gets confused if you do a pack and don't */
326 #pragma pack(4)
328 #pragma pack()
/linux-4.1.27/arch/arm/vfp/
H A Dvfpdouble.c76 vfp_double_dump("pack: in", vd); vfp_double_normaliseround()
82 goto pack; vfp_double_normaliseround()
89 goto pack; vfp_double_normaliseround()
106 vfp_double_dump("pack: normalised", vd); vfp_double_normaliseround()
119 vfp_double_dump("pack: tiny number", vd); vfp_double_normaliseround()
152 vfp_double_dump("pack: overflow", vd); vfp_double_normaliseround()
191 pack: vfp_double_normaliseround()
192 vfp_double_dump("pack: final", vd); vfp_double_normaliseround()
1087 pack: vfp_double_fdiv()
1093 goto pack; vfp_double_fdiv()
1098 goto pack; vfp_double_fdiv()
1105 goto pack; vfp_double_fdiv()
H A Dvfpsingle.c78 vfp_single_dump("pack: in", vs); __vfp_single_normaliseround()
84 goto pack; __vfp_single_normaliseround()
91 goto pack; __vfp_single_normaliseround()
111 vfp_single_dump("pack: normalised", vs); __vfp_single_normaliseround()
124 vfp_single_dump("pack: tiny number", vs); __vfp_single_normaliseround()
157 vfp_single_dump("pack: overflow", vs); __vfp_single_normaliseround()
196 pack: __vfp_single_normaliseround()
197 vfp_single_dump("pack: final", vs); __vfp_single_normaliseround()
1132 pack: vfp_single_fdiv()
1138 goto pack; vfp_single_fdiv()
1143 goto pack; vfp_single_fdiv()
1150 goto pack; vfp_single_fdiv()
H A Dvfp.h206 * Re-pack a single-precision float. This assumes that the float is
315 * Re-pack a double-precision float. This assumes that the float is
/linux-4.1.27/fs/ubifs/
H A Dlpt.c227 * pack_bits - pack bit fields end-to-end.
228 * @addr: address at which to pack (passed and next address returned)
229 * @pos: bit position at which to pack (passed and next position returned)
230 * @val: value to pack
231 * @nrbits: number of bits of value to pack (1-32)
345 * ubifs_pack_pnode - pack all the bit fields of a pnode.
347 * @buf: buffer into which to pack
348 * @pnode: pnode to pack
378 * ubifs_pack_nnode - pack all the bit fields of a nnode.
380 * @buf: buffer into which to pack
381 * @nnode: nnode to pack
410 * ubifs_pack_ltab - pack the LPT's own lprops table.
412 * @buf: buffer into which to pack
413 * @ltab: LPT's own lprops table to pack
435 * ubifs_pack_lsave - pack the LPT's save table.
437 * @buf: buffer into which to pack
438 * @lsave: LPT's save table to pack
H A Djournal.c451 * pack_inode - pack an inode node.
453 * @ino: buffer in which to pack inode node
454 * @inode: inode to pack
/linux-4.1.27/drivers/scsi/bfa/
H A Dbfa_defs_svc.h33 #pragma pack(1)
57 #pragma pack()
544 #pragma pack(1)
684 #pragma pack()
907 #pragma pack(1)
968 #pragma pack()
1048 #pragma pack(1)
1117 #pragma pack()
1190 #pragma pack(1)
1199 #pragma pack()
1341 #pragma pack(1)
1412 #pragma pack()
H A Dbfa_defs.h52 #pragma pack(1)
121 #pragma pack()
584 #pragma pack(1)
625 #pragma pack()
706 #pragma pack(1)
714 #pragma pack()
758 #pragma pack(1)
1285 #pragma pack()
H A Dbfad_bsg.h825 #pragma pack(1)
830 #pragma pack()
H A Dbfi.h24 #pragma pack(1)
625 #pragma pack()
628 #pragma pack(1)
1322 #pragma pack()
H A Dbfi_ms.h25 #pragma pack(1)
853 #pragma pack()
H A Dbfa_fc.h29 #pragma pack(1)
1626 #pragma pack()
H A Dbfa_ioc.h768 #pragma pack(1)
779 #pragma pack()
/linux-4.1.27/drivers/scsi/
H A D3w-xxxx.h280 #pragma pack(1)
324 #pragma pack()
335 #pragma pack(1)
390 #pragma pack()
H A Dhptiop.h78 #pragma pack(1)
115 #pragma pack()
H A D3w-sas.h208 #pragma pack(1)
355 #pragma pack()
H A Dhpsa.h81 #pragma pack(1)
120 #pragma pack()
H A Dhpsa_cmd.h185 #pragma pack(1)
793 #pragma pack()
H A D3w-9xxx.h477 #pragma pack(1)
637 #pragma pack()
H A Dqlogicpti.h379 #define SREG_SPMASK 0x03 /* Mask for switch pack */
/linux-4.1.27/drivers/infiniband/hw/mlx4/
H A Duser.h49 * that they pack the same way on 32-bit and 64-bit architectures (to
/linux-4.1.27/drivers/infiniband/hw/mlx5/
H A Duser.h54 * that they pack the same way on 32-bit and 64-bit architectures (to
/linux-4.1.27/drivers/infiniband/hw/mthca/
H A Dmthca_user.h47 * that they pack the same way on 32-bit and 64-bit architectures (to
H A Dmthca_profile.c134 * resources aligned to their size and pack them without gaps mthca_make_profile()
/linux-4.1.27/drivers/infiniband/hw/nes/
H A Dnes_user.h47 * that they pack the same way on 32-bit and 64-bit architectures (to
/linux-4.1.27/drivers/infiniband/core/
H A Dpacker.c56 * @structure:Structure to pack from
57 * @buf:Buffer to pack into
H A Dud_header.c284 * @buf:Buffer to pack into
335 * @buf:Buffer to pack into
/linux-4.1.27/drivers/gpu/drm/amd/amdkfd/
H A Dkfd_crat.h28 #pragma pack(1)
292 #pragma pack()
/linux-4.1.27/drivers/block/
H A Dcciss_cmd.h85 #pragma pack(1)
268 #pragma pack()
H A Dida_cmd.h51 #pragma pack(1)
347 #pragma pack()
H A Dskd_s1120.h15 #pragma pack(push, s1120_h, 1)
328 #pragma pack(pop, s1120_h)
H A Dcciss_scsi.c94 #pragma pack(1)
107 #pragma pack()
109 #pragma pack(1)
117 #pragma pack()
/linux-4.1.27/fs/reiserfs/
H A Dfile.c18 * We pack the tails of files on file close, not at the time they are written.
29 * We use reiserfs_truncate_file to pack the tail, since it already has
/linux-4.1.27/drivers/staging/lustre/lustre/mdc/
H A Dmdc_locks.c346 /* pack the intent */ mdc_intent_open_pack()
350 /* pack the intended request */ mdc_intent_open_pack()
387 /* pack the intent */ mdc_intent_getxattr_pack()
393 /* pack the intended request */ mdc_intent_getxattr_pack()
435 /* pack the intent */ mdc_intent_unlink_pack()
439 /* pack the intended request */ mdc_intent_unlink_pack()
480 /* pack the intent */ mdc_intent_getattr_pack()
489 /* pack the intended request */ mdc_intent_getattr_pack()
522 /* pack the intent */ mdc_intent_layout_pack()
526 /* pack the layout intent request */ mdc_intent_layout_pack()
H A Dmdc_lib.c70 DEBUG_CAPA(D_SEC, c, "pack"); mdc_pack_capa()
/linux-4.1.27/include/acpi/
H A Dacrestyp.h152 * If possible, pack the following structures to byte alignment
155 #pragma pack(1)
602 #pragma pack()
H A Dactbl3.h86 #pragma pack(1)
718 #pragma pack()
H A Dactbl.h79 #pragma pack(1)
353 #pragma pack()
H A Dactbl1.h79 #pragma pack(1)
1030 #pragma pack()
H A Dactbl2.h102 #pragma pack(1)
1280 #pragma pack()
/linux-4.1.27/arch/powerpc/boot/
H A Dlibfdt-wrapper.c165 fatal("Couldn't pack flat tree: %s\n\r", fdt_wrapper_finalize()
/linux-4.1.27/arch/blackfin/kernel/
H A Dvmlinux.lds.S25 * So pack them back to back
/linux-4.1.27/fs/ext4/
H A Dmballoc.h75 * by the stream allocator, which purpose is to pack requests
/linux-4.1.27/net/batman-adv/
H A Dpacket.h192 #pragma pack(2)
202 #pragma pack()
320 #pragma pack(2)
445 #pragma pack()
/linux-4.1.27/drivers/ipack/
H A Dipack.c2 * Industry-pack bus support functions.
507 MODULE_DESCRIPTION("Industry-pack bus core");
/linux-4.1.27/drivers/hid/
H A Dhid-hyperv.c49 #pragma pack(push, 1)
113 #pragma pack(pop)
/linux-4.1.27/arch/frv/include/asm/
H A Dmb93493-regs.h143 #define VCC_RCC_CFP_4TO3 0x00000000 /* - pack 4 pixels into 3 words */
144 #define VCC_RCC_CFP_1TO1 0x00001000 /* - pack 1 pixel into 1 words */
/linux-4.1.27/tools/testing/selftests/rcutorture/bin/
H A Dkvm.sh194 awk < $T/cfgcpu.sort > $T/cfgcpu.pack -v ncpus=$cpus '
278 awk < $T/cfgcpu.pack \
/linux-4.1.27/fs/f2fs/
H A Dcheckpoint.c567 /* Read the 1st cp block in this CP pack */ validate_checkpoint()
582 /* Read the 2nd cp block in this CP pack */ validate_checkpoint()
626 * sets( cp pack1 and cp pack 2) get_valid_checkpoint()
631 /* The second checkpoint pack should start at the next segment */ get_valid_checkpoint()
1028 /* Here, we only have one bio having CP pack */ do_checkpoint()
1073 * update checkpoint pack index write_checkpoint()
H A Dsegment.h162 * checkpoint pack. This information is used by the SSR mode.
/linux-4.1.27/arch/x86/include/asm/
H A Dperf_event_p4.h78 * the base idea is to pack as much info as possible
829 * 32 bits valuable, we pack them into a single 64 bit
H A Dcompat.h93 * so we need to pack this structure.
/linux-4.1.27/arch/sparc/math-emu/
H A Dmath_64.c173 whether the argument should be packed/unpacked (0 - do not unpack/pack, 1 - unpack/pack) do_mathemu()
H A Dmath_32.c279 whether the argument should be packed/unpacked (0 - do not unpack/pack, 1 - unpack/pack) do_one_mathemu()
/linux-4.1.27/drivers/gpu/drm/qxl/
H A Dqxl_dev.h133 #pragma pack(push, 1)
877 #pragma pack(pop)
/linux-4.1.27/drivers/block/xen-blkback/
H A Dcommon.h122 #pragma pack(push, 4)
128 #pragma pack(pop)
/linux-4.1.27/include/linux/mfd/abx500/
H A Dab8500-bm.h282 * @temp: battery pack temperature in Celcius
293 * @temp: battery pack temperature in Celcius
/linux-4.1.27/drivers/net/ethernet/mellanox/mlx4/
H A Dprofile.c147 * resources aligned to their size and pack them without gaps mlx4_make_profile()
/linux-4.1.27/drivers/media/pci/saa7164/
H A Dsaa7164-types.h45 * but this could break if GCC decies to pack in a different way.
/linux-4.1.27/drivers/media/platform/davinci/
H A Ddm355_ccdc.c372 * vd negative, 8-bit pack mode ccdc_config_ycbcr()
384 /* pack the data to 8-bit */ ccdc_config_ycbcr()
652 /* set pack for alaw compression */ ccdc_config_raw()
726 /* If pack 8 is enable then 1 pixel will take 1 byte */ ccdc_config_raw()
H A Ddm644x_ccdc.c389 * and 8bit pack mode ccdc_config_ycbcr()
579 /* If data size is 8 bit then pack the data */ ccdc_config_raw()
627 * Configure Horizontal offset register. If pack 8 is enabled then ccdc_config_raw()
H A Disif.c634 /* calculate line offset in 32 bytes based on pack value */ isif_config_raw()
906 /* pack the data to 8-bit ISIFCFG */ isif_config_ycbcr()
/linux-4.1.27/drivers/staging/rtl8188eu/include/
H A Dwlan_bssdef.h240 /* temporally add #pragma pack for structure alignment issue of
/linux-4.1.27/drivers/parisc/
H A Diosapic_private.h29 ** they pack nicely for 64-bit compilation. (ie sizeof(long) == 8)
/linux-4.1.27/drivers/usb/core/
H A Dfile.c163 * at zero to pack the devices into the smallest available space with usb_register_dev()
/linux-4.1.27/fs/xfs/
H A Dxfs_attr.h72 * reference an attrlist_ent_t and pack the attrlist_ent_t's at the bottom.
/linux-4.1.27/fs/jffs2/
H A Dsuper.c367 to pack them with __attribute__((packed)) then it _also_ init_jffs2_fs()
/linux-4.1.27/drivers/power/
H A Dab8500_bmdata.c10 * inside of the battery pack.
H A Dipaq_micro_battery.c36 #define MICRO_BATT_STATUS_NOTINSTALLED 0x20 /* For expansion pack batteries */
H A Dds2760_battery.c192 * battery pack and is therefore not bootstrapped. */ ds2760_battery_read_status()
/linux-4.1.27/fs/freevxfs/
H A Dvxfs.h137 u_int8_t vs_fpack[6]; /* FS pack name */
/linux-4.1.27/scripts/dtc/
H A Dfdtput.c318 * - pack fdt before writing main()
/linux-4.1.27/scripts/package/
H A DMakefile17 # d) and pack the result to a tar.gz file
/linux-4.1.27/include/linux/fsl/bestcomm/
H A Dbestcomm_priv.h112 #define BCOM_PRAGMA_BIT_PACK 4 /* pack data enable */
/linux-4.1.27/drivers/staging/lustre/lustre/ldlm/
H A Dldlm_request.c737 * Cancel LRU locks and pack them into the enqueue request. Pack there the given
751 int flags, avail, to_free, pack = 0; ldlm_prep_elc_req() local
774 pack = count; ldlm_prep_elc_req()
776 pack = avail; ldlm_prep_elc_req()
778 ldlm_request_bufsize(pack, opc)); ldlm_prep_elc_req()
797 /* Pack into the request @pack lock handles. */ ldlm_prep_elc_req()
798 ldlm_cli_cancel_list(cancels, pack, req, 0); ldlm_prep_elc_req()
800 ldlm_cli_cancel_list(cancels, count - pack, NULL, 0); ldlm_prep_elc_req()
1144 /* XXX: it would be better to pack lock handles grouped by resource. ldlm_cancel_pack()
/linux-4.1.27/drivers/net/ethernet/qlogic/
H A Dqla3xxx.h13 #pragma pack(1)
186 #pragma pack()
/linux-4.1.27/drivers/gpu/drm/sti/
H A Dsti_hdmi.c361 DRM_ERROR("failed to pack AVI infoframe: %d\n", ret); hdmi_avi_infoframe_config()
397 DRM_ERROR("failed to pack audio infoframe: %d\n", ret); hdmi_audio_infoframe_config()
/linux-4.1.27/drivers/pinctrl/
H A Dpinctrl-tz1090-pdc.c706 /* And pack config */ tz1090_pdc_pinconf_get()
835 /* And pack config */ tz1090_pdc_pinconf_group_get()
H A Dpinctrl-tz1090.c1700 /* And pack config */ tz1090_pinconf_get()
1839 /* And pack config */ tz1090_pinconf_group_get()
/linux-4.1.27/drivers/media/pci/bt8xx/
H A Dbttv.h262 * arguments (1 to 16). It will pack each argument into a word two bits at a
/linux-4.1.27/arch/tile/include/asm/
H A Dpage.h270 /* With HIGHMEM, we pack PAGE_OFFSET through high_memory with all valid VAs. */ virt_addr_valid()
/linux-4.1.27/include/media/
H A Drc-core.h263 /* extract mask bits out of data and pack them into the result */ ir_extract_bits()
/linux-4.1.27/include/uapi/rdma/
H A Dib_user_mad.h48 * that they pack the same way on 32-bit and 64-bit architectures (to
H A Dib_user_verbs.h100 * that they pack the same way on 32-bit and 64-bit architectures (to
/linux-4.1.27/Documentation/DocBook/media/
H A DMakefile188 -e "s,\(audio-mixer\|audio-karaoke\|audio-status\|ca-slot-info\|ca-descr-info\|ca-caps\|ca-msg\|ca-descr\|ca-pid\|dmx-filter\|dmx-caps\|video-system\|video-highlight\|video-spu\|video-spu-palette\|video-navi-pack\)-t,\1,g" \
/linux-4.1.27/include/linux/mfd/
H A Dabx500.h48 * @temp: battery pack temperature in Celcius
/linux-4.1.27/drivers/gpu/drm/tegra/
H A Dhdmi.c661 dev_err(hdmi->dev, "failed to pack AVI infoframe: %zd\n", err); tegra_hdmi_setup_avi_infoframe()
694 dev_err(hdmi->dev, "failed to pack audio infoframe: %zd\n", tegra_hdmi_setup_audio_infoframe()
730 dev_err(hdmi->dev, "failed to pack vendor infoframe: %zd\n", tegra_hdmi_setup_stereo_infoframe()
/linux-4.1.27/drivers/ipack/carriers/
H A Dtpci200.c572 /* Register the carrier in the industry pack bus driver */ tpci200_pci_probe()
/linux-4.1.27/drivers/net/ethernet/intel/igbvf/
H A Dvf.c233 * msg type). That's 30 hash values if we pack 'em right. If e1000_update_mc_addr_list_vf()
/linux-4.1.27/drivers/mfd/
H A Dipaq-micro.c206 /* Bytes 4-7 are "pack", byte 8 is "boot type" */ ipaq_micro_get_version()
/linux-4.1.27/drivers/dma/ioat/
H A Ddca.c82 /* pack PCI B/D/F into a u16 */ dcaid_from_pcidev()
/linux-4.1.27/include/rdma/
H A Dib_sa.h98 * attempt is made to pack structures to match the physical layout of
/linux-4.1.27/include/uapi/linux/wimax/
H A Di2400m.h58 * It consists 'messages' that pack one or more payloads each. The
/linux-4.1.27/lib/
H A Dflex_array.c86 * to efficiently pack objects across page boundaries.
/linux-4.1.27/drivers/misc/sgi-gru/
H A Dgrutables.h313 struct gru_mm_tracker { /* pack to reduce size */
/linux-4.1.27/drivers/net/ethernet/chelsio/cxgb4/
H A Dt4_msg.h644 __be16 pack; member in struct:cpl_tx_pkt_core
/linux-4.1.27/drivers/net/ethernet/intel/ixgbevf/
H A Dvf.c443 * msg type). That's 30 hash values if we pack 'em right. If ixgbevf_update_mc_addr_list_vf()
/linux-4.1.27/drivers/scsi/megaraid/
H A Dmbox_defs.h501 * bit 3: battery pack missing
/linux-4.1.27/drivers/staging/ft1000/ft1000-usb/
H A Dft1000_download.c98 #pragma pack(1)
/linux-4.1.27/drivers/staging/slicoss/
H A Dslichw.h825 #pragma pack()
/linux-4.1.27/drivers/staging/lustre/lnet/klnds/socklnd/
H A Dsocklnd.h372 void (*pro_pack)(ksock_tx_t *); /* message pack */
H A Dsocklnd_proto.c33 * pro_pack : pack message header
/linux-4.1.27/include/scsi/
H A Dscsi.h25 * to SG_MAX_SINGLE_ALLOC to pack correctly at the highest order. The
/linux-4.1.27/include/sound/
H A Dwavefront.h27 it is necessary to pack the "wavefront_alias" structure to a size
/linux-4.1.27/fs/ecryptfs/
H A Decryptfs_kernel.h210 * TODO: cache align/pack?
/linux-4.1.27/lib/fonts/
H A Dfont_mini_4x6.c24 $num = ord(pack("B8", $bits));
/linux-4.1.27/drivers/net/bonding/
H A Dbond_alb.c56 #pragma pack(1)
75 #pragma pack()
/linux-4.1.27/include/net/bluetooth/
H A Dhci.h1981 /* Command opcode pack/unpack */
1986 /* ACL handle and flags pack/unpack */
/linux-4.1.27/drivers/media/platform/am437x/
H A Dam437x-vpfe.c540 * and 8bit pack mode vpfe_ccdc_config_ycbcr()
704 /* If data size is 8 bit then pack the data */ vpfe_ccdc_config_raw()
710 * Configure Horizontal offset register. If pack 8 is enabled then vpfe_ccdc_config_raw()
/linux-4.1.27/drivers/staging/media/davinci_vpfe/
H A Ddm365_isif.c1169 /* calculate line offset in 32 bytes based on pack value */ isif_config_raw()
1255 /* pack the data to 8-bit CCDCCFG */ isif_config_ycbcr()
/linux-4.1.27/drivers/lguest/
H A Dinterrupts_and_traps.c602 /* Now pack it into the IDT entry in its weird format. */ default_idt_entry()
/linux-4.1.27/drivers/md/
H A Ddm-cache-policy-mq.c312 * FIXME: pack these better
/linux-4.1.27/drivers/misc/sgi-xp/
H A Dxpc.h290 * pack and unpack two (32-bit, 16-bit or 8-bit) arguments into or out from
/linux-4.1.27/drivers/mtd/nand/
H A Ddavinci_nand.c175 * Read hardware ECC value and pack into three bytes
/linux-4.1.27/drivers/media/pci/ivtv/
H A Divtv-driver.h727 int search_pack_header; /* 1 if ivtv_copy_buf_to_user() is scanning for a pack header (0xba) */

Completed in 10789 milliseconds

12