Searched refs:type (Results 151 - 175 of 13790) sorted by relevance

1234567891011>>

/linux-master/drivers/gpu/drm/nouveau/nvif/
H A Dmem.c28 nvif_mem_ctor_map(struct nvif_mmu *mmu, const char *name, u8 type, u64 size, argument
31 int ret = nvif_mem_ctor(mmu, name, mmu->mem, NVIF_MEM_MAPPABLE | type,
49 int type, u8 page, u64 size, void *argv, u32 argc,
57 if (type < 0)
67 args->type = type;
75 mem->type = mmu->type[type].type;
48 nvif_mem_ctor_type(struct nvif_mmu *mmu, const char *name, s32 oclass, int type, u8 page, u64 size, void *argv, u32 argc, struct nvif_mem *mem) argument
88 nvif_mem_ctor(struct nvif_mmu *mmu, const char *name, s32 oclass, u8 type, u8 page, u64 size, void *argv, u32 argc, struct nvif_mem *mem) argument
[all...]
/linux-master/drivers/md/
H A Ddm-cache-policy.c80 int dm_cache_policy_register(struct dm_cache_policy_type *type) argument
85 if (type->hint_size != 0 && type->hint_size != 4) {
86 DMWARN("hint size must be 0 or 4 but %llu supplied.", (unsigned long long) type->hint_size);
91 if (__find_policy(type->name)) {
92 DMWARN("attempt to register policy under duplicate name %s", type->name);
95 list_add(&type->list, &register_list);
104 void dm_cache_policy_unregister(struct dm_cache_policy_type *type) argument
107 list_del_init(&type->list);
118 struct dm_cache_policy_type *type; local
[all...]
/linux-master/fs/quota/
H A Dkqid.c15 if (left.type != right.type)
17 switch(left.type) {
39 if (left.type < right.type)
41 if (left.type > right.type)
43 switch (left.type) {
70 switch (kqid.type) {
98 * If @kqid has no mapping in @targ the kqid.type specifi
[all...]
/linux-master/include/uapi/linux/netfilter/
H A Dxt_sctp.h39 #define bytes(type) (sizeof(type) * 8)
41 #define SCTP_CHUNKMAP_SET(chunkmap, type) \
43 (chunkmap)[type / bytes(__u32)] |= \
44 1u << (type % bytes(__u32)); \
47 #define SCTP_CHUNKMAP_CLEAR(chunkmap, type) \
49 (chunkmap)[type / bytes(__u32)] &= \
50 ~(1u << (type % bytes(__u32))); \
53 #define SCTP_CHUNKMAP_IS_SET(chunkmap, type) \
55 ((chunkmap)[type / byte
[all...]
/linux-master/net/ipv4/
H A Dmetrics.c19 int type = nla_type(nla); local
22 if (!type)
24 if (type > RTAX_MAX) {
25 NL_SET_ERR_MSG(extack, "Invalid metric type");
29 type = array_index_nospec(type, RTAX_MAX + 1);
30 if (type == RTAX_CC_ALGO) {
47 if (type == RTAX_ADVMSS && val > 65535 - 40)
49 if (type == RTAX_MTU && val > 65535 - 15)
51 if (type
[all...]
/linux-master/include/linux/
H A Dscreen_info.h17 static inline bool __screen_info_has_lfb(unsigned int type) argument
19 return (type == VIDEO_TYPE_VLFB) || (type == VIDEO_TYPE_EFI);
43 static inline u64 __screen_info_lfb_size(const struct screen_info *si, unsigned int type) argument
47 if (type == VIDEO_TYPE_VLFB)
52 static inline unsigned int __screen_info_video_type(unsigned int type) argument
54 switch (type) {
69 return type;
76 * screen_info_video_type() - Decodes the video type from struct screen_info
80 * A VIDEO_TYPE_ constant representing si's type o
84 unsigned int type; local
[all...]
/linux-master/drivers/infiniband/hw/hns/
H A Dhns_roce_hem.h59 #define check_whether_bt_num_3(type, hop_num) \
60 (type < HEM_TYPE_MTT && hop_num == 2)
62 #define check_whether_bt_num_2(type, hop_num) \
63 ((type < HEM_TYPE_MTT && hop_num == 1) || \
64 (type >= HEM_TYPE_MTT && hop_num == 2))
66 #define check_whether_bt_num_1(type, hop_num) \
67 ((type < HEM_TYPE_MTT && hop_num == HNS_ROCE_HOP_NUM_0) || \
68 (type >= HEM_TYPE_MTT && hop_num == 1) || \
69 (type >= HEM_TYPE_MTT && hop_num == HNS_ROCE_HOP_NUM_0))
97 struct hns_roce_hem_table *table, u32 type,
[all...]
/linux-master/drivers/hwtracing/coresight/
H A Dcoresight-cfg-afdo.c33 .type = CS_CFG_REG_TYPE_RESOURCE,
39 .type = CS_CFG_REG_TYPE_RESOURCE,
46 .type = CS_CFG_REG_TYPE_RESOURCE | CS_CFG_REG_TYPE_VAL_SAVE,
51 .type = CS_CFG_REG_TYPE_RESOURCE | CS_CFG_REG_TYPE_VAL_PARAM,
57 .type = CS_CFG_REG_TYPE_RESOURCE,
64 .type = CS_CFG_REG_TYPE_RESOURCE | CS_CFG_REG_TYPE_VAL_SAVE,
69 .type = CS_CFG_REG_TYPE_RESOURCE | CS_CFG_REG_TYPE_VAL_PARAM,
75 .type = CS_CFG_REG_TYPE_RESOURCE,
82 .type = CS_CFG_REG_TYPE_RESOURCE,
88 .type
[all...]
/linux-master/drivers/gpu/drm/amd/display/dc/dcn10/
H A Ddcn10_opp.h102 #define OPP_DCN10_REG_FIELD_LIST(type) \
103 type FMT_TRUNCATE_EN; \
104 type FMT_TRUNCATE_DEPTH; \
105 type FMT_TRUNCATE_MODE; \
106 type FMT_SPATIAL_DITHER_EN; \
107 type FMT_SPATIAL_DITHER_MODE; \
108 type FMT_SPATIAL_DITHER_DEPTH; \
109 type FMT_TEMPORAL_DITHER_EN; \
110 type FMT_HIGHPASS_RANDOM_ENABLE; \
111 type FMT_FRAME_RANDOM_ENABL
[all...]
/linux-master/sound/synth/emux/
H A Demux_effect.c19 #define xoffsetof(type,tag) ((long)(&((type)NULL)->tag) - (long)(NULL))
38 int type; /* byte or word */ member in struct:emux_parm_defs
86 effect_set_byte(unsigned char *valp, struct snd_midi_channel *chan, int type) argument
91 effect = fx->val[type];
92 if (fx->flag[type] == EMUX_FX_FLAG_ADD) {
93 if (parm_defs[type].type & PARM_IS_SIGNED)
98 if (effect < parm_defs[type].low)
99 effect = parm_defs[type]
107 effect_set_word(unsigned short *valp, struct snd_midi_channel *chan, int type) argument
142 snd_emux_send_effect_oss(struct snd_emux_port *port, struct snd_midi_channel *chan, int type, int val) argument
163 snd_emux_send_effect(struct snd_emux_port *port, struct snd_midi_channel *chan, int type, int val, int mode) argument
[all...]
/linux-master/drivers/net/ethernet/netronome/nfp/
H A Dnfp_app.h46 * @ctrl_has_meta: control messages have prepend of type:5/port:CTRL
133 enum tc_setup_type type, void *type_data);
156 * @type: pointer to const application ops and info
169 const struct nfp_app_type *type; member in struct:nfp_app
193 if (!app->type->init)
195 return app->type->init(app);
200 if (app->type->clean)
201 app->type->clean(app);
210 return app->type->vnic_alloc(app, nn, id);
215 if (app->type
320 nfp_app_setup_tc(struct nfp_app *app, struct net_device *netdev, enum tc_setup_type type, void *type_data) argument
[all...]
/linux-master/arch/sh/kernel/vsyscall/
H A Dvsyscall-note.S10 #define ASM_ELF_NOTE_BEGIN(name, flags, vendor, type) \
15 .long type; /* note type */ \
/linux-master/arch/s390/include/asm/trace/
H A Dzcrypt.h41 #define show_zcrypt_tp_type(type) \
42 __print_symbolic(type, \
54 * @type: One of the TP_ defines above.
61 TP_PROTO(void *ptr, u32 type),
62 TP_ARGS(ptr, type),
65 __field(u32, type)),
68 __entry->type = type;),
69 TP_printk("ptr=%p type=%s",
71 show_zcrypt_tp_type(__entry->type))
[all...]
/linux-master/tools/arch/sparc/include/asm/
H A Dbarrier_64.h28 #define membar_safe(type) \
30 " membar " type "\n" \
/linux-master/include/linux/ceph/
H A Dmsgpool.h14 int type; /* preallocated message type */ member in struct:ceph_msgpool
19 int ceph_msgpool_init(struct ceph_msgpool *pool, int type,
/linux-master/drivers/media/tuners/
H A Dtuner-simple.h15 unsigned int type);
20 unsigned int type)
17 simple_tuner_attach(struct dvb_frontend *fe, struct i2c_adapter *i2c_adap, u8 i2c_addr, unsigned int type) argument
/linux-master/include/linux/platform_data/
H A Ds3c-hsotg.h33 int (*phy_init)(struct platform_device *pdev, int type);
34 int (*phy_exit)(struct platform_device *pdev, int type);
/linux-master/net/core/
H A Dtimestamping.c26 unsigned int type; local
31 type = classify(skb);
32 if (type == PTP_CLASS_NONE)
40 mii_ts->txtstamp(mii_ts, clone, type);
48 unsigned int type; local
58 type = ptp_classify_raw(skb);
62 if (type == PTP_CLASS_NONE)
67 return mii_ts->rxtstamp(mii_ts, skb, type);
/linux-master/drivers/staging/gdm724x/
H A Dnetlink_k.h12 u16 type, void *msg, int len));
13 int netlink_send(struct sock *sock, int group, u16 type, void *msg, int len,
/linux-master/arch/sparc/lib/
H A Dcsum_copy_from_user.S20 #define LOAD(type,addr,dest) type##a [addr] %asi, dest
H A Dcsum_copy_to_user.S20 #define STORE(type,src,addr) type##a src, [addr] %asi
/linux-master/arch/riscv/include/asm/
H A Dcacheinfo.h17 uintptr_t get_cache_size(u32 level, enum cache_type type);
18 uintptr_t get_cache_geometry(u32 level, enum cache_type type);
/linux-master/drivers/gpu/drm/nouveau/nvkm/subdev/devinit/
H A Dnv1a.c38 nv1a_devinit_new(struct nvkm_device *device, enum nvkm_subdev_type type, int inst, argument
41 return nv04_devinit_new_(&nv1a_devinit, device, type, inst, pinit);
/linux-master/drivers/gpu/drm/nouveau/nvkm/subdev/i2c/
H A Dgf119.c37 gf119_i2c_new(struct nvkm_device *device, enum nvkm_subdev_type type, int inst, argument
40 return nvkm_i2c_new_(&gf119_i2c, device, type, inst, pi2c);
/linux-master/drivers/gpu/drm/nouveau/nvkm/subdev/mmu/
H A Dgk104.c38 gk104_mmu_new(struct nvkm_device *device, enum nvkm_subdev_type type, int inst, argument
41 return nvkm_mmu_new_(&gk104_mmu, device, type, inst, pmmu);

Completed in 246 milliseconds

1234567891011>>