/kernel/linux/linux-5.10/arch/parisc/include/asm/ |
D | unistd.h | 123 #define _syscall2(type,name,type1,arg1,type2,arg2) \ argument 124 type name(type1 arg1, type2 arg2) \ 129 #define _syscall3(type,name,type1,arg1,type2,arg2,type3,arg3) \ argument 130 type name(type1 arg1, type2 arg2, type3 arg3) \ 135 #define _syscall4(type,name,type1,arg1,type2,arg2,type3,arg3,type4,arg4) \ argument 136 type name(type1 arg1, type2 arg2, type3 arg3, type4 arg4) \ 142 #define _syscall5(type,name,type1,arg1,type2,arg2,type3,arg3,type4,arg4,type5,arg5) \ argument 143 type name(type1 arg1, type2 arg2, type3 arg3, type4 arg4, type5 arg5) \
|
/kernel/linux/linux-5.10/drivers/mfd/ |
D | twl4030-power.c | 168 #define TWL_RESOURCE_GROUP_RESET(group, type1, type2) \ argument 169 { MSG_BROADCAST(DEV_GRP_NULL, (group), (type1), (type2), \ 171 #define TWL_RESOURCE_GROUP_SLEEP(group, type, type2) \ argument 172 { MSG_BROADCAST(DEV_GRP_NULL, (group), (type), (type2), \ 174 #define TWL_RESOURCE_GROUP_ACTIVE(group, type, type2) \ argument 175 { MSG_BROADCAST(DEV_GRP_NULL, (group), (type), (type2), \ 179 .type = (typ), .type2 = (typ2), \ 184 .type = (typ), .type2 = (typ2), \ 422 if (rconfig->type2 != TWL4030_RESCONFIG_UNDEF) { in twl4030_configure_resource() 424 type |= rconfig->type2 << TYPE2_SHIFT; in twl4030_configure_resource()
|
/kernel/linux/linux-5.10/drivers/crypto/hisilicon/sec2/ |
D | sec_crypto.c | 164 req = qp_ctx->req_list[le16_to_cpu(bd->type2.tag)]; in sec_req_cb() 170 req->err_type = bd->type2.error_type; in sec_req_cb() 172 done = le16_to_cpu(bd->type2.done_flag) & SEC_DONE_MASK; in sec_req_cb() 173 flag = (le16_to_cpu(bd->type2.done_flag) & in sec_req_cb() 997 sec_sqe->type2.c_key_addr = cpu_to_le64(c_ctx->c_key_dma); in sec_skcipher_bd_fill() 998 sec_sqe->type2.c_ivin_addr = cpu_to_le64(c_req->c_ivin_dma); in sec_skcipher_bd_fill() 999 sec_sqe->type2.data_src_addr = cpu_to_le64(c_req->c_in_dma); in sec_skcipher_bd_fill() 1000 sec_sqe->type2.data_dst_addr = cpu_to_le64(c_req->c_out_dma); in sec_skcipher_bd_fill() 1002 sec_sqe->type2.icvw_kmode |= cpu_to_le16(((u16)c_ctx->c_mode) << in sec_skcipher_bd_fill() 1004 sec_sqe->type2.c_alg = c_ctx->c_alg; in sec_skcipher_bd_fill() [all …]
|
D | sec_crypto.h | 211 struct sec_sqe_type2 type2; member
|
/kernel/linux/linux-5.10/arch/x86/pci/ |
D | direct.c | 286 goto type2; in pci_direct_probe() 288 goto type2; in pci_direct_probe() 297 type2: in pci_direct_probe()
|
/kernel/linux/linux-5.10/arch/x86/kernel/cpu/mtrr/ |
D | mtrr.c | 187 static inline int types_compatible(mtrr_type type1, mtrr_type type2) in types_compatible() argument 190 type2 == MTRR_TYPE_UNCACHABLE || in types_compatible() 191 (type1 == MTRR_TYPE_WRTHROUGH && type2 == MTRR_TYPE_WRBACK) || in types_compatible() 192 (type1 == MTRR_TYPE_WRBACK && type2 == MTRR_TYPE_WRTHROUGH); in types_compatible()
|
/kernel/linux/linux-5.10/drivers/of/unittest-data/ |
D | tests-match.dtsi | 10 c { name2 { device_type = "type2"; }; };
|
/kernel/linux/linux-5.10/drivers/acpi/acpica/ |
D | nsprepkg.c | 29 u8 type2, u32 count2, u32 start_index); 705 u8 type2, u32 count2, u32 start_index) in acpi_ns_check_package_elements() argument 728 type2, in acpi_ns_check_package_elements()
|
/kernel/linux/linux-5.10/include/linux/mfd/ |
D | twl.h | 550 #define MSG_BROADCAST(devgrp, grp, type, type2, state) \ argument 551 ( (devgrp) << 13 | 1 << 12 | (grp) << 9 | (type2) << 7 \ 656 u8 type2; /* Power resource addressed, 3 / broadcast message */ member
|
/kernel/linux/linux-5.10/drivers/gpio/ |
D | gpio-aspeed-sgpio.c | 334 u32 type2 = 0; in aspeed_sgpio_set_type() local 347 type2 |= bit; in aspeed_sgpio_set_type() 380 reg = (reg & ~bit) | type2; in aspeed_sgpio_set_type()
|
D | gpio-aspeed.c | 597 u32 type2 = 0; in aspeed_gpio_set_type() local 613 type2 |= bit; in aspeed_gpio_set_type() 647 reg = (reg & ~bit) | type2; in aspeed_gpio_set_type()
|
/kernel/linux/linux-5.10/net/mac80211/ |
D | iface.c | 227 static inline int identical_mac_addr_allowed(int type1, int type2) in identical_mac_addr_allowed() argument 230 type2 == NL80211_IFTYPE_MONITOR || in identical_mac_addr_allowed() 232 type2 == NL80211_IFTYPE_P2P_DEVICE || in identical_mac_addr_allowed() 233 (type1 == NL80211_IFTYPE_AP && type2 == NL80211_IFTYPE_WDS) || in identical_mac_addr_allowed() 235 (type2 == NL80211_IFTYPE_WDS || in identical_mac_addr_allowed() 236 type2 == NL80211_IFTYPE_AP)) || in identical_mac_addr_allowed() 237 (type1 == NL80211_IFTYPE_AP && type2 == NL80211_IFTYPE_AP_VLAN) || in identical_mac_addr_allowed() 239 (type2 == NL80211_IFTYPE_AP || in identical_mac_addr_allowed() 240 type2 == NL80211_IFTYPE_AP_VLAN)); in identical_mac_addr_allowed()
|
/kernel/linux/linux-5.10/drivers/pci/ |
D | setup-bus.c | 990 unsigned long type, unsigned long type2, in pbus_size_mem() argument 1025 (r->flags & mask) != type2 && in pbus_size_mem() 1206 unsigned long mask, prefmask, type2 = 0, type3 = 0; in __pci_bus_size_bridges() local 1282 type2 = prefmask & ~IORESOURCE_MEM_64; in __pci_bus_size_bridges() 1292 if (!type2) { in __pci_bus_size_bridges() 1308 type2 = type3 = IORESOURCE_MEM; in __pci_bus_size_bridges() 1325 pbus_size_mem(bus, mask, IORESOURCE_MEM, type2, type3, in __pci_bus_size_bridges()
|
/kernel/linux/linux-5.10/Documentation/watchdog/ |
D | mlx-wdt.rst | 61 version - type1 or type2.
|
/kernel/linux/linux-5.10/drivers/scsi/aacraid/ |
D | aachba.c | 209 struct tvpd_id_descriptor_type_2 type2; member 1015 sizeof(vpdpage83data.type2); in get_container_serial_callback() 1055 vpdpage83data.type2.codeset = 1; in get_container_serial_callback() 1057 vpdpage83data.type2.identifiertype = 2; in get_container_serial_callback() 1058 vpdpage83data.type2.identifierlength = in get_container_serial_callback() 1059 sizeof(vpdpage83data.type2) - 4; in get_container_serial_callback() 1061 vpdpage83data.type2.eu64id.venid[0] = 0xD0; in get_container_serial_callback() 1062 vpdpage83data.type2.eu64id.venid[1] = 0; in get_container_serial_callback() 1063 vpdpage83data.type2.eu64id.venid[2] = 0; in get_container_serial_callback() 1065 vpdpage83data.type2.eu64id.Serial = in get_container_serial_callback() [all …]
|
/kernel/linux/linux-5.10/arch/x86/mm/ |
D | init_64.c | 62 #define DEFINE_POPULATE(fname, type1, type2, init) \ argument 64 type1##_t *arg1, type2##_t *arg2, bool init) \ 77 #define DEFINE_ENTRY(type1, type2, init) \ argument 79 type2##_t arg2, bool init) \
|
/kernel/linux/linux-5.10/drivers/net/wireless/st/cw1200/ |
D | wsm.c | 42 #define __WSM_GET(buf, type, type2, cvt) \ argument 47 val = cvt(*(type2 *)(buf)->data); \ 65 #define __WSM_PUT(buf, val, type, type2, cvt) \ argument 70 *(type2 *)(buf)->data = cvt(val); \
|
/kernel/linux/linux-5.10/drivers/video/fbdev/ |
D | ffb.c | 333 u32 type2; member 446 upa_writel(FFB_DAC_CUR_CTRL, &dac->type2); in ffb_switch_from_graph()
|
/kernel/linux/linux-5.10/Documentation/bpf/ |
D | btf.rst | 708 BTF_ID(type2, name2) 732 BTF_ID(type2, name2)
|
/kernel/linux/linux-5.10/arch/mips/include/asm/octeon/ |
D | cvmx-pip-defs.h | 2566 uint64_t type2:16; member 2572 uint64_t type2:16;
|
/kernel/linux/linux-5.10/Documentation/driver-api/ |
D | ipmi.rst | 377 modprobe ipmi_si.o type=<type1>,<type2>.... 447 ipmi_si.type=<type1>,<type2>...
|
/kernel/linux/linux-5.10/Documentation/input/joydev/ |
D | joystick.rst | 166 analog.map=<type1>,<type2>,<type3>,....
|
/kernel/linux/linux-5.10/drivers/pinctrl/ |
D | pinctrl-rockchip.c | 199 #define PIN_BANK_DRV_FLAGS(id, pins, label, type0, type1, type2, type3) \ argument 213 { .drv_type = type2, .offset = -1 }, \
|
/kernel/linux/linux-5.10/drivers/net/ethernet/broadcom/bnxt/ |
D | bnxt.c | 5782 u32 type2 = HWRM_RING_ALLOC_CMPL; in bnxt_hwrm_ring_alloc() local 5789 rc = hwrm_ring_alloc_send_msg(bp, ring, type2, map_idx); in bnxt_hwrm_ring_alloc() 5792 bnxt_set_db(bp, &cpr2->cp_db, type2, map_idx, in bnxt_hwrm_ring_alloc() 5821 u32 type2 = HWRM_RING_ALLOC_CMPL; in bnxt_hwrm_ring_alloc() local 5827 rc = hwrm_ring_alloc_send_msg(bp, ring, type2, map_idx); in bnxt_hwrm_ring_alloc() 5830 bnxt_set_db(bp, &cpr2->cp_db, type2, map_idx, in bnxt_hwrm_ring_alloc()
|
/kernel/linux/linux-5.10/Documentation/admin-guide/ |
D | kernel-parameters.txt | 330 Format: <type1>,<type2>,..<type16>
|