Searched refs:type (Results 226 - 250 of 13787) sorted by relevance

1234567891011>>

/linux-master/include/linux/
H A Dmisc_cgroup.h31 * struct misc_res: Per cgroup per misc type resource
57 u64 misc_cg_res_total_usage(enum misc_res_type type);
58 int misc_cg_set_capacity(enum misc_res_type type, u64 capacity);
59 int misc_cg_try_charge(enum misc_res_type type, struct misc_cg *cg, u64 amount);
60 void misc_cg_uncharge(enum misc_res_type type, struct misc_cg *cg, u64 amount);
101 static inline u64 misc_cg_res_total_usage(enum misc_res_type type) argument
106 static inline int misc_cg_set_capacity(enum misc_res_type type, u64 capacity) argument
111 static inline int misc_cg_try_charge(enum misc_res_type type, argument
118 static inline void misc_cg_uncharge(enum misc_res_type type, argument
/linux-master/tools/testing/selftests/bpf/
H A Dnetlink_helpers.h36 int addattr(struct nlmsghdr *n, int maxlen, int type);
37 int addattr8(struct nlmsghdr *n, int maxlen, int type, __u8 data);
38 int addattr16(struct nlmsghdr *n, int maxlen, int type, __u16 data);
39 int addattr32(struct nlmsghdr *n, int maxlen, int type, __u32 data);
40 int addattr64(struct nlmsghdr *n, int maxlen, int type, __u64 data);
41 int addattrstrz(struct nlmsghdr *n, int maxlen, int type, const char *data);
42 int addattr_l(struct nlmsghdr *n, int maxlen, int type, const void *data, int alen);
44 struct rtattr *addattr_nest(struct nlmsghdr *n, int maxlen, int type);
/linux-master/drivers/gpu/drm/nouveau/nvkm/engine/nvdec/
H A Dga100.c37 ga100_nvdec_new(struct nvkm_device *device, enum nvkm_subdev_type type, int inst, argument
41 return r535_nvdec_new(&ga100_nvdec, device, type, inst, pnvdec);
H A Dad102.c37 ad102_nvdec_new(struct nvkm_device *device, enum nvkm_subdev_type type, int inst, argument
41 return r535_nvdec_new(&ad102_nvdec, device, type, inst, pnvdec);
/linux-master/drivers/gpu/drm/nouveau/nvkm/engine/nvenc/
H A Dga102.c37 ga102_nvenc_new(struct nvkm_device *device, enum nvkm_subdev_type type, int inst, argument
41 return r535_nvenc_new(&ga102_nvenc, device, type, inst, pnvenc);
H A Dad102.c37 ad102_nvenc_new(struct nvkm_device *device, enum nvkm_subdev_type type, int inst, argument
41 return r535_nvenc_new(&ad102_nvenc, device, type, inst, pnvenc);
H A Dgm107.c48 gm107_nvenc_new(struct nvkm_device *device, enum nvkm_subdev_type type, int inst, argument
51 return nvkm_nvenc_new_(gm107_nvenc_fwif, device, type, inst, pnvenc);
/linux-master/drivers/gpu/drm/nouveau/nvkm/engine/nvjpg/
H A Dad102.c37 ad102_nvjpg_new(struct nvkm_device *device, enum nvkm_subdev_type type, int inst, argument
41 return r535_nvjpg_new(&ad102_nvjpg, device, type, inst, pengine);
H A Dga100.c37 ga100_nvjpg_new(struct nvkm_device *device, enum nvkm_subdev_type type, int inst, argument
41 return r535_nvjpg_new(&ga100_nvjpg, device, type, inst, pengine);
/linux-master/drivers/gpu/drm/nouveau/nvkm/engine/ofa/
H A Dad102.c37 ad102_ofa_new(struct nvkm_device *device, enum nvkm_subdev_type type, int inst, argument
41 return r535_ofa_new(&ad102_ofa, device, type, inst, pengine);
H A Dga100.c37 ga100_ofa_new(struct nvkm_device *device, enum nvkm_subdev_type type, int inst, argument
41 return r535_ofa_new(&ga100_ofa, device, type, inst, pengine);
H A Dga102.c37 ga102_ofa_new(struct nvkm_device *device, enum nvkm_subdev_type type, int inst, argument
41 return r535_ofa_new(&ga102_ofa, device, type, inst, pengine);
/linux-master/drivers/gpu/drm/nouveau/nvkm/subdev/privring/
H A Dgm200.c34 gm200_privring_new(struct nvkm_device *device, enum nvkm_subdev_type type, int inst, argument
40 return nvkm_subdev_new_(&gm200_privring, device, type, inst, pprivring);
/linux-master/drivers/gpu/drm/nouveau/nvkm/engine/gr/
H A Dad102.c40 ad102_gr_new(struct nvkm_device *device, enum nvkm_subdev_type type, int inst, struct nvkm_gr **pgr) argument
43 return r535_gr_new(&ad102_gr, device, type, inst, pgr);
/linux-master/fs/btrfs/
H A Duuid-tree.h11 int btrfs_uuid_tree_add(struct btrfs_trans_handle *trans, u8 *uuid, u8 type,
13 int btrfs_uuid_tree_remove(struct btrfs_trans_handle *trans, u8 *uuid, u8 type,
/linux-master/tools/testing/selftests/bpf/progs/
H A Dpriv_map.c10 __uint(type, BPF_MAP_TYPE_QUEUE);
/linux-master/include/crypto/internal/
H A Dcipher.h23 * The single block cipher API is used with the ciphers of type
24 * CRYPTO_ALG_TYPE_CIPHER (listed as type "cipher" in /proc/crypto).
46 * @type: specifies the type of the cipher
57 u32 type, u32 mask)
59 type &= ~CRYPTO_ALG_TYPE_MASK;
60 type |= CRYPTO_ALG_TYPE_CIPHER;
63 return __crypto_cipher_cast(crypto_alloc_base(alg_name, type, mask));
84 * @type: specifies the type o
56 crypto_alloc_cipher(const char *alg_name, u32 type, u32 mask) argument
90 crypto_has_cipher(const char *alg_name, u32 type, u32 mask) argument
185 crypto_grab_cipher(struct crypto_cipher_spawn *spawn, struct crypto_instance *inst, const char *name, u32 type, u32 mask) argument
209 u32 type = CRYPTO_ALG_TYPE_CIPHER; local
[all...]
/linux-master/drivers/gpu/drm/amd/display/dc/dcn30/
H A Ddcn30_mpc.h645 #define MPC_REG_FIELD_LIST_DCN3_0(type) \
646 MPC_REG_FIELD_LIST_DCN2_0(type) \
647 type MPC_DWB0_MUX;\
648 type MPC_DWB0_MUX_STATUS;\
649 type MPC_OUT_RATE_CONTROL;\
650 type MPC_OUT_RATE_CONTROL_DISABLE;\
651 type MPC_OUT_FLOW_CONTROL_MODE;\
652 type MPC_OUT_FLOW_CONTROL_COUNT; \
653 type MPCC_GAMUT_REMAP_MODE; \
654 type MPCC_GAMUT_REMAP_MODE_CURREN
[all...]
/linux-master/drivers/gpu/drm/amd/display/dc/dcn31/
H A Ddcn31_hpo_dp_stream_encoder.h169 #define DCN3_1_HPO_DP_STREAM_ENC_REG_FIELD_LIST(type) \
170 type DP_STREAM_LINK_TARGET;\
171 type DP_STREAM_ENC_CLOCK_EN;\
172 type DP_STREAM_ENC_INPUT_MUX_PIXEL_STREAM_SOURCE_SEL;\
173 type DP_STREAM_ENC_INPUT_MUX_AUDIO_STREAM_SOURCE_SEL;\
174 type FIFO_RESET;\
175 type FIFO_RESET_DONE;\
176 type FIFO_ENABLE;\
177 type DP_SYM32_ENC_RESET;\
178 type DP_SYM32_ENC_RESET_DON
[all...]
/linux-master/arch/m68k/include/asm/
H A Dbootstd.h38 #define __bsc_return(type, res) \
46 return (type)(res); \
49 #define _bsc0(type,name) \
50 type name(void) \
57 __bsc_return(type,__res); \
60 #define _bsc1(type,name,atype,a) \
61 type name(atype a) \
69 __bsc_return(type,__res); \
72 #define _bsc2(type,name,atype,a,btype,b) \
73 type nam
[all...]
/linux-master/include/linux/iio/common/
H A Dssp_sensors.h18 * enum ssp_sensor_type - SSP sensor type
50 * @type: Used sensor type.
56 enum ssp_sensor_type type; member in struct:ssp_sensor_data
61 enum ssp_sensor_type type);
63 int ssp_enable_sensor(struct ssp_data *data, enum ssp_sensor_type type,
66 int ssp_disable_sensor(struct ssp_data *data, enum ssp_sensor_type type);
70 int ssp_change_delay(struct ssp_data *data, enum ssp_sensor_type type,
/linux-master/arch/x86/include/asm/
H A Dhypervisor.h48 /* Hypervisor type */
49 enum x86_hypervisor_type type; member in struct:hypervisor_x86
72 static inline bool hypervisor_is_type(enum x86_hypervisor_type type) argument
74 return x86_hyper_type == type;
78 static inline bool hypervisor_is_type(enum x86_hypervisor_type type) argument
80 return type == X86_HYPER_NATIVE;
/linux-master/fs/ocfs2/
H A Docfs2_lockid.h14 * name[0] --> type
41 static inline char ocfs2_lock_type_char(enum ocfs2_lock_type type) argument
44 switch (type) {
109 static inline const char *ocfs2_lock_type_string(enum ocfs2_lock_type type) argument
112 BUG_ON(type >= OCFS2_NUM_LOCK_TYPES);
114 return ocfs2_lock_type_strings[type];
/linux-master/arch/s390/include/asm/
H A Dextable.h28 short type, data; member in struct:exception_table_entry
50 a->type = b->type;
51 b->type = tmp.type;
/linux-master/drivers/net/ethernet/sfc/siena/
H A Dnic_common.h29 return efx->type->revision;
120 return tx_queue->efx->type->tx_probe(tx_queue);
124 tx_queue->efx->type->tx_init(tx_queue);
128 if (tx_queue->efx->type->tx_remove)
129 tx_queue->efx->type->tx_remove(tx_queue);
133 tx_queue->efx->type->tx_write(tx_queue);
139 return rx_queue->efx->type->rx_probe(rx_queue);
143 rx_queue->efx->type->rx_init(rx_queue);
147 rx_queue->efx->type->rx_remove(rx_queue);
151 rx_queue->efx->type
[all...]

Completed in 249 milliseconds

1234567891011>>