Searched refs:type (Results 301 - 325 of 13790) sorted by relevance

<<11121314151617181920>>

/linux-master/drivers/tty/serial/8250/
H A D8250_acorn.c28 unsigned int type; member in struct:serial_card_type
42 struct serial_card_type *type = id->data; local
51 info->num_ports = type->num_ports;
53 bus_addr = ecard_resource_start(ec, type->type);
54 info->vaddr = ecardm_iomap(ec, type->type, 0, 0);
65 uart.port.uartclk = type->uartclk;
71 uart.port.membase = info->vaddr + type->offset[i];
72 uart.port.mapbase = bus_addr + type
[all...]
/linux-master/arch/powerpc/kernel/
H A Dmsi.c12 int arch_setup_msi_irqs(struct pci_dev *dev, int nvec, int type) argument
23 if (type == PCI_CAP_ID_MSI && nvec > 1)
26 return phb->controller_ops.setup_msi_irqs(dev, nvec, type);
/linux-master/arch/mips/lantiq/xway/
H A Dprom.c50 i->type = SOC_TYPE_DANUBE;
56 i->type = SOC_TYPE_DANUBE;
65 i->type = SOC_TYPE_AR9;
72 i->type = SOC_TYPE_AR9;
82 i->type = SOC_TYPE_AMAZON_SE;
90 i->type = SOC_TYPE_VR9;
97 i->type = SOC_TYPE_VR9;
104 i->type = SOC_TYPE_VR9_2;
110 i->type = SOC_TYPE_VRX220;
117 i->type
[all...]
/linux-master/drivers/gpu/drm/amd/display/dc/dcn20/
H A Ddcn20_mpc.h199 #define MPC_REG_FIELD_LIST_DCN2_0(type) \
200 MPC_REG_FIELD_LIST(type)\
201 type MPCC_BG_BPC;\
202 type MPCC_BOT_GAIN_MODE;\
203 type MPCC_TOP_GAIN;\
204 type MPCC_BOT_GAIN_INSIDE;\
205 type MPCC_BOT_GAIN_OUTSIDE;\
206 type MPC_OCSC_TEST_DEBUG_DATA_OCSC_MODE;\
207 type MPC_OCSC_TEST_DEBUG_INDEX;\
208 type MPC_OCSC_MOD
[all...]
/linux-master/drivers/gpu/drm/nouveau/nvkm/subdev/mmu/
H A Dgp100.c40 gp100_mmu_new(struct nvkm_device *device, enum nvkm_subdev_type type, int inst, argument
44 return gm200_mmu_new(device, type, inst, pmmu);
45 return nvkm_mmu_new_(&gp100_mmu, device, type, inst, pmmu);
H A Dgp10b.c40 gp10b_mmu_new(struct nvkm_device *device, enum nvkm_subdev_type type, int inst, argument
44 return gm20b_mmu_new(device, type, inst, pmmu);
45 return nvkm_mmu_new_(&gp10b_mmu, device, type, inst, pmmu);
/linux-master/include/linux/
H A Dkcore.h20 int type; member in struct:kcore_list
37 void __init kclist_add(struct kcore_list *, void *, size_t, int type);
42 void kclist_add(struct kcore_list *new, void *addr, size_t size, int type) argument
/linux-master/tools/testing/selftests/bpf/progs/
H A Ddev_cgroup.c15 short type = ctx->access_type & 0xFFFF; local
20 switch (type) {
47 if (ctx->major != 1 || type != BPF_DEVCG_DEV_CHAR)
H A Dtest_btf_map_in_map.c7 __uint(type, BPF_MAP_TYPE_ARRAY);
15 __uint(type, BPF_MAP_TYPE_ARRAY);
22 __uint(type, BPF_MAP_TYPE_ARRAY_OF_MAPS);
28 __uint(type, BPF_MAP_TYPE_ARRAY);
45 __uint(type, BPF_MAP_TYPE_ARRAY);
54 __uint(type, BPF_MAP_TYPE_ARRAY);
62 __uint(type, BPF_MAP_TYPE_ARRAY_OF_MAPS);
67 __uint(type, BPF_MAP_TYPE_ARRAY);
82 __uint(type, BPF_MAP_TYPE_HASH_OF_MAPS);
98 __uint(type, BPF_MAP_TYPE_REUSEPORT_SOCKARRA
[all...]
H A Dtest_sockmap_pass_prog.c6 __uint(type, BPF_MAP_TYPE_SOCKMAP);
13 __uint(type, BPF_MAP_TYPE_SOCKMAP);
20 __uint(type, BPF_MAP_TYPE_SOCKMAP);
H A Dtest_sockmap_drop_prog.c6 __uint(type, BPF_MAP_TYPE_SOCKMAP);
13 __uint(type, BPF_MAP_TYPE_SOCKMAP);
20 __uint(type, BPF_MAP_TYPE_SOCKMAP);
/linux-master/arch/powerpc/include/asm/
H A Dsstep.h52 #define OP_IS_LOAD(type) ((LOAD <= (type) && (type) <= LOAD_VSX) || (type) == LARX)
53 #define OP_IS_STORE(type) ((STORE <= (type) && (type) <= STORE_VSX) || (type) == STCX)
54 #define OP_IS_LOAD_STORE(type) (LOAD <= (type)
114 int type; member in struct:instruction_op
[all...]
/linux-master/drivers/gpu/drm/amd/pm/powerplay/inc/
H A Dpp_debug.h58 #define GET_FLEXIBLE_ARRAY_MEMBER_ADDR(type, member, ptr, n) \
59 (type *)((char *)&(ptr)->member + (sizeof(type) * (n)))
/linux-master/net/bluetooth/
H A Deir.h26 static inline u16 eir_append_data(u8 *eir, u16 eir_len, u8 type, argument
29 eir[eir_len++] = sizeof(type) + data_len;
30 eir[eir_len++] = type;
37 static inline u16 eir_append_le16(u8 *eir, u16 eir_len, u8 type, u16 data) argument
39 eir[eir_len++] = sizeof(type) + sizeof(data);
40 eir[eir_len++] = type;
47 static inline u16 eir_skb_put_data(struct sk_buff *skb, u8 type, u8 *data, u8 data_len) argument
54 WARN_ON(sizeof(type) + data_len > U8_MAX);
55 eir[0] = sizeof(type) + data_len;
56 eir[1] = type;
62 eir_get_data(u8 *eir, size_t eir_len, u8 type, size_t *data_len) argument
[all...]
/linux-master/tools/testing/selftests/net/af_unix/
H A Dunix_connect.c23 int type; local
32 .type = SOCK_STREAM,
41 .type = SOCK_STREAM,
50 .type = SOCK_STREAM,
59 .type = SOCK_STREAM,
68 .type = SOCK_DGRAM,
77 .type = SOCK_DGRAM,
86 .type = SOCK_DGRAM,
95 .type = SOCK_DGRAM,
124 self->server = socket(self->family, variant->type,
[all...]
/linux-master/arch/x86/kernel/
H A Ddumpstack_32.c21 const char *stack_type_name(enum stack_type type) argument
23 if (type == STACK_TYPE_IRQ)
26 if (type == STACK_TYPE_SOFTIRQ)
29 if (type == STACK_TYPE_ENTRY)
32 if (type == STACK_TYPE_EXCEPTION)
50 info->type = STACK_TYPE_IRQ;
75 info->type = STACK_TYPE_SOFTIRQ;
99 info->type = STACK_TYPE_EXCEPTION;
140 * just break out and report an unknown stack type.
143 if (*visit_mask & (1UL << info->type)) {
[all...]
/linux-master/fs/orangefs/
H A Dacl.c13 struct posix_acl *orangefs_get_acl(struct inode *inode, int type, bool rcu) argument
22 switch (type) {
30 gossip_err("orangefs_get_acl: bogus value of type %d\n", type);
45 "inode %pU, key %s, type %d\n",
48 type);
67 int __orangefs_set_acl(struct inode *inode, struct posix_acl *acl, int type) argument
74 switch (type) {
82 gossip_err("%s: invalid type %d!\n", __func__, type);
121 orangefs_set_acl(struct mnt_idmap *idmap, struct dentry *dentry, struct posix_acl *acl, int type) argument
[all...]
/linux-master/arch/csky/abiv1/inc/abi/
H A Dpgtable-bits.h38 * bit 2 - 5: swap type[0 - 3]
41 * bit 8: swap type[4]
48 #define __swp_entry(type, offset) ((swp_entry_t) { \
49 ((type & 0xf) << 2) | \
50 ((type & 0x10) << 4) | \
/linux-master/drivers/net/ethernet/mellanox/mlx5/core/lib/
H A Dtout.h39 u64 _mlx5_tout_ms(struct mlx5_core_dev *dev, enum mlx5_timeouts_types type);
41 #define mlx5_tout_ms(dev, type) _mlx5_tout_ms(dev, MLX5_TO_##type##_MS)
/linux-master/drivers/gpu/drm/amd/display/dc/dcn35/
H A Ddcn35_opp.h40 #define OPP_DCN35_REG_FIELD_LIST(type) \
42 OPP_DCN20_REG_FIELD_LIST(type); \
43 type OPP_FGCG_REP_DIS; \
/linux-master/drivers/gpu/drm/nouveau/nvkm/subdev/vfn/
H A Dga100.c46 enum nvkm_subdev_type type, int inst, struct nvkm_vfn **pvfn)
49 return r535_vfn_new(&ga100_vfn, device, type, inst, 0xb80000, pvfn);
51 return nvkm_vfn_new_(&ga100_vfn, device, type, inst, 0xb80000, pvfn);
45 ga100_vfn_new(struct nvkm_device *device, enum nvkm_subdev_type type, int inst, struct nvkm_vfn **pvfn) argument
/linux-master/drivers/gpu/drm/nouveau/nvkm/subdev/fb/
H A Dga100.c41 ga100_fb_new(struct nvkm_device *device, enum nvkm_subdev_type type, int inst, struct nvkm_fb **pfb) argument
44 return r535_fb_new(&ga100_fb, device, type, inst, pfb);
46 return gf100_fb_new_(&ga100_fb, device, type, inst, pfb);
/linux-master/drivers/gpu/drm/nouveau/nvkm/engine/fifo/
H A Dga102.c43 ga102_fifo_new(struct nvkm_device *device, enum nvkm_subdev_type type, int inst, argument
47 return r535_fifo_new(&ga102_fifo, device, type, inst, pfifo);
49 return nvkm_fifo_new_(&ga102_fifo, device, type, inst, pfifo);
/linux-master/drivers/gpu/drm/nouveau/nvkm/engine/ce/
H A Dga102.c43 ga102_ce_new(struct nvkm_device *device, enum nvkm_subdev_type type, int inst, argument
47 return r535_ce_new(&ga102_ce, device, type, inst, pengine);
49 return nvkm_engine_new_(&ga102_ce, device, type, inst, true, pengine);
/linux-master/scripts/kconfig/
H A Dexpr.c21 e->type = E_SYMBOL;
26 struct expr *expr_alloc_one(enum expr_type type, struct expr *ce) argument
29 e->type = type;
34 struct expr *expr_alloc_two(enum expr_type type, struct expr *e1, struct expr *e2) argument
37 e->type = type;
43 struct expr *expr_alloc_comp(enum expr_type type, struct symbol *s1, struct symbol *s2) argument
46 e->type = type;
150 __expr_eliminate_eq(enum expr_type type, struct expr **ep1, struct expr **ep2) argument
596 expr_eliminate_dups1(enum expr_type type, struct expr **ep1, struct expr **ep2) argument
922 expr_trans_compare(struct expr *e, enum expr_type type, struct symbol *sym) argument
998 expr_parse_string(const char *str, enum symbol_type type, union string_value *val) argument
[all...]

Completed in 215 milliseconds

<<11121314151617181920>>