Searched refs:type (Results 101 - 125 of 13787) sorted by relevance

1234567891011>>

/linux-master/arch/alpha/include/uapi/asm/
H A Dioctl.h40 #define _IOC(dir,type,nr,size) \
43 ((type) << _IOC_TYPESHIFT) | \
48 #define _IO(type,nr) _IOC(_IOC_NONE,(type),(nr),0)
49 #define _IOR(type,nr,size) _IOC(_IOC_READ,(type),(nr),sizeof(size))
50 #define _IOW(type,nr,size) _IOC(_IOC_WRITE,(type),(nr),sizeof(size))
51 #define _IOWR(type,nr,size) _IOC(_IOC_READ|_IOC_WRITE,(type),(n
[all...]
/linux-master/include/linux/
H A Ddevice_cgroup.h15 int devcgroup_check_permission(short type, u32 major, u32 minor,
19 short type, access = 0; local
25 type = DEVCG_DEV_BLOCK;
27 type = DEVCG_DEV_CHAR;
36 return devcgroup_check_permission(type, imajor(inode), iminor(inode),
42 short type; local
51 type = DEVCG_DEV_BLOCK;
53 type = DEVCG_DEV_CHAR;
55 return devcgroup_check_permission(type, MAJOR(dev), MINOR(dev),
60 static inline int devcgroup_check_permission(short type, u3 argument
[all...]
H A Dicmpv6.h18 typedef void ip6_icmp_send_t(struct sk_buff *skb, u8 type, u8 code, __u32 info,
21 void icmp6_send(struct sk_buff *skb, u8 type, u8 code, __u32 info,
25 static inline void __icmpv6_send(struct sk_buff *skb, u8 type, u8 code, __u32 info, argument
28 icmp6_send(skb, type, code, info, NULL, parm);
41 extern void __icmpv6_send(struct sk_buff *skb, u8 type, u8 code, __u32 info,
47 static inline void icmpv6_send(struct sk_buff *skb, u8 type, u8 code, __u32 info) argument
49 __icmpv6_send(skb, type, code, info, IP6CB(skb));
52 int ip6_err_gen_icmpv6_unreach(struct sk_buff *skb, int nhs, int type,
56 void icmpv6_ndo_send(struct sk_buff *skb_in, u8 type, u8 code, __u32 info);
58 static inline void icmpv6_ndo_send(struct sk_buff *skb_in, u8 type, u argument
67 icmpv6_send(struct sk_buff *skb, u8 type, u8 code, __u32 info) argument
72 icmpv6_ndo_send(struct sk_buff *skb, u8 type, u8 code, __u32 info) argument
99 icmpv6_is_err(int type) argument
[all...]
/linux-master/drivers/net/ethernet/sfc/siena/
H A Dsriov.h19 if (efx->type->sriov_set_vf_mac)
20 return efx->type->sriov_set_vf_mac(efx, vf_i, mac);
31 if (efx->type->sriov_set_vf_vlan) {
39 return efx->type->sriov_set_vf_vlan(efx, vf_i, vlan, qos);
51 if (efx->type->sriov_set_vf_spoofchk)
52 return efx->type->sriov_set_vf_spoofchk(efx, vf_i, spoofchk);
63 if (efx->type->sriov_get_vf_config)
64 return efx->type->sriov_get_vf_config(efx, vf_i, ivi);
75 if (efx->type->sriov_set_vf_link_state)
76 return efx->type
[all...]
/linux-master/drivers/net/ethernet/sfc/
H A Dsriov.c15 if (efx->type->sriov_set_vf_mac)
16 return efx->type->sriov_set_vf_mac(efx, vf_i, mac);
26 if (efx->type->sriov_set_vf_vlan) {
34 return efx->type->sriov_set_vf_vlan(efx, vf_i, vlan, qos);
45 if (efx->type->sriov_set_vf_spoofchk)
46 return efx->type->sriov_set_vf_spoofchk(efx, vf_i, spoofchk);
56 if (efx->type->sriov_get_vf_config)
57 return efx->type->sriov_get_vf_config(efx, vf_i, ivi);
67 if (efx->type->sriov_set_vf_link_state)
68 return efx->type
[all...]
/linux-master/net/netfilter/
H A Dxt_repldata.h11 * struct type##_replace repl;
12 * struct type##_standard entries[nhooks];
13 * struct type##_error term;
17 #define xt_alloc_initial_table(type, typ2) ({ \
22 struct type##_replace repl; \
23 struct type##_standard entries[]; \
25 struct type##_error *term; \
31 term = (struct type##_error *)&(((char *)tbl)[term_offset]); \
33 *term = (struct type##_error)typ2##_ERROR_INIT; \
36 tbl->repl.size = nhooks * sizeof(struct type##_standar
[all...]
/linux-master/drivers/net/wireless/intel/iwlwifi/mvm/
H A Drs.h155 enum iwl_table_type type; member in struct:rs_rate
165 #define is_type_legacy(type) (((type) == LQ_LEGACY_G) || \
166 ((type) == LQ_LEGACY_A))
167 #define is_type_ht_siso(type) ((type) == LQ_HT_SISO)
168 #define is_type_ht_mimo2(type) ((type) == LQ_HT_MIMO2)
169 #define is_type_vht_siso(type) ((type)
[all...]
/linux-master/drivers/iommu/intel/
H A Dperf.c18 bool dmar_latency_enabled(struct intel_iommu *iommu, enum latency_type type) argument
22 return lstat && lstat[type].enabled;
25 int dmar_latency_enable(struct intel_iommu *iommu, enum latency_type type) argument
31 if (dmar_latency_enabled(iommu, type))
46 if (!lstat[type].enabled) {
47 lstat[type].enabled = true;
48 lstat[type].counter[COUNTS_MIN] = UINT_MAX;
57 void dmar_latency_disable(struct intel_iommu *iommu, enum latency_type type) argument
62 if (!dmar_latency_enabled(iommu, type))
66 memset(&lstat[type],
70 dmar_latency_update(struct intel_iommu *iommu, enum latency_type type, u64 latency) argument
[all...]
/linux-master/drivers/gpu/drm/amd/display/dc/dcn20/
H A Ddcn20_hubp.h170 #define DCN2_HUBP_REG_FIELD_VARIABLE_LIST(type) \
171 DCN_HUBP_REG_FIELD_BASE_LIST(type); \
172 type DMDATA_ADDRESS_HIGH;\
173 type DMDATA_MODE;\
174 type DMDATA_UPDATED;\
175 type DMDATA_REPEAT;\
176 type DMDATA_SIZE;\
177 type DMDATA_SW_UPDATED;\
178 type DMDATA_SW_REPEAT;\
179 type DMDATA_SW_SIZ
[all...]
/linux-master/include/linux/iio/
H A Devents.h18 * @type: Type of the event. Should be one of enum iio_event_type.
25 type, chan, chan1, chan2) \
26 (((u64)type << 56) | ((u64)diff << 55) | \
37 * @type: Type of the event. Should be one of enum iio_event_type.
42 type, direction) \
43 IIO_EVENT_CODE(chan_type, 0, modifier, direction, type, number, 0, 0)
49 * @type: Type of the event. Should be one of enum iio_event_type.
53 #define IIO_UNMOD_EVENT_CODE(chan_type, number, type, direction) \
54 IIO_EVENT_CODE(chan_type, 0, 0, direction, type, number, 0, 0)
/linux-master/arch/xtensa/mm/
H A Dhighmem.c27 static inline enum fixed_addresses kmap_idx(int type, unsigned long color) argument
29 int idx = (type + KM_MAX_IDX * smp_processor_id()) * DCACHE_N_COLORS;
38 enum fixed_addresses kmap_local_map_idx(int type, unsigned long pfn) argument
40 return kmap_idx(type, DCACHE_ALIAS(pfn << PAGE_SHIFT));
43 enum fixed_addresses kmap_local_unmap_idx(int type, unsigned long addr) argument
45 return kmap_idx(type, DCACHE_ALIAS(addr));
/linux-master/fs/xfs/libxfs/
H A Dxfs_ag_resv.h12 bool xfs_ag_resv_critical(struct xfs_perag *pag, enum xfs_ag_resv_type type);
14 enum xfs_ag_resv_type type);
16 void xfs_ag_resv_alloc_extent(struct xfs_perag *pag, enum xfs_ag_resv_type type,
18 void xfs_ag_resv_free_extent(struct xfs_perag *pag, enum xfs_ag_resv_type type,
24 enum xfs_ag_resv_type type)
26 switch (type) {
22 xfs_perag_resv( struct xfs_perag *pag, enum xfs_ag_resv_type type) argument
/linux-master/drivers/gpu/drm/nouveau/nvif/
H A Dmmu.c34 kfree(mmu->type);
54 mmu->type = NULL;
74 mmu->type = kmalloc_array(mmu->type_nr, sizeof(*mmu->type),
76 if (ret = -ENOMEM, !mmu->heap || !mmu->type)
103 mmu->type[i].type = 0;
104 if (args.vram) mmu->type[i].type |= NVIF_MEM_VRAM;
105 if (args.host) mmu->type[
[all...]
/linux-master/arch/mips/include/asm/
H A Dunaligned-emul.h8 #define _LoadHW(addr, value, res, type) \
11 "1:\t"type##_lb("%0", "0(%2)")"\n" \
12 "2:\t"type##_lbu("$1", "1(%2)")"\n\t"\
31 #define _LoadW(addr, value, res, type) \
34 "1:\t"type##_lwl("%0", "(%2)")"\n" \
35 "2:\t"type##_lwr("%0", "3(%2)")"\n\t"\
53 #define _LoadW(addr, value, res, type) \
58 "1:"type##_lb("%0", "0(%2)")"\n\t" \
59 "2:"type##_lbu("$1", "1(%2)")"\n\t" \
62 "3:"type##_lb
[all...]
/linux-master/sound/usb/
H A Dquirks-table.h45 .type = QUIRK_MIDI_FTDI
54 .type = QUIRK_AUDIO_FIXED_ENDPOINT,
92 .type = QUIRK_COMPOSITE,
96 .type = QUIRK_AUDIO_STANDARD_MIXER,
100 .type = QUIRK_AUDIO_FIXED_ENDPOINT,
135 .type = QUIRK_COMPOSITE,
140 .type = QUIRK_IGNORE_INTERFACE,
145 .type = QUIRK_IGNORE_INTERFACE,
150 .type = QUIRK_IGNORE_INTERFACE,
182 .type
[all...]
/linux-master/arch/m68k/include/asm/
H A Dmodule.h13 enum m68k_fixup_type type; member in struct:m68k_fixup_info
29 #define m68k_fixup(type, addr) \
31 " .long " #type "," #addr "\n" \
/linux-master/arch/x86/include/asm/
H A Dinvpcid.h6 unsigned long type)
16 asm volatile("invpcid %[desc], %[type]"
17 :: [desc] "m" (desc), [type] "r" (type) : "memory");
5 __invpcid(unsigned long pcid, unsigned long addr, unsigned long type) argument
/linux-master/arch/x86/pci/
H A Dinit.c12 int type, pcbios = 1; local
14 type = pci_direct_probe();
39 pci_direct_init(type);
/linux-master/drivers/gpu/drm/amd/display/dc/bios/
H A Dbios_parser_helper.h39 #define GET_IMAGE(type, offset) ((type *) bios_get_image(&bp->base, offset, sizeof(type)))
/linux-master/include/trace/stages/
H A Dstage1_struct_define.h6 #define __field(type, item) type item;
9 #define __field_ext(type, item, filter_type) type item;
12 #define __field_struct(type, item) type item;
15 #define __field_struct_ext(type, item, filter_type) type item;
18 #define __array(type, item, len) type ite
[all...]
/linux-master/drivers/gpu/drm/amd/display/dc/dcn35/
H A Ddcn35_dpp.h36 #define DPP_REG_FIELD_LIST_DCN35(type) \
38 DPP_REG_FIELD_LIST_DCN3(type); \
39 type DPP_FGCG_REP_DIS; \
H A Ddcn35_dwb.h38 #define DWBC_REG_FIELD_LIST_DCN3_5(type) \
40 DWBC_REG_FIELD_LIST_DCN3_0(type); \
41 type DWB_FGCG_REP_DIS; \
/linux-master/drivers/gpu/drm/nouveau/nvkm/engine/nvdec/
H A Dtu102.c37 tu102_nvdec_new(struct nvkm_device *device, enum nvkm_subdev_type type, int inst, argument
41 return r535_nvdec_new(&tu102_nvdec, device, type, inst, pnvdec);
43 return nvkm_nvdec_new_(gm107_nvdec_fwif, device, type, inst, 0, pnvdec);
/linux-master/drivers/gpu/drm/nouveau/nvkm/engine/nvenc/
H A Dtu102.c37 tu102_nvenc_new(struct nvkm_device *device, enum nvkm_subdev_type type, int inst, argument
41 return r535_nvenc_new(&tu102_nvenc, device, type, inst, pnvenc);
43 return nvkm_nvenc_new_(gm107_nvenc_fwif, device, type, inst, pnvenc);
/linux-master/drivers/gpu/drm/nouveau/nvkm/engine/ce/
H A Dtu102.c39 tu102_ce_new(struct nvkm_device *device, enum nvkm_subdev_type type, int inst, argument
43 return r535_ce_new(&tu102_ce, device, type, inst, pengine);
45 return nvkm_engine_new_(&tu102_ce, device, type, inst, true, pengine);

Completed in 474 milliseconds

1234567891011>>