Searched refs:type (Results 1 - 25 of 13786) sorted by relevance

1234567891011>>

/linux-master/net/ieee802154/
H A Dnl_policy.c15 [IEEE802154_ATTR_DEV_NAME] = { .type = NLA_STRING, },
16 [IEEE802154_ATTR_DEV_INDEX] = { .type = NLA_U32, },
17 [IEEE802154_ATTR_PHY_NAME] = { .type = NLA_STRING, },
19 [IEEE802154_ATTR_STATUS] = { .type = NLA_U8, },
20 [IEEE802154_ATTR_SHORT_ADDR] = { .type = NLA_U16, },
21 [IEEE802154_ATTR_HW_ADDR] = { .type = NLA_HW_ADDR, },
22 [IEEE802154_ATTR_PAN_ID] = { .type = NLA_U16, },
23 [IEEE802154_ATTR_CHANNEL] = { .type = NLA_U8, },
24 [IEEE802154_ATTR_BCN_ORD] = { .type = NLA_U8, },
25 [IEEE802154_ATTR_SF_ORD] = { .type
[all...]
/linux-master/drivers/gpu/drm/amd/display/dc/dcn10/
H A Ddcn10_link_encoder.h229 #define DCN_LINK_ENCODER_REG_FIELD_LIST(type) \
230 type DIG_ENABLE;\
231 type DIG_HPD_SELECT;\
232 type DIG_MODE;\
233 type DIG_FE_SOURCE_SELECT;\
234 type DIG_CLOCK_PATTERN;\
235 type DPHY_BYPASS;\
236 type DPHY_ATEST_SEL_LANE0;\
237 type DPHY_ATEST_SEL_LANE1;\
238 type DPHY_ATEST_SEL_LANE
[all...]
H A Ddcn10_dpp.h479 #define TF_REG_FIELD_LIST(type) \
480 type EXT_OVERSCAN_LEFT; \
481 type EXT_OVERSCAN_RIGHT; \
482 type EXT_OVERSCAN_BOTTOM; \
483 type EXT_OVERSCAN_TOP; \
484 type OTG_H_BLANK_START; \
485 type OTG_H_BLANK_END; \
486 type OTG_V_BLANK_START; \
487 type OTG_V_BLANK_END; \
488 type PIXEL_DEPT
[all...]
H A Ddcn10_hubbub.h183 #define HUBBUB_REG_FIELD_LIST_DCN32(type) \
184 type DCHUBBUB_ARB_ALLOW_USR_RETRAINING_FORCE_VALUE;\
185 type DCHUBBUB_ARB_ALLOW_USR_RETRAINING_FORCE_ENABLE;\
186 type DCHUBBUB_ARB_DO_NOT_FORCE_ALLOW_USR_RETRAINING_DURING_PSTATE_CHANGE_REQUEST;\
187 type DCHUBBUB_ARB_DO_NOT_FORCE_ALLOW_USR_RETRAINING_DURING_PRE_CSTATE;\
188 type DCHUBBUB_ARB_USR_RETRAINING_WATERMARK_A;\
189 type DCHUBBUB_ARB_USR_RETRAINING_WATERMARK_B;\
190 type DCHUBBUB_ARB_USR_RETRAINING_WATERMARK_C;\
191 type DCHUBBUB_ARB_USR_RETRAINING_WATERMARK_D;\
192 type DCHUBBUB_ARB_UCLK_PSTATE_CHANGE_WATERMARK_
[all...]
/linux-master/drivers/gpu/drm/amd/display/dc/dcn20/
H A Ddcn20_dccg.h116 #define DCCG_REG_FIELD_LIST(type) \
117 type DPPCLK0_DTO_PHASE;\
118 type DPPCLK0_DTO_MODULO;\
119 type DPPCLK_DTO_ENABLE[6];\
120 type DPPCLK_DTO_DB_EN[6];\
121 type REFCLK_CLOCK_EN;\
122 type REFCLK_SRC_SEL;\
123 type DISPCLK_STEP_DELAY;\
124 type DISPCLK_STEP_SIZE;\
125 type DISPCLK_FREQ_RAMP_DON
[all...]
/linux-master/drivers/gpu/drm/amd/display/modules/color/
H A Dcolor_table.c33 bool mod_color_is_table_init(enum table_type type) argument
37 if (type == type_pq_table)
39 if (type == type_de_pq_table)
45 struct fixed31_32 *mod_color_get_table(enum table_type type) argument
49 if (type == type_pq_table)
51 if (type == type_de_pq_table)
57 void mod_color_set_table_init_state(enum table_type type, bool state) argument
59 if (type == type_pq_table)
61 if (type == type_de_pq_table)
/linux-master/include/linux/
H A Dcontainer_of.h13 * @type: the type of the container struct this is embedded in.
18 #define container_of(ptr, type, member) ({ \
20 static_assert(__same_type(*(ptr), ((type *)0)->member) || \
22 "pointer type mismatch in container_of()"); \
23 ((type *)(__mptr - offsetof(type, member))); })
29 * @type: the type of the container struct this is embedded in.
32 #define container_of_const(ptr, type, membe
[all...]
H A Dtypecheck.h6 * Check at compile time that something is of a particular type.
9 #define typecheck(type,x) \
10 ({ type __dummy; \
17 * Check at compile time that 'function' is a certain type, or is a pointer
18 * to that type (needs to use typedef for the function type.)
20 #define typecheck_fn(type,function) \
21 ({ typeof(type) __tmp = function; \
26 * Check at compile time that something is a pointer type.
H A Dkobject_ns.h40 enum kobj_ns_type type; member in struct:kobj_ns_type_operations
49 int kobj_ns_type_registered(enum kobj_ns_type type);
53 bool kobj_ns_current_may_mount(enum kobj_ns_type type);
54 void *kobj_ns_grab_current(enum kobj_ns_type type);
55 const void *kobj_ns_netlink(enum kobj_ns_type type, struct sock *sk);
56 const void *kobj_ns_initial(enum kobj_ns_type type);
57 void kobj_ns_drop(enum kobj_ns_type type, void *ns);
/linux-master/fs/orangefs/
H A Dorangefs-cache.c49 __s32 type = new_op->upcall.type; local
51 if (type == ORANGEFS_VFS_OP_FILE_IO)
53 else if (type == ORANGEFS_VFS_OP_LOOKUP)
55 else if (type == ORANGEFS_VFS_OP_CREATE)
57 else if (type == ORANGEFS_VFS_OP_GETATTR)
59 else if (type == ORANGEFS_VFS_OP_REMOVE)
61 else if (type == ORANGEFS_VFS_OP_MKDIR)
63 else if (type == ORANGEFS_VFS_OP_READDIR)
65 else if (type
116 op_alloc(__s32 type) argument
[all...]
/linux-master/arch/arm/mach-s3c/
H A Dusb-phy.h10 extern int s3c_usb_phy_init(struct platform_device *pdev, int type);
11 extern int s3c_usb_phy_exit(struct platform_device *pdev, int type);
/linux-master/drivers/gpu/drm/nouveau/nvkm/subdev/iccsense/
H A Dgf100.c27 gf100_iccsense_new(struct nvkm_device *device, enum nvkm_subdev_type type, int inst, argument
30 return nvkm_iccsense_new_(device, type, inst, piccsense);
/linux-master/drivers/net/ethernet/microchip/lan966x/
H A Dlan966x_vcap_ag_api.c11 .type = VCAP_FIELD_BIT,
16 .type = VCAP_FIELD_U32,
21 .type = VCAP_FIELD_U32,
26 .type = VCAP_FIELD_BIT,
31 .type = VCAP_FIELD_BIT,
36 .type = VCAP_FIELD_BIT,
41 .type = VCAP_FIELD_BIT,
46 .type = VCAP_FIELD_BIT,
51 .type = VCAP_FIELD_BIT,
56 .type
[all...]
/linux-master/drivers/gpu/drm/amd/display/dc/dcn31/
H A Ddcn31_vpg.h92 #define VPG_DCN31_REG_FIELD_LIST(type) \
93 type VPG_GENERIC_CONFLICT_OCCURED;\
94 type VPG_GENERIC_CONFLICT_CLR;\
95 type VPG_GENERIC_DATA_INDEX;\
96 type VPG_GENERIC_DATA_BYTE0;\
97 type VPG_GENERIC_DATA_BYTE1;\
98 type VPG_GENERIC_DATA_BYTE2;\
99 type VPG_GENERIC_DATA_BYTE3;\
100 type VPG_GENERIC0_FRAME_UPDATE;\
101 type VPG_GENERIC1_FRAME_UPDAT
[all...]
/linux-master/drivers/s390/char/
H A Dsclp_cpi_sys.h13 const char *type, u64 level);
/linux-master/arch/arm/mach-imx/
H A Dirq-common.h14 int (*set_irq_fiq)(unsigned int irq, unsigned int type);
/linux-master/include/keys/
H A Dtrusted_tee.h12 #include <keys/trusted-type.h>
/linux-master/include/uapi/linux/
H A Dv4l2-dv-timings.h26 .type = V4L2_DV_BT_656_1120, \
36 .type = V4L2_DV_BT_656_1120, \
46 .type = V4L2_DV_BT_656_1120, \
57 .type = V4L2_DV_BT_656_1120, \
67 .type = V4L2_DV_BT_656_1120, \
76 .type = V4L2_DV_BT_656_1120, \
85 .type = V4L2_DV_BT_656_1120, \
94 .type = V4L2_DV_BT_656_1120, \
104 .type = V4L2_DV_BT_656_1120, \
113 .type
[all...]
/linux-master/tools/testing/selftests/rseq/
H A Dcompiler.h38 std::remove_cv<std::remove_reference<decltype(x)>::type>::type
40 #define rseq_scalar_type_to_expr(type) \
41 unsigned type: (unsigned type)0, \
42 signed type: (signed type)0
45 * Use C11 _Generic to express unqualified type from expression. This removes
46 * volatile qualifier from expression type.
/linux-master/include/drm/ttm/
H A Dttm_range_manager.h38 unsigned type, bool use_tt,
41 unsigned type);
43 unsigned int type, bool use_tt,
46 BUILD_BUG_ON(__builtin_constant_p(type) && type >= TTM_NUM_MEM_TYPES);
47 return ttm_range_man_init_nocheck(bdev, type, use_tt, p_size);
51 unsigned int type)
53 BUILD_BUG_ON(__builtin_constant_p(type) && type >= TTM_NUM_MEM_TYPES);
54 return ttm_range_man_fini_nocheck(bdev, type);
42 ttm_range_man_init(struct ttm_device *bdev, unsigned int type, bool use_tt, unsigned long p_size) argument
50 ttm_range_man_fini(struct ttm_device *bdev, unsigned int type) argument
[all...]
/linux-master/drivers/gpu/drm/nouveau/nvkm/subdev/fb/
H A Dramnv44.c32 enum nvkm_ram_type type = NVKM_RAM_TYPE_UNKNOWN; local
35 type = NVKM_RAM_TYPE_GDDR3;
37 type = NVKM_RAM_TYPE_DDR2;
39 type = NVKM_RAM_TYPE_DDR1;
41 return nv40_ram_new_(fb, type, size, pram);
/linux-master/tools/lib/symbol/
H A Dkallsyms.h13 static inline u8 kallsyms2elf_binding(char type) argument
15 if (type == 'W')
18 return isupper(type) ? STB_GLOBAL : STB_LOCAL;
21 u8 kallsyms2elf_type(char type);
27 char type, u64 start));
/linux-master/fs/smb/client/
H A Dcifs_debug.h62 #define cifs_dbg_func(ratefunc, type, fmt, ...) \
64 if ((type) & FYI && cifsFYI & CIFS_INFO) { \
67 } else if ((type) & VFS) { \
69 } else if ((type) & NOISY && (NOISY != 0)) { \
74 #define cifs_dbg(type, fmt, ...) \
76 if ((type) & ONCE) \
77 cifs_dbg_func(once, type, fmt, ##__VA_ARGS__); \
79 cifs_dbg_func(ratelimited, type, fmt, ##__VA_ARGS__); \
82 #define cifs_server_dbg_func(ratefunc, type, fmt, ...) \
85 if ((type)
[all...]
/linux-master/net/tipc/
H A Dnetlink.c48 [TIPC_NLA_UNSPEC] = { .type = NLA_UNSPEC, },
49 [TIPC_NLA_BEARER] = { .type = NLA_NESTED, },
50 [TIPC_NLA_SOCK] = { .type = NLA_NESTED, },
51 [TIPC_NLA_PUBL] = { .type = NLA_NESTED, },
52 [TIPC_NLA_LINK] = { .type = NLA_NESTED, },
53 [TIPC_NLA_MEDIA] = { .type = NLA_NESTED, },
54 [TIPC_NLA_NODE] = { .type = NLA_NESTED, },
55 [TIPC_NLA_NET] = { .type = NLA_NESTED, },
56 [TIPC_NLA_NAME_TABLE] = { .type = NLA_NESTED, },
57 [TIPC_NLA_MON] = { .type
[all...]
/linux-master/drivers/net/ethernet/microchip/vcap/
H A Dvcap_model_kunit.c19 .type = VCAP_FIELD_U32,
24 .type = VCAP_FIELD_BIT,
29 .type = VCAP_FIELD_U32,
34 .type = VCAP_FIELD_U32,
39 .type = VCAP_FIELD_U32,
44 .type = VCAP_FIELD_U32,
49 .type = VCAP_FIELD_BIT,
54 .type = VCAP_FIELD_U32,
59 .type = VCAP_FIELD_U32,
64 .type
[all...]

Completed in 819 milliseconds

1234567891011>>