/openbmc/linux/drivers/scsi/aic7xxx/ |
H A D | aic79xx_reg_print.c_shipped | 24 ahd_intstat_print(u_int regvalue, u_int *cur_col, u_int wrap) 27 0x01, regvalue, cur_col, wrap)); 36 ahd_hs_mailbox_print(u_int regvalue, u_int *cur_col, u_int wrap) 39 0x0b, regvalue, cur_col, wrap)); 51 ahd_seqintstat_print(u_int regvalue, u_int *cur_col, u_int wrap) 54 0x0c, regvalue, cur_col, wrap)); 69 ahd_intctl_print(u_int regvalue, u_int *cur_col, u_int wrap) 72 0x18, regvalue, cur_col, wrap)); 90 ahd_dfcntrl_print(u_int regvalue, u_int *cur_col, u_int wrap) 93 0x19, regvalue, cur_col, wrap)); [all …]
|
H A D | aic7xxx_reg_print.c_shipped | 23 ahc_scsiseq_print(u_int regvalue, u_int *cur_col, u_int wrap) 26 0x00, regvalue, cur_col, wrap)); 40 ahc_sxfrctl0_print(u_int regvalue, u_int *cur_col, u_int wrap) 43 0x01, regvalue, cur_col, wrap)); 67 ahc_scsisigi_print(u_int regvalue, u_int *cur_col, u_int wrap) 70 0x03, regvalue, cur_col, wrap)); 83 ahc_scsirate_print(u_int regvalue, u_int *cur_col, u_int wrap) 86 0x04, regvalue, cur_col, wrap)); 102 ahc_sstat0_print(u_int regvalue, u_int *cur_col, u_int wrap) 105 0x0b, regvalue, cur_col, wrap)); [all …]
|
H A D | aic79xx_reg.h_shipped | 18 #define ahd_intstat_print(regvalue, cur_col, wrap) \ 19 ahd_print_register(NULL, 0, "INTSTAT", 0x01, regvalue, cur_col, wrap) 25 #define ahd_hs_mailbox_print(regvalue, cur_col, wrap) \ 26 ahd_print_register(NULL, 0, "HS_MAILBOX", 0x0b, regvalue, cur_col, wrap) 32 #define ahd_seqintstat_print(regvalue, cur_col, wrap) \ 33 ahd_print_register(NULL, 0, "SEQINTSTAT", 0x0c, regvalue, cur_col, wrap) 39 #define ahd_intctl_print(regvalue, cur_col, wrap) \ 40 ahd_print_register(NULL, 0, "INTCTL", 0x18, regvalue, cur_col, wrap) 46 #define ahd_dfcntrl_print(regvalue, cur_col, wrap) \ 47 ahd_print_register(NULL, 0, "DFCNTRL", 0x19, regvalue, cur_col, wrap) [all …]
|
H A D | aic7xxx_reg.h_shipped | 18 #define ahc_scsiseq_print(regvalue, cur_col, wrap) \ 19 ahc_print_register(NULL, 0, "SCSISEQ", 0x00, regvalue, cur_col, wrap) 25 #define ahc_sxfrctl0_print(regvalue, cur_col, wrap) \ 26 ahc_print_register(NULL, 0, "SXFRCTL0", 0x01, regvalue, cur_col, wrap) 32 #define ahc_scsisigi_print(regvalue, cur_col, wrap) \ 33 ahc_print_register(NULL, 0, "SCSISIGI", 0x03, regvalue, cur_col, wrap) 39 #define ahc_scsirate_print(regvalue, cur_col, wrap) \ 40 ahc_print_register(NULL, 0, "SCSIRATE", 0x04, regvalue, cur_col, wrap) 46 #define ahc_sstat0_print(regvalue, cur_col, wrap) \ 47 ahc_print_register(NULL, 0, "SSTAT0", 0x0b, regvalue, cur_col, wrap) [all …]
|
/openbmc/qemu/tests/qtest/fuzz/ |
H A D | meson.build | 17 ['-Wl,-wrap,qtest_inb', 18 '-Wl,-wrap,qtest_inw', 19 '-Wl,-wrap,qtest_inl', 20 '-Wl,-wrap,qtest_outb', 21 '-Wl,-wrap,qtest_outw', 22 '-Wl,-wrap,qtest_outl', 23 '-Wl,-wrap,qtest_readb', 24 '-Wl,-wrap,qtest_readw', 25 '-Wl,-wrap,qtest_readl', 26 '-Wl,-wrap,qtest_readq', [all …]
|
H A D | qtest_wrappers.c | 22 #define WRAP(RET_TYPE, NAME_AND_ARGS)\ macro 26 WRAP(uint8_t , qtest_inb(QTestState *s, uint16_t addr)) in WRAP() function 27 WRAP(uint16_t , qtest_inw(QTestState *s, uint16_t addr)) in WRAP() 28 WRAP(uint32_t , qtest_inl(QTestState *s, uint16_t addr)) in WRAP() 29 WRAP(void , qtest_outb(QTestState *s, uint16_t addr, uint8_t value)) in WRAP() 30 WRAP(void , qtest_outw(QTestState *s, uint16_t addr, uint16_t value)) in WRAP() 31 WRAP(void , qtest_outl(QTestState *s, uint16_t addr, uint32_t value)) in WRAP() 32 WRAP(uint8_t , qtest_readb(QTestState *s, uint64_t addr)) in WRAP() 33 WRAP(uint16_t , qtest_readw(QTestState *s, uint64_t addr)) in WRAP() 34 WRAP(uint32_t , qtest_readl(QTestState *s, uint64_t addr)) in WRAP() [all …]
|
/openbmc/linux/drivers/usb/cdns3/ |
H A D | cdns3-pci-wrap.c | 75 struct cdns3_wrap *wrap; in cdns3_pci_probe() local 101 wrap = pci_get_drvdata(func); in cdns3_pci_probe() 103 wrap = kzalloc(sizeof(*wrap), GFP_KERNEL); in cdns3_pci_probe() 104 if (!wrap) { in cdns3_pci_probe() 110 res = wrap->dev_res; in cdns3_pci_probe() 130 wrap->dev_res[RES_IRQ_HOST_ID].start = pdev->irq; in cdns3_pci_probe() 131 wrap->dev_res[RES_IRQ_HOST_ID].name = "host"; in cdns3_pci_probe() 132 wrap->dev_res[RES_IRQ_HOST_ID].flags = IORESOURCE_IRQ; in cdns3_pci_probe() 135 wrap->dev_res[RES_IRQ_PERIPHERAL_ID].start = pdev->irq; in cdns3_pci_probe() 136 wrap->dev_res[RES_IRQ_PERIPHERAL_ID].name = "peripheral"; in cdns3_pci_probe() [all …]
|
/openbmc/linux/net/smc/ |
H A D | smc_cdc.h | 30 __be16 wrap; member 56 u16 wrap; member 95 curs->wrap++; in smc_curs_add() 153 if (old->wrap != new->wrap) in smc_curs_diff() 167 if (old->wrap > new->wrap || in smc_curs_comp() 168 (old->wrap == new->wrap && old->count > new->count)) in smc_curs_comp() 180 if (old->wrap < new->wrap) in smc_curs_diff_large() 183 (new->wrap - old->wrap - 1) * size, in smc_curs_diff_large() 186 if (old->wrap > new->wrap) /* wrap has switched from 0xffff to 0x0000 */ in smc_curs_diff_large() 189 (new->wrap + 0xffff - old->wrap) * size, in smc_curs_diff_large() [all …]
|
H A D | smc_diag.c | 116 .rx_prod.wrap = conn->local_rx_ctrl.prod.wrap, in __smc_diag_dump() 118 .rx_cons.wrap = conn->local_rx_ctrl.cons.wrap, in __smc_diag_dump() 121 .tx_prod.wrap = conn->local_tx_ctrl.prod.wrap, in __smc_diag_dump() 123 .tx_cons.wrap = conn->local_tx_ctrl.cons.wrap, in __smc_diag_dump() 134 .tx_prep.wrap = conn->tx_curs_prep.wrap, in __smc_diag_dump() 136 .tx_sent.wrap = conn->tx_curs_sent.wrap, in __smc_diag_dump() 138 .tx_fin.wrap = conn->tx_curs_fin.wrap, in __smc_diag_dump()
|
/openbmc/linux/tools/testing/nvdimm/ |
H A D | Kbuild | 2 ldflags-y += --wrap=ioremap_wc 3 ldflags-y += --wrap=memremap 4 ldflags-y += --wrap=devm_ioremap 5 ldflags-y += --wrap=devm_memremap 6 ldflags-y += --wrap=devm_memunmap 7 ldflags-y += --wrap=ioremap 8 ldflags-y += --wrap=iounmap 9 ldflags-y += --wrap=memunmap 10 ldflags-y += --wrap=__devm_request_region 11 ldflags-y += --wrap=__devm_release_region [all …]
|
/openbmc/linux/tools/testing/cxl/ |
H A D | Kbuild | 2 ldflags-y += --wrap=acpi_table_parse_cedt 3 ldflags-y += --wrap=is_acpi_device_node 4 ldflags-y += --wrap=acpi_evaluate_integer 5 ldflags-y += --wrap=acpi_pci_find_root 6 ldflags-y += --wrap=nvdimm_bus_register 7 ldflags-y += --wrap=devm_cxl_port_enumerate_dports 8 ldflags-y += --wrap=devm_cxl_setup_hdm 9 ldflags-y += --wrap=devm_cxl_add_passthrough_decoder 10 ldflags-y += --wrap=devm_cxl_enumerate_decoders 11 ldflags-y += --wrap=cxl_await_media_ready [all …]
|
/openbmc/smbios-mdr/ |
H A D | .gitignore | 4 # Autogenerated wrap files 5 /subprojects/CLI11.wrap 6 /subprojects/function2.wrap 7 /subprojects/googletest.wrap 8 /subprojects/ipmiblob.wrap 9 /subprojects/nlohmann_json.wrap 10 /subprojects/phosphor-objmgr.wrap 11 /subprojects/sdeventplus.wrap 12 /subprojects/stdplus.wrap
|
/openbmc/phosphor-watchdog/ |
H A D | .gitignore | 3 !/subprojects/CLI11.wrap 4 !/subprojects/googletest.wrap 5 !/subprojects/phosphor-dbus-interfaces.wrap 6 !/subprojects/phosphor-logging.wrap 7 !/subprojects/sdbusplus.wrap 8 !/subprojects/sdeventplus.wrap 9 !/subprojects/stdplus.wrap
|
/openbmc/phosphor-networkd/ |
H A D | .gitignore | 3 !/subprojects/googletest.wrap 4 !/subprojects/nlohmann_json.wrap 5 !/subprojects/phosphor-dbus-interfaces.wrap 6 !/subprojects/phosphor-logging.wrap 7 !/subprojects/sdbusplus.wrap 8 !/subprojects/sdeventplus.wrap 9 !/subprojects/stdplus.wrap
|
/openbmc/google-misc/ |
H A D | .gitignore | 11 !subprojects/googletest.wrap 12 !subprojects/nanopb.wrap 13 !subprojects/phosphor-dbus-interfaces.wrap 14 !subprojects/phosphor-logging.wrap 15 !subprojects/sdbusplus.wrap 16 !subprojects/sdeventplus.wrap 17 !subprojects/stdplus.wrap
|
/openbmc/linux/drivers/infiniband/hw/hfi1/ |
H A D | pio_copy.c | 28 * o pbuf can wrap only at a block boundary 60 * 2. We cannot wrap except on a block boundary. in pio_copy() 76 * If the wrap comes before or matches the data end, in pio_copy() 77 * copy until until the wrap, then wrap. in pio_copy() 81 * and nothing will get written, but we will wrap in in pio_copy() 95 /* write 8-byte non-SOP, non-wrap chunk data */ in pio_copy() 102 /* at this point we have wrapped if we are going to wrap */ in pio_copy() 115 * as we only wrap on a block boundary in pio_copy() 291 * 2. We cannot wrap except on a block boundary. in seg_pio_copy_start() 307 * If the wrap comes before or matches the data end, in seg_pio_copy_start() [all …]
|
/openbmc/intel-ipmi-oem/ |
H A D | .gitignore | 8 !subprojects/*.wrap 9 # Explicitly ignore wrap-redirect files. 10 subprojects/CLI11.wrap 11 subprojects/function2.wrap 12 subprojects/googletest.wrap 13 subprojects/phosphor-objmgr.wrap
|
/openbmc/linux/lib/ |
H A D | memcpy_kunit.c | 507 } wrap; in strtomem_test() local 509 memset(&wrap, 0xFF, sizeof(wrap)); in strtomem_test() 510 KUNIT_EXPECT_EQ_MSG(test, wrap.canary1, ULONG_MAX, in strtomem_test() 512 KUNIT_EXPECT_EQ_MSG(test, wrap.canary2, ULONG_MAX, in strtomem_test() 516 strtomem(wrap.output, input); in strtomem_test() 517 KUNIT_EXPECT_EQ(test, wrap.canary1, ULONG_MAX); in strtomem_test() 518 KUNIT_EXPECT_EQ(test, wrap.output[0], input[0]); in strtomem_test() 519 KUNIT_EXPECT_EQ(test, wrap.output[1], input[1]); in strtomem_test() 520 for (size_t i = 2; i < sizeof(wrap.output); i++) in strtomem_test() 521 KUNIT_EXPECT_EQ(test, wrap.output[i], 0xFF); in strtomem_test() [all …]
|
/openbmc/qemu/scripts/ |
H A D | make-release | 14 if test ! -f "$src/subprojects/$1.wrap"; then 15 echo "scripts/archive-source.sh should only process wrap subprojects" 19 # Print the directory key of the wrap file, defaulting to the 20 # subproject name. The wrap file is in ini format and should 22 # named "[wrap-*]", which helps keeping the script simple. 25 -e '/^\[wrap-[a-z][a-z]*\]$/,/^\[/{' \ 30 "$src/subprojects/$1.wrap") 80 if grep -xqF "[wrap-file]" $src/subprojects/$sp.wrap; then
|
H A D | archive-source.sh | 56 if test ! -f "subprojects/$1.wrap"; then 57 error "scripts/archive-source.sh should only process wrap subprojects" 60 # Print the directory key of the wrap file, defaulting to the 61 # subproject name. The wrap file is in ini format and should 63 # named "[wrap-*]", which helps keeping the script simple. 66 -e '/^\[wrap-[a-z][a-z]*\]$/,/^\[/{' \ 71 "subprojects/$1.wrap")
|
/openbmc/phosphor-certificate-manager/ |
H A D | .gitignore | 3 !subprojects/phosphor-dbus-interfaces.wrap 4 !subprojects/phosphor-logging.wrap 5 !subprojects/sdbusplus.wrap 6 !subprojects/sdeventplus.wrap 7 !subprojects/cli11.wrap
|
/openbmc/phosphor-host-ipmid/ |
H A D | .gitignore | 13 !/subprojects/*.wrap 14 subprojects/CLI11.wrap 15 subprojects/function2.wrap 16 subprojects/googletest.wrap 17 subprojects/stdplus.wrap
|
/openbmc/linux/drivers/leds/ |
H A D | leds-wrap.c | 3 * LEDs driver for PCEngines WRAP 19 #define DRVNAME "wrap-led" 54 .name = "wrap::power", 61 .name = "wrap::error", 67 .name = "wrap::extra", 128 MODULE_DESCRIPTION("PCEngines WRAP LED driver");
|
/openbmc/linux/drivers/hid/ |
H A D | hid-bigbenff.c | 37 * 0x81, 0x02, // Input (Data,Var,Abs,No Wrap,Linear,Preferred State,No Null Position) 39 * 0x81, 0x01, // Input (Const,Array,Abs,No Wrap,Linear,Preferred State,No Null Position) 47 * 0x81, 0x42, // Input (Data,Var,Abs,No Wrap,Linear,Preferred State,Null State) 50 * 0x81, 0x01, // Input (Const,Array,Abs,No Wrap,Linear,Preferred State,No Null Position) 59 * 0x81, 0x02, // Input (Data,Var,Abs,No Wrap,Linear,Preferred State,No Null Position) 74 * 0x81, 0x02, // Input (Data,Var,Abs,No Wrap,Linear,Preferred State,No Null Position) 77 …* 0xB1, 0x02, // Feature (Data,Var,Abs,No Wrap,Linear,Preferred State,No Null Position,… 79 …* 0x91, 0x02, // Output (Data,Var,Abs,No Wrap,Linear,Preferred State,No Null Position,N… 88 * 0x81, 0x02, // Input (Data,Var,Abs,No Wrap,Linear,Preferred State,No Null Position) 126 0x81, 0x02, /* Input (Data,Var,Abs,No Wrap,Linear,Preferred State,No Null Position) */ [all …]
|
/openbmc/linux/tools/testing/selftests/bpf/ |
H A D | bpf_experimental.h | 25 /* Convenience macro to wrap over bpf_obj_new_impl */ 39 /* Convenience macro to wrap over bpf_obj_drop_impl */ 53 /* Convenience macro to wrap over bpf_refcount_acquire_impl */ 69 /* Convenience macro to wrap over bpf_list_push_front_impl */ 85 /* Convenience macro to wrap over bpf_list_push_back_impl */ 123 /* Convenience macro to wrap over bpf_rbtree_add_impl */ 148 /* Convenience macro to wrap over bpf_percpu_obj_new_impl */ 162 /* Convenience macro to wrap over bpf_obj_drop_impl */
|