| /linux/tools/testing/selftests/kvm/x86/ |
| H A D | fastops_test.c | 131 static const uint64_t vals[] = { variable 147 for (i = 0; i < ARRAY_SIZE(vals); i++) { \ 148 guest_test_fastop_1("dec" suffix, type_t, vals[i]); \ 149 guest_test_fastop_1("inc" suffix, type_t, vals[i]); \ 150 guest_test_fastop_1("neg" suffix, type_t, vals[i]); \ 151 guest_test_fastop_1("not" suffix, type_t, vals[i]); \ 153 for (j = 0; j < ARRAY_SIZE(vals); j++) { \ 154 guest_test_fastop_2("add" suffix, type_t, vals[i], vals[j]); \ 155 guest_test_fastop_2("adc" suffix, type_t, vals[i], vals[j]); \ 156 guest_test_fastop_2("and" suffix, type_t, vals[i], vals[j]); \ [all …]
|
| /linux/kernel/trace/ |
| H A D | synth_event_gen_test.c | 48 u64 vals[7]; in test_gen_synth_cmd() local 113 vals[0] = 777; /* next_pid_field */ in test_gen_synth_cmd() 114 vals[1] = (u64)(long)"hula hoops"; /* next_comm_field */ in test_gen_synth_cmd() 115 vals[2] = 1000000; /* ts_ns */ in test_gen_synth_cmd() 116 vals[3] = 1000; /* ts_ms */ in test_gen_synth_cmd() 117 vals[4] = raw_smp_processor_id(); /* cpu */ in test_gen_synth_cmd() 118 vals[5] = (u64)(long)"thneed"; /* my_string_field */ in test_gen_synth_cmd() 119 vals[6] = 598; /* my_int_field */ in test_gen_synth_cmd() 122 ret = synth_event_trace_array(gen_synth_test, vals, ARRAY_SIZE(vals)); in test_gen_synth_cmd() 139 u64 vals[7]; in test_empty_synth_event() local [all …]
|
| /linux/tools/perf/tests/ |
| H A D | parse-metric.c | 33 static void load_runtime_stat(struct evlist *evlist, struct value *vals) in load_runtime_stat() argument 40 count = find_value(evsel->name, vals); in load_runtime_stat() 67 static int __compute_metric(const char *name, struct value *vals, in __compute_metric() argument 103 load_runtime_stat(evlist, vals); in __compute_metric() 119 static int compute_metric(const char *name, struct value *vals, double *ratio) in compute_metric() argument 121 return __compute_metric(name, vals, name, ratio, NULL, NULL); in compute_metric() 124 static int compute_metric_group(const char *name, struct value *vals, in compute_metric_group() argument 128 return __compute_metric(name, vals, name1, ratio1, name2, ratio2); in compute_metric_group() 134 struct value vals[] = { in test_ipc() local 141 compute_metric("IPC", vals, &ratio) == 0); in test_ipc() [all …]
|
| /linux/tools/testing/selftests/bpf/progs/ |
| H A D | verifier_subprog_precision.c | 11 int vals[] SEC(".data.vals") = {1, 2, 3, 4}; variable 73 : __imm_ptr(vals) in subprog_result_precise() 125 : __imm_ptr(vals) in fp_precise_subprog_result() 161 : __imm_ptr(vals) in sneaky_fp_precise_subprog_result() 201 : __imm_ptr(vals), in global_subprog_result_precise() 202 __imm_const(vals_arr_sz, ARRAY_SIZE(vals)) in global_subprog_result_precise() 320 : __imm_ptr(vals), in callback_result_precise() 358 : __imm_ptr(vals) in parent_callee_saved_reg_precise() 392 : __imm_ptr(vals) in parent_callee_saved_reg_precise_global() 452 : __imm_ptr(vals), in parent_callee_saved_reg_precise_with_callback() [all …]
|
| /linux/drivers/crypto/intel/qat/qat_common/ |
| H A D | adf_tl_debugfs.c | 110 struct adf_tl_dbg_aggr_values *vals) in tl_calc_count() argument 122 memset(vals, 0, sizeof(*vals)); in tl_calc_count() 127 vals->curr = hist_vals[sample_cnt - 1]; in tl_calc_count() 128 vals->min = min_array(hist_vals, sample_cnt); in tl_calc_count() 129 vals->max = max_array(hist_vals, sample_cnt); in tl_calc_count() 130 vals->avg = avg_array(hist_vals, sample_cnt); in tl_calc_count() 140 struct adf_tl_dbg_aggr_values *vals) in tl_cycles_to_ns() argument 146 ret = tl_calc_count(telemetry, ctr, vals); in tl_cycles_to_ns() 150 vals->curr *= cpp_ns_per_cycle; in tl_cycles_to_ns() 151 vals->min *= cpp_ns_per_cycle; in tl_cycles_to_ns() [all …]
|
| /linux/sound/soc/fsl/ |
| H A D | fsl_ssi.c | 406 struct fsl_ssi_regvals *vals = ssi->regvals; in fsl_ssi_config_enable() local 427 srcr = vals[RX].srcr | vals[TX].srcr; in fsl_ssi_config_enable() 428 stcr = vals[RX].stcr | vals[TX].stcr; in fsl_ssi_config_enable() 429 sier = vals[RX].sier | vals[TX].sier; in fsl_ssi_config_enable() 432 srcr = vals[dir].srcr; in fsl_ssi_config_enable() 433 stcr = vals[dir].stcr; in fsl_ssi_config_enable() 434 sier = vals[dir].sier; in fsl_ssi_config_enable() 470 vals[dir].scr, vals[dir].scr); in fsl_ssi_config_enable() 490 #define _ssi_xor_shared_bits(vals, avals, aactive) \ argument 491 ((vals) ^ ((avals) * (aactive))) [all …]
|
| /linux/tools/testing/selftests/gpio/ |
| H A D | gpio-mockup-cdev.c | 48 struct gpio_v2_line_values vals; in get_value_v2() local 51 memset(&vals, 0, sizeof(vals)); in get_value_v2() 52 vals.mask = 1; in get_value_v2() 53 ret = ioctl(lfd, GPIO_V2_LINE_GET_VALUES_IOCTL, &vals); in get_value_v2() 56 return vals.bits & 0x1; in get_value_v2() 81 struct gpiohandle_data vals; in get_value_v1() local 84 memset(&vals, 0, sizeof(vals)); in get_value_v1() 85 ret = ioctl(lfd, GPIOHANDLE_GET_LINE_VALUES_IOCTL, &vals); in get_value_v1() 88 return vals.values[0]; in get_value_v1()
|
| /linux/fs/smb/server/ |
| H A D | smb2ops.c | 200 conn->vals = &smb21_server_values; in init_smb2_1_server() 207 conn->vals->capabilities |= SMB2_GLOBAL_CAP_LEASING; in init_smb2_1_server() 217 conn->vals = &smb30_server_values; in init_smb3_0_server() 224 conn->vals->capabilities |= SMB2_GLOBAL_CAP_LEASING | in init_smb3_0_server() 229 conn->vals->capabilities |= SMB2_GLOBAL_CAP_ENCRYPTION; in init_smb3_0_server() 234 conn->vals->capabilities |= SMB2_GLOBAL_CAP_ENCRYPTION; in init_smb3_0_server() 237 conn->vals->capabilities |= SMB2_GLOBAL_CAP_MULTI_CHANNEL; in init_smb3_0_server() 247 conn->vals = &smb302_server_values; in init_smb3_02_server() 254 conn->vals->capabilities |= SMB2_GLOBAL_CAP_LEASING | in init_smb3_02_server() 260 conn->vals->capabilities |= SMB2_GLOBAL_CAP_ENCRYPTION; in init_smb3_02_server() [all …]
|
| /linux/tools/testing/selftests/bpf/prog_tests/ |
| H A D | queue_stack_map.c | 13 __u32 vals[MAP_SIZE], val; in test_queue_stack_map_by_type() local 28 vals[i] = rand(); in test_queue_stack_map_by_type() 51 err = bpf_map_update_elem(map_in_fd, NULL, &vals[i], 0); in test_queue_stack_map_by_type() 61 val = vals[i]; in test_queue_stack_map_by_type() 62 pkt_v4.iph.saddr = vals[i] * 5; in test_queue_stack_map_by_type() 64 val = vals[MAP_SIZE - 1 - i]; in test_queue_stack_map_by_type() 65 pkt_v4.iph.saddr = vals[MAP_SIZE - 1 - i] * 5; in test_queue_stack_map_by_type() 97 ASSERT_EQ(val, vals[i] * 5, "bpf_map_push_elem val"); in test_queue_stack_map_by_type()
|
| /linux/tools/testing/selftests/kvm/ |
| H A D | guest_print_test.c | 24 static struct guest_vals vals; variable 59 vals = (struct guest_vals){ (uint64_t)a, (uint64_t)b, TYPE_##ext }; \ 60 sync_global_to_guest(vcpu->vm, vals); \ 72 switch (vals.type) { in guest_code() 75 GUEST_PRINTF(PRINTF_FMT_##ext, vals.a, vals.b); \ in guest_code() 76 __GUEST_ASSERT(vals.a == vals.b, \ in guest_code() 77 ASSERT_FMT_##ext, vals.a, vals.b); \ in guest_code() 82 GUEST_SYNC(vals.type); in guest_code()
|
| /linux/drivers/net/wireless/mediatek/mt7601u/ |
| H A D | init.c | 174 u32 *vals; in mt7601u_init_wcid_mem() local 177 vals = kmalloc(sizeof(*vals) * N_WCIDS * 2, GFP_KERNEL); in mt7601u_init_wcid_mem() 178 if (!vals) in mt7601u_init_wcid_mem() 182 vals[i * 2] = 0xffffffff; in mt7601u_init_wcid_mem() 183 vals[i * 2 + 1] = 0x00ffffff; in mt7601u_init_wcid_mem() 187 vals, N_WCIDS * 2); in mt7601u_init_wcid_mem() 188 kfree(vals); in mt7601u_init_wcid_mem() 195 u32 vals[4] = {}; in mt7601u_init_key_mem() local 198 vals, ARRAY_SIZE(vals)); in mt7601u_init_key_mem() 203 u32 *vals; in mt7601u_init_wcid_attr_mem() local [all …]
|
| /linux/drivers/hwmon/ |
| H A D | max6697.c | 425 u32 vals[2]; in max6697_config_of() local 442 if (of_property_read_u32(node, "alert-mask", vals)) in max6697_config_of() 443 vals[0] = 0; in max6697_config_of() 445 MAX6697_ALERT_MAP_BITS(vals[0])); in max6697_config_of() 449 if (of_property_read_u32(node, "over-temperature-mask", vals)) in max6697_config_of() 450 vals[0] = 0; in max6697_config_of() 452 MAX6697_OVERT_MAP_BITS(vals[0])); in max6697_config_of() 462 if (of_property_read_u32(node, "resistance-cancellation", &vals[0])) { in max6697_config_of() 464 vals[0] = 0xfe; in max6697_config_of() 466 vals[0] = 0; in max6697_config_of() [all …]
|
| /linux/drivers/iio/imu/bno055/ |
| H A D | bno055.c | 117 const int *vals; member 131 .vals = bno055_acc_lpf_vals, 143 .vals = bno055_acc_range_vals, 176 .vals = bno055_gyr_scale_vals, 187 .vals = bno055_gyr_lpf_vals, 197 .vals = bno055_mag_odr_vals, 576 *val = attr->vals[idx]; in bno055_get_regmask() 578 *val = attr->vals[idx * 2]; in bno055_get_regmask() 579 *val2 = attr->vals[idx * 2 + 1]; in bno055_get_regmask() 626 tbl_val = attr->vals[i]; in bno055_set_regmask() [all …]
|
| /linux/drivers/iio/orientation/ |
| H A D | hid-sensor-rotation.c | 68 int size, int *vals, int *val_len, in dev_rot_read_raw() argument 75 vals[0] = 0; in dev_rot_read_raw() 76 vals[1] = 0; in dev_rot_read_raw() 82 vals[i] = rot_state->scan.sampled_vals[i]; in dev_rot_read_raw() 89 vals[0] = rot_state->scale_pre_decml; in dev_rot_read_raw() 90 vals[1] = rot_state->scale_post_decml; in dev_rot_read_raw() 94 *vals = rot_state->value_offset; in dev_rot_read_raw() 99 &rot_state->common_attributes, &vals[0], &vals[1]); in dev_rot_read_raw() 103 &rot_state->common_attributes, &vals[0], &vals[1]); in dev_rot_read_raw()
|
| /linux/drivers/iio/test/ |
| H A D | iio-test-gts.c | 376 static void test_iio_gts_chk_times(struct kunit *test, const int *vals) in test_iio_gts_chk_times() argument 382 KUNIT_EXPECT_EQ(test, expected[i], vals[i]); in test_iio_gts_chk_times() 386 const int *vals, int len) in test_iio_gts_chk_scales_all() argument 409 KUNIT_EXPECT_EQ(test, expected[i], vals[i]); in test_iio_gts_chk_scales_all() 413 const int *vals, int len) in test_iio_gts_chk_scales_t200() argument 445 KUNIT_EXPECT_EQ(test, expected[i], vals[i]); in test_iio_gts_chk_scales_t200() 453 const int *vals; in test_iio_gts_avail_test() local 460 ret = iio_gts_avail_times(>s, &vals, &type, &len); in test_iio_gts_avail_test() 470 test_iio_gts_chk_times(test, vals); in test_iio_gts_avail_test() 473 ret = iio_gts_all_avail_scales(>s, &vals, &type, &len); in test_iio_gts_avail_test() [all …]
|
| /linux/drivers/iio/ |
| H A D | inkern.c | 551 int vals[INDIO_MAX_RAW_ELEMENTS]; in iio_channel_read() local 565 vals, &val_len, info); in iio_channel_read() 566 *val = vals[0]; in iio_channel_read() 567 *val2 = vals[1]; in iio_channel_read() 767 const int **vals, int *type, int *length, in iio_channel_read_avail() argument 777 vals, type, length, info); in iio_channel_read_avail() 782 const int **vals, int *type, int *length, in iio_read_avail_channel_attribute() argument 791 return iio_channel_read_avail(chan, vals, type, length, attribute); in iio_read_avail_channel_attribute() 796 const int **vals, int *length) in iio_read_avail_channel_raw() argument 801 ret = iio_read_avail_channel_attribute(chan, vals, &type, length, in iio_read_avail_channel_raw() [all …]
|
| H A D | industrialio-core.c | 654 int size, const int *vals) in __iio_format_value() argument 662 return sysfs_emit_at(buf, offset, "%d", vals[0]); in __iio_format_value() 667 if (vals[1] < 0) in __iio_format_value() 669 abs(vals[0]), -vals[1], in __iio_format_value() 672 return sysfs_emit_at(buf, offset, "%d.%06u%s", vals[0], in __iio_format_value() 673 vals[1], scale_db ? " dB" : ""); in __iio_format_value() 675 if (vals[1] < 0) in __iio_format_value() 677 abs(vals[0]), -vals[1]); in __iio_format_value() 679 return sysfs_emit_at(buf, offset, "%d.%09u", vals[0], in __iio_format_value() 680 vals[1]); in __iio_format_value() [all …]
|
| /linux/drivers/clk/uniphier/ |
| H A D | clk-uniphier-mux.c | 18 const unsigned int *vals; member 28 mux->vals[index]); in uniphier_clk_mux_set_parent() 44 if ((mux->masks[i] & val) == mux->vals[i]) in uniphier_clk_mux_get_parent() 78 mux->vals = data->vals; in uniphier_clk_register_mux()
|
| /linux/drivers/iio/light/ |
| H A D | cm32181.c | 142 u64 vals[CPM0_HEADER_SIZE + CM32181_CONF_REG_NUM]; in cm32181_acpi_parse_cpm_tables() local 146 count = cm32181_acpi_get_cpm(dev, "CPM0", vals, ARRAY_SIZE(vals)); in cm32181_acpi_parse_cpm_tables() 152 cm32181->init_regs_bitmap = vals[CPM0_REGS_BITMAP]; in cm32181_acpi_parse_cpm_tables() 155 cm32181->conf_regs[i] = vals[CPM0_HEADER_SIZE + i]; in cm32181_acpi_parse_cpm_tables() 157 count = cm32181_acpi_get_cpm(dev, "CPM1", vals, ARRAY_SIZE(vals)); in cm32181_acpi_parse_cpm_tables() 161 cm32181->lux_per_bit = vals[CPM1_LUX_PER_BIT]; in cm32181_acpi_parse_cpm_tables() 164 if (vals[CPM1_CALIBSCALE] == CM32181_CALIBSCALE_DEFAULT) in cm32181_acpi_parse_cpm_tables() 167 cm32181->calibscale = vals[CPM1_CALIBSCALE]; in cm32181_acpi_parse_cpm_tables()
|
| /linux/drivers/base/regmap/ |
| H A D | regmap-kunit.c | 189 (*data)->vals = buf; in gen_regmap() 439 data->vals[param->from_reg + i] = val[i]; in read_bypassed() 505 data->vals[param->from_reg + i] = val[i]; in read_bypassed_volatile() 606 KUNIT_EXPECT_MEMEQ(test, data->vals, rval, sizeof(rval)); in reg_defaults() 638 KUNIT_EXPECT_MEMEQ(test, data->vals, rval, sizeof(rval)); in reg_defaults_read_dev() 683 KUNIT_EXPECT_EQ(test, data->vals[i], rval[i] + 1); in register_patch() 687 KUNIT_EXPECT_EQ(test, data->vals[i], rval[i]); in register_patch() 729 KUNIT_EXPECT_EQ(test, data->vals[i], rval); in stride() 843 unsigned int rval, *vals; in stress_insert() local 855 buf_sz = array_size(sizeof(*vals), config.max_register); in stress_insert() [all …]
|
| /linux/tools/testing/selftests/arm64/pauth/ |
| H A D | pac.c | 72 size_t vals[nkeys]; in n_same_single_set() local 75 vals[0] = sign->keyia & PAC_MASK; in n_same_single_set() 76 vals[1] = sign->keyib & PAC_MASK; in n_same_single_set() 77 vals[2] = sign->keyda & PAC_MASK; in n_same_single_set() 78 vals[3] = sign->keydb & PAC_MASK; in n_same_single_set() 81 vals[4] = sign->keyg & PAC_MASK; in n_same_single_set() 85 if (vals[i] == vals[j]) in n_same_single_set()
|
| /linux/drivers/pinctrl/ |
| H A D | pinctrl-single.c | 90 struct pcs_func_vals *vals; member 382 struct pcs_func_vals *vals; in pcs_set_mux() local 386 vals = &func->vals[i]; in pcs_set_mux() 388 val = pcs->read(vals->reg); in pcs_set_mux() 391 mask = vals->mask; in pcs_set_mux() 396 val |= (vals->val & mask); in pcs_set_mux() 397 pcs->write(val, vals->reg); in pcs_set_mux() 784 struct pcs_func_vals *vals, in pcs_add_function() argument 796 function->vals = vals; in pcs_add_function() 1010 struct pcs_func_vals *vals; in pcs_parse_one_pinctrl_entry() local [all …]
|
| /linux/drivers/iio/dac/ |
| H A D | ad3552r-common.c | 252 s32 *vals) in ad3552r_find_range() argument 257 if (vals[0] == model_info->ranges_table[i][0] * 1000 && in ad3552r_find_range() 258 vals[1] == model_info->ranges_table[i][1] * 1000) in ad3552r_find_range() 269 s32 vals[2]; in ad3552r_get_output_range() local 277 vals, 2); in ad3552r_get_output_range() 282 ret = ad3552r_find_range(model_info, vals); in ad3552r_get_output_range()
|
| /linux/drivers/phy/hisilicon/ |
| H A D | phy-histb-combphy.c | 199 u32 vals[3]; in histb_combphy_probe() local 226 vals, ARRAY_SIZE(vals)); in histb_combphy_probe() 233 mode->reg = vals[0]; in histb_combphy_probe() 234 mode->shift = vals[1]; in histb_combphy_probe() 235 mode->mask = vals[2]; in histb_combphy_probe()
|
| /linux/tools/perf/arch/x86/tests/ |
| H A D | insn-x86.c | 42 } vals[] = { in get_op() local 63 for (val = vals; val->name; val++) { in get_op() 78 } vals[] = { in get_branch() local 90 for (val = vals; val->name; val++) { in get_branch()
|