Searched refs:param (Results 1 - 25 of 1519) sorted by relevance

1234567891011>>

/linux-master/drivers/gpu/drm/i915/display/
H A Dintel_display_params.h15 * Invoke param, a function-like macro, for each intel display param, with
18 * param(type, name, value, mode)
26 #define INTEL_DISPLAY_PARAMS_FOR_EACH(param) \
27 param(char *, vbt_firmware, NULL, 0400) \
28 param(int, lvds_channel_mode, 0, 0400) \
29 param(int, panel_use_ssc, -1, 0600) \
30 param(int, vbt_sdvo_panel_type, -1, 0400) \
31 param(int, enable_dc, -1, 0400) \
32 param(boo
[all...]
/linux-master/include/uapi/linux/
H A Dparam.h5 #include <asm/param.h>
/linux-master/drivers/gpu/drm/i915/
H A Di915_params.h38 * Invoke param, a function-like macro, for each i915 param, with arguments:
40 * param(type, name, value, mode)
48 #define I915_PARAMS_FOR_EACH(param) \
49 param(int, modeset, -1, 0400) \
50 param(int, enable_guc, -1, 0400) \
51 param(int, guc_log_level, -1, 0400) \
52 param(char *, guc_firmware_path, NULL, 0400) \
53 param(char *, huc_firmware_path, NULL, 0400) \
54 param(cha
[all...]
/linux-master/drivers/target/iscsi/
H A Discsi_target_parameters.c112 struct iscsi_param *param; local
114 list_for_each_entry(param, &param_list->param_list, p_list)
115 pr_debug("%s: %s\n", param->name, param->value);
122 struct iscsi_param *param = NULL; local
124 param = kzalloc(sizeof(struct iscsi_param), GFP_KERNEL);
125 if (!param) {
129 INIT_LIST_HEAD(&param->p_list);
131 param->name = kstrdup(name, GFP_KERNEL);
132 if (!param
196 struct iscsi_param *param = NULL; local
437 struct iscsi_param *param; local
517 struct iscsi_param *param; local
566 struct iscsi_param *param = NULL; local
640 struct iscsi_param *param, *param_tmp; local
660 struct iscsi_param *param; local
693 iscsi_update_param_value(struct iscsi_param *param, char *value) argument
760 iscsi_check_proposer_for_optional_reply(struct iscsi_param *param, bool keys_workaround) argument
798 iscsi_check_boolean_value(struct iscsi_param *param, char *value) argument
809 iscsi_check_numerical_value(struct iscsi_param *param, char *value_ptr) argument
876 iscsi_check_string_or_list_value(struct iscsi_param *param, char *value) argument
912 iscsi_check_valuelist_for_support( struct iscsi_param *param, char *value) argument
957 iscsi_check_acceptor_state(struct iscsi_param *param, char *value, struct iscsit_conn *conn) argument
1081 iscsi_check_proposer_state(struct iscsi_param *param, char *value) argument
1110 iscsi_check_value(struct iscsi_param *param, char *value) argument
1193 struct iscsi_param *param; local
1228 struct iscsi_param *param; local
1293 struct iscsi_param *param = NULL; local
1373 struct iscsi_param *param; local
1432 struct iscsi_param *param; local
1485 struct iscsi_param *param; local
1508 struct iscsi_param *param; local
1542 struct iscsi_param *param; local
1608 struct iscsi_param *param; local
[all...]
/linux-master/arch/mips/include/uapi/asm/
H A Dparam.h15 #include <asm-generic/param.h>
/linux-master/arch/sparc/include/uapi/asm/
H A Dparam.h6 #include <asm-generic/param.h>
/linux-master/arch/arm64/include/uapi/asm/
H A Dparam.h22 #include <asm-generic/param.h>
/linux-master/arch/hexagon/include/uapi/asm/
H A Dparam.h25 #include <asm-generic/param.h>
/linux-master/arch/m68k/include/uapi/asm/
H A Dparam.h11 #include <asm-generic/param.h>
/linux-master/arch/openrisc/include/uapi/asm/
H A Dparam.h25 #include <asm-generic/param.h>
/linux-master/lib/math/
H A Drational-test.c26 static void get_desc(const struct rational_test_param *param, char *desc) argument
28 strscpy(desc, param->name, KUNIT_PARAM_DESC_SIZE);
36 const struct rational_test_param *param = (const struct rational_test_param *)test->param_value; local
39 rational_best_approximation(param->num, param->den, param->max_num, param->max_den, &n, &d);
40 KUNIT_EXPECT_EQ(test, n, param->exp_num);
41 KUNIT_EXPECT_EQ(test, d, param->exp_den);
/linux-master/drivers/tee/optee/
H A Doptee_trace.h20 TP_PROTO(struct optee_rpc_param *param),
21 TP_ARGS(param),
24 __field(void *, param)
29 __entry->param = param;
30 BUILD_BUG_ON(sizeof(*param) < sizeof(__entry->args));
31 memcpy(__entry->args, param, sizeof(__entry->args));
34 TP_printk("param=%p (%x, %x, %x, %x, %x, %x, %x, %x)", __entry->param,
41 TP_PROTO(struct optee_rpc_param *param, struc
[all...]
/linux-master/fs/
H A Dfs_parser.c56 struct fs_parameter *param, bool *negated)
59 const char *name = param->key;
60 bool want_flag = param->type == fs_value_is_flag;
89 * @param: The parameter.
105 struct fs_parameter *param,
112 p = fs_lookup_key(desc, param, &result->negated);
117 warn_plog(log, "Deprecated parameter '%s'", param->key);
123 if (param->type != fs_value_is_flag)
125 param->key);
128 int ret = p->type(log, p, param, resul
54 fs_lookup_key( const struct fs_parameter_spec *desc, struct fs_parameter *param, bool *negated) argument
103 __fs_parse(struct p_log *log, const struct fs_parameter_spec *desc, struct fs_parameter *param, struct fs_parse_result *result) argument
144 fs_lookup_param(struct fs_context *fc, struct fs_parameter *param, bool want_bdev, unsigned int flags, struct path *_path) argument
192 fs_param_bad_value(struct p_log *log, struct fs_parameter *param) argument
197 fs_param_is_bool(struct p_log *log, const struct fs_parameter_spec *p, struct fs_parameter *param, struct fs_parse_result *result) argument
213 fs_param_is_u32(struct p_log *log, const struct fs_parameter_spec *p, struct fs_parameter *param, struct fs_parse_result *result) argument
227 fs_param_is_s32(struct p_log *log, const struct fs_parameter_spec *p, struct fs_parameter *param, struct fs_parse_result *result) argument
240 fs_param_is_u64(struct p_log *log, const struct fs_parameter_spec *p, struct fs_parameter *param, struct fs_parse_result *result) argument
253 fs_param_is_enum(struct p_log *log, const struct fs_parameter_spec *p, struct fs_parameter *param, struct fs_parse_result *result) argument
269 fs_param_is_string(struct p_log *log, const struct fs_parameter_spec *p, struct fs_parameter *param, struct fs_parse_result *result) argument
279 fs_param_is_blob(struct p_log *log, const struct fs_parameter_spec *p, struct fs_parameter *param, struct fs_parse_result *result) argument
288 fs_param_is_fd(struct p_log *log, const struct fs_parameter_spec *p, struct fs_parameter *param, struct fs_parse_result *result) argument
311 fs_param_is_blockdev(struct p_log *log, const struct fs_parameter_spec *p, struct fs_parameter *param, struct fs_parse_result *result) argument
318 fs_param_is_path(struct p_log *log, const struct fs_parameter_spec *p, struct fs_parameter *param, struct fs_parse_result *result) argument
383 const struct fs_parameter_spec *param, *p2; local
[all...]
/linux-master/lib/zlib_dfltcc/
H A Ddfltcc.c29 dfltcc(DFLTCC_QAF, &dfltcc_state->param, NULL, NULL, NULL, NULL, NULL);
30 memmove(&dfltcc_state->af, &dfltcc_state->param, sizeof(dfltcc_state->af));
35 memset(&dfltcc_state->param, 0, sizeof(dfltcc_state->param));
36 dfltcc_state->param.nt = 1;
37 dfltcc_state->param.ribm = DFLTCC_RIBM;
H A Ddfltcc_deflate.c64 struct dfltcc_param_v0 *param = &GET_DFLTCC_STATE(state)->param; local
68 param, NULL, NULL,
77 struct dfltcc_param_v0 *param = &GET_DFLTCC_STATE(state)->param; local
83 param, &strm->next_out, &avail_out,
94 const struct dfltcc_param_v0 *param
101 bi_reverse(param->eobs >> (15 - param->eobl), param
127 struct dfltcc_param_v0 *param = &dfltcc_state->common.param; local
[all...]
/linux-master/drivers/media/platform/mediatek/jpeg/
H A Dmtk_jpeg_dec_parse.h13 bool mtk_jpeg_parse(struct mtk_jpeg_dec_param *param, u8 *src_addr_va,
H A Dmtk_jpeg_dec_parse.c52 static bool mtk_jpeg_do_parse(struct mtk_jpeg_dec_param *param, u8 *src_addr_va, argument
92 param->pic_h = word;
96 param->pic_w = word;
98 param->comp_num = read_byte(&stream);
99 if (param->comp_num != 1 && param->comp_num != 3)
102 for (i = 0; i < param->comp_num; i++) {
103 param->comp_id[i] = read_byte(&stream);
104 if (param->comp_id[i] == -1)
111 param
138 mtk_jpeg_parse(struct mtk_jpeg_dec_param *param, u8 *src_addr_va, u32 src_size) argument
[all...]
/linux-master/drivers/media/platform/st/sti/delta/
H A Ddelta-ipc.h17 * @param: (in) open command parameters specific to decoder
18 * @param.size: (in) size of parameter
19 * @param.data: (in) virtual address of parameter
39 struct delta_ipc_param *param, u32 ipc_buf_size,
45 * @param: (in) set stream command parameters specific to decoder
46 * @param.size: (in) size of parameter
47 * @param.data: (in) virtual address of parameter. Must be
50 int delta_ipc_set_stream(void *hdl, struct delta_ipc_param *param);
56 * @param: (in) decode command parameters specific to decoder
57 * @param
[all...]
/linux-master/crypto/
H A Dalgboss.c52 struct cryptomgr_param *param = data; local
56 tmpl = crypto_lookup_template(param->template);
61 err = tmpl->create(tmpl, param->tb);
67 complete_all(&param->larval->completion);
68 crypto_alg_put(&param->larval->alg);
69 kfree(param);
76 struct cryptomgr_param *param; local
85 param = kzalloc(sizeof(*param), GFP_KERNEL);
86 if (!param)
176 struct crypto_test_param *param = data; local
191 struct crypto_test_param *param; local
[all...]
/linux-master/drivers/misc/lkdtm/
H A Dlkdtm.h22 int lkdtm_check_bool_cmdline(const char *param);
23 #define pr_expected_config_param(kconfig, param) \
26 switch (lkdtm_check_bool_cmdline(param)) { \
28 pr_warn("This is probably expected, since this %s was built with " #kconfig "=y but booted with '" param "=N'\n", \
32 pr_err("Unexpected! This %s was built with " #kconfig "=y and booted with '" param "=Y'\n", \
36 pr_err("Unexpected! This %s was built with " #kconfig "=y (and booted without '" param "' specified)\n", \
40 switch (lkdtm_check_bool_cmdline(param)) { \
42 pr_warn("This is probably expected, as this %s was built *without* " #kconfig "=y and booted with '" param "=N'\n", \
46 pr_err("Unexpected! This %s was built *without* " #kconfig "=y but booted with '" param "=Y'\n", \
50 pr_err("This is probably expected, since this %s was built *without* " #kconfig "=y (and booted without '" param "' specifie
[all...]
/linux-master/scripts/
H A DMakefile.kcsan3 # because Clang accepts "--param" even if it is unused.
5 cc-param = -mllvm -$(1)
7 cc-param = --param $(1)
13 $(call cc-option,$(call cc-param,tsan-compound-read-before-write=1),$(call cc-option,$(call cc-param,tsan-instrument-read-before-write=1))) \
14 $(call cc-param,tsan-distinguish-volatile=1)
23 kcsan-cflags += $(call cc-option,$(call cc-param,tsan-instrument-func-entry-exit=0))
/linux-master/drivers/staging/rtl8723bs/os_dep/
H A Dioctl_linux.c45 static int wpa_set_encryption(struct net_device *dev, struct ieee_param *param, u32 param_len) argument
55 param->u.crypt.err = 0;
56 param->u.crypt.alg[IEEE_CRYPT_ALG_NAME_LEN - 1] = '\0';
58 if (param_len < (u32)((u8 *)param->u.crypt.key - (u8 *)param) + param->u.crypt.key_len) {
63 if (param->sta_addr[0] != 0xff || param->sta_addr[1] != 0xff ||
64 param->sta_addr[2] != 0xff || param
464 struct ieee_param *param; local
513 rtw_set_encryption(struct net_device *dev, struct ieee_param *param, u32 param_len) argument
745 rtw_set_beacon(struct net_device *dev, struct ieee_param *param, int len) argument
782 rtw_add_sta(struct net_device *dev, struct ieee_param *param) argument
847 rtw_del_sta(struct net_device *dev, struct ieee_param *param) argument
884 rtw_ioctl_get_sta_data(struct net_device *dev, struct ieee_param *param, int len) argument
943 rtw_get_sta_wpaie(struct net_device *dev, struct ieee_param *param) argument
981 rtw_set_wps_beacon(struct net_device *dev, struct ieee_param *param, int len) argument
1014 rtw_set_wps_probe_resp(struct net_device *dev, struct ieee_param *param, int len) argument
1041 rtw_set_wps_assoc_resp(struct net_device *dev, struct ieee_param *param, int len) argument
1068 rtw_set_hidden_ssid(struct net_device *dev, struct ieee_param *param, int len) argument
1108 rtw_ioctl_acl_remove_sta(struct net_device *dev, struct ieee_param *param, int len) argument
1126 rtw_ioctl_acl_add_sta(struct net_device *dev, struct ieee_param *param, int len) argument
1143 rtw_ioctl_set_macaddr_acl(struct net_device *dev, struct ieee_param *param, int len) argument
1159 struct ieee_param *param; local
[all...]
/linux-master/arch/arm/mach-omap2/
H A Domap-secure.c63 u32 *param; local
68 param = buf[cpu];
70 param[0] = nargs;
71 param[1] = arg1;
72 param[2] = arg2;
73 param[3] = arg3;
74 param[4] = arg4;
81 outer_clean_range(__pa(param), __pa(param + 5));
82 ret = omap_smc2(idx, flag, __pa(param));
124 static u32 param[5]; local
158 static u32 param[5]; local
[all...]
/linux-master/drivers/gpu/drm/amd/pm/powerplay/hwmgr/
H A Dppatomfwctrl.c229 * @param hwmgr
241 * @param hwmgr input parameter: pointer to HwMgr
242 * @param clock_type input parameter: Clock type: 1 - GFXCLK, 2 - UCLK, 0 - All other clocks
243 * @param clock_value input parameter: Clock
244 * @param dividers output parameter:Clock dividers
277 struct pp_atomfwctrl_avfs_parameters *param)
297 param->ulMaxVddc = le32_to_cpu(profile->maxvddc);
298 param->ulMinVddc = le32_to_cpu(profile->minvddc);
299 param->ulMeanNsigmaAcontant0 =
301 param
276 pp_atomfwctrl_get_avfs_information(struct pp_hwmgr *hwmgr, struct pp_atomfwctrl_avfs_parameters *param) argument
463 pp_atomfwctrl_get_gpio_information(struct pp_hwmgr *hwmgr, struct pp_atomfwctrl_gpio_parameters *param) argument
620 pp_atomfwctrl_get_smc_dpm_information(struct pp_hwmgr *hwmgr, struct pp_atomfwctrl_smc_dpm_parameters *param) argument
[all...]
/linux-master/drivers/media/platform/allegro-dvt/
H A Dallegro-mail.c63 static inline u32 settings_get_mcu_codec(struct create_channel_param *param) argument
65 enum mcu_msg_version version = param->version;
66 u32 pixelformat = param->codec;
88 allegro_encode_config_blob(u32 *dst, struct create_channel_param *param) argument
90 enum mcu_msg_version version = param->version;
94 unsigned int codec = settings_get_mcu_codec(param);
97 dst[i++] = param->layer_id;
98 dst[i++] = FIELD_PREP(GENMASK(31, 16), param->height) |
99 FIELD_PREP(GENMASK(15, 0), param->width);
101 dst[i++] = param
253 allegro_decode_config_blob(struct create_channel_param *param, struct mcu_msg_create_channel_response *msg, u32 *src) argument
[all...]

Completed in 282 milliseconds

1234567891011>>