Home
last modified time | relevance | path

Searched refs:values (Results 1 – 25 of 1741) sorted by relevance

12345678910>>...70

/linux/tools/perf/util/
H A Dvalues.c15 values->pid = malloc(values->threads_max * sizeof(*values->pid)); in perf_read_values_init()
16 values->tid = malloc(values->threads_max * sizeof(*values->tid)); in perf_read_values_init()
17 values->value = zalloc(values->threads_max * sizeof(*values->value)); in perf_read_values_init()
18 if (!values->pid || !values->tid || !values->value) { in perf_read_values_init()
25 values->counterrawid = malloc(values->counters_max in perf_read_values_init()
27 values->countername = malloc(values->counters_max in perf_read_values_init()
29 if (!values->counterrawid || !values->countername) { in perf_read_values_init()
51 if (!values->threads_max || !values->counters_max) in perf_read_values_destroy()
97 if (values->threads == values->threads_max) { in perf_read_values__findnew_thread()
105 values->value[i] = zalloc(values->counters_max * sizeof(**values->value)); in perf_read_values__findnew_thread()
[all …]
H A Dcounts.c15 struct xyarray *values; in perf_counts__new() local
17 values = xyarray__new(ncpus, nthreads, sizeof(struct perf_counts_values)); in perf_counts__new()
18 if (!values) { in perf_counts__new()
23 counts->values = values; in perf_counts__new()
25 values = xyarray__new(ncpus, nthreads, sizeof(bool)); in perf_counts__new()
26 if (!values) { in perf_counts__new()
27 xyarray__delete(counts->values); in perf_counts__new()
32 counts->loaded = values; in perf_counts__new()
42 xyarray__delete(counts->values); in perf_counts__delete()
50 xyarray__reset(counts->values); in perf_counts__reset()
/linux/drivers/iio/test/
H A Diio-test-format.c47 int values[2]; in iio_test_iio_format_value_fixedpoint() local
55 values[0] = 1; in iio_test_iio_format_value_fixedpoint()
56 values[1] = 10; in iio_test_iio_format_value_fixedpoint()
68 values[0] = 0; in iio_test_iio_format_value_fixedpoint()
69 values[1] = 12; in iio_test_iio_format_value_fixedpoint()
81 values[0] = -1; in iio_test_iio_format_value_fixedpoint()
94 values[0] = 0; in iio_test_iio_format_value_fixedpoint()
108 int values[2]; in iio_test_iio_format_value_fractional() local
116 values[0] = 1; in iio_test_iio_format_value_fractional()
123 values[1] = 3; in iio_test_iio_format_value_fractional()
[all …]
/linux/drivers/pcmcia/
H A Dmax1600.c75 __assign_bit(MAX1600_GPIO_0VPP, values, 0); in max1600_configure()
76 __assign_bit(MAX1600_GPIO_1VPP, values, 0); in max1600_configure()
78 __assign_bit(MAX1600_GPIO_0VPP, values, 0); in max1600_configure()
95 __assign_bit(MAX1600_GPIO_0VCC, values, 0); in max1600_configure()
96 __assign_bit(MAX1600_GPIO_1VCC, values, 0); in max1600_configure()
98 __assign_bit(MAX1600_GPIO_0VCC, values, 1); in max1600_configure()
99 __assign_bit(MAX1600_GPIO_1VCC, values, 0); in max1600_configure()
101 __assign_bit(MAX1600_GPIO_0VCC, values, 0); in max1600_configure()
102 __assign_bit(MAX1600_GPIO_1VCC, values, 1); in max1600_configure()
114 __change_bit(MAX1600_GPIO_0VCC, values); in max1600_configure()
[all …]
H A Dsa1111_jornada720.c75 __assign_bit(J720_GPIO_PWR, values, 0); in jornada720_pcmcia_configure_socket()
76 __assign_bit(J720_GPIO_3V, values, 0); in jornada720_pcmcia_configure_socket()
79 __assign_bit(J720_GPIO_PWR, values, 1); in jornada720_pcmcia_configure_socket()
80 __assign_bit(J720_GPIO_3V, values, 1); in jornada720_pcmcia_configure_socket()
83 __assign_bit(J720_GPIO_PWR, values, 1); in jornada720_pcmcia_configure_socket()
84 __assign_bit(J720_GPIO_3V, values, 0); in jornada720_pcmcia_configure_socket()
93 __assign_bit(J720_GPIO_PWR, values, 0); in jornada720_pcmcia_configure_socket()
94 __assign_bit(J720_GPIO_3V, values, 0); in jornada720_pcmcia_configure_socket()
98 __assign_bit(J720_GPIO_PWR, values, 1); in jornada720_pcmcia_configure_socket()
99 __assign_bit(J720_GPIO_3V, values, 1); in jornada720_pcmcia_configure_socket()
[all …]
/linux/tools/testing/selftests/bpf/map_tests/
H A Dhtab_map_batch_ops.c15 void *values, bool is_pcpu) in map_batch_update() argument
26 v = (value *)values; in map_batch_update()
34 ((int *)values)[i] = i + 2; in map_batch_update()
49 v = (value *)values; in map_batch_verify()
65 ((int *)values)[i]); in map_batch_verify()
86 void *values; in __test_map_lookup_and_delete_batch() local
100 values = pcpu_values; in __test_map_lookup_and_delete_batch()
110 values, &count, &opts); in __test_map_lookup_and_delete_batch()
155 values + in __test_map_lookup_and_delete_batch()
218 values + in __test_map_lookup_and_delete_batch()
[all …]
H A Darray_map_batch_ops.c16 __s64 *values, bool is_pcpu) in map_batch_update() argument
30 (values + cpu_offset)[j] = i + 1 + j; in map_batch_update()
32 values[i] = i + 1; in map_batch_update()
41 __s64 *values, bool is_pcpu) in map_batch_verify() argument
51 __s64 value = (values + cpu_offset)[j]; in map_batch_verify()
60 values[i]); in map_batch_verify()
77 void *values; in __test_map_lookup_and_update_batch() local
93 values = calloc(max_entries, value_size); in __test_map_lookup_and_update_batch()
104 memset(values, 0, max_entries * value_size); in __test_map_lookup_and_update_batch()
115 values + total * value_size, in __test_map_lookup_and_update_batch()
[all …]
H A Dlpm_trie_map_batch_ops.c23 struct test_lpm_key *keys, int *values) in map_batch_update() argument
37 values[i] = i + 1; in map_batch_update()
45 struct test_lpm_key *keys, int *values) in map_batch_verify() argument
56 CHECK(lower_byte != values[i], "key/value checking", in map_batch_verify()
70 int map_fd, *values, *visited; in test_lpm_trie_map_batch_ops() local
87 values = malloc(max_entries * sizeof(int)); in test_lpm_trie_map_batch_ops()
94 map_batch_update(map_fd, max_entries, keys, values); in test_lpm_trie_map_batch_ops()
95 map_batch_verify(visited, max_entries, keys, values); in test_lpm_trie_map_batch_ops()
97 memset(values, 0, max_entries * sizeof(*values)); in test_lpm_trie_map_batch_ops()
107 keys + total, values + total, &count, &opts); in test_lpm_trie_map_batch_ops()
[all …]
/linux/lib/
H A Dtest_min_heap.c36 int *values = heap->data; in pop_verify_heap() local
40 last = values[0]; in pop_verify_heap()
44 if (last > values[0]) { in pop_verify_heap()
46 values[0]); in pop_verify_heap()
50 if (last < values[0]) { in pop_verify_heap()
52 values[0]); in pop_verify_heap()
56 last = values[0]; in pop_verify_heap()
67 .data = values, in test_heapify_all()
68 .nr = ARRAY_SIZE(values), in test_heapify_all()
100 .data = values, in test_heap_push()
[all …]
/linux/drivers/video/fbdev/matrox/
H A Dmatroxfb_misc.c556 minfo->values.pll.system = 50000; in default_pins1()
581 minfo->values.pll.system = 50000; in default_pins2()
660 minfo->values.pll.system = in parse_pins5()
672 minfo->values.reg.maccess = minfo->values.memory.emrswen ? 0x00004000 : 0x00000000; in parse_pins5()
674 minfo->values.reg.mctlwtst_core = minfo->values.reg.mctlwtst; in parse_pins5()
680 minfo->values.reg.mctlwtst_core = (minfo->values.reg.mctlwtst & ~7) | in parse_pins5()
696 minfo->values.pll.system = in default_pins5()
701 minfo->values.reg.mctlwtst_core = in default_pins5()
706 minfo->values.memory.ddr = 1; in default_pins5()
707 minfo->values.memory.dll = 1; in default_pins5()
[all …]
/linux/net/ax25/
H A Dax25_dev.c69 ax25_dev->values[AX25_VALUES_IPDEFMODE] = AX25_DEF_IPDEFMODE; in ax25_dev_device_up()
70 ax25_dev->values[AX25_VALUES_AXDEFMODE] = AX25_DEF_AXDEFMODE; in ax25_dev_device_up()
71 ax25_dev->values[AX25_VALUES_BACKOFF] = AX25_DEF_BACKOFF; in ax25_dev_device_up()
72 ax25_dev->values[AX25_VALUES_CONMODE] = AX25_DEF_CONMODE; in ax25_dev_device_up()
73 ax25_dev->values[AX25_VALUES_WINDOW] = AX25_DEF_WINDOW; in ax25_dev_device_up()
74 ax25_dev->values[AX25_VALUES_EWINDOW] = AX25_DEF_EWINDOW; in ax25_dev_device_up()
75 ax25_dev->values[AX25_VALUES_T1] = AX25_DEF_T1; in ax25_dev_device_up()
76 ax25_dev->values[AX25_VALUES_T2] = AX25_DEF_T2; in ax25_dev_device_up()
77 ax25_dev->values[AX25_VALUES_T3] = AX25_DEF_T3; in ax25_dev_device_up()
78 ax25_dev->values[AX25_VALUES_IDL in ax25_dev_device_up()
[all...]
/linux/tools/gpio/
H A Dgpio-hammer.c28 struct gpio_v2_line_values values; in hammer_device() local
46 values.mask = 0; in hammer_device()
47 values.bits = 0; in hammer_device()
49 gpiotools_set_bit(&values.mask, i); in hammer_device()
51 ret = gpiotools_get_values(fd, &values); in hammer_device()
63 fprintf(stdout, "%d", gpiotools_test_bit(values.bits, i)); in hammer_device()
74 gpiotools_change_bit(&values.bits, i); in hammer_device()
76 ret = gpiotools_set_values(fd, &values); in hammer_device()
81 ret = gpiotools_get_values(fd, &values); in hammer_device()
93 gpiotools_test_bit(values.bits, i)); in hammer_device()
H A Dgpio-utils.c111 int gpiotools_set_values(const int fd, struct gpio_v2_line_values *values) in gpiotools_set_values() argument
115 ret = ioctl(fd, GPIO_V2_LINE_SET_VALUES_IOCTL, values); in gpiotools_set_values()
135 int gpiotools_get_values(const int fd, struct gpio_v2_line_values *values) in gpiotools_get_values() argument
139 ret = ioctl(fd, GPIO_V2_LINE_GET_VALUES_IOCTL, values); in gpiotools_get_values()
206 unsigned int num_lines, unsigned int *values) in gpiotools_gets() argument
227 values[i] = gpiotools_test_bit(lv.bits, i); in gpiotools_gets()
264 unsigned int num_lines, unsigned int *values) in gpiotools_sets() argument
275 gpiotools_assign_bit(&config.attrs[0].attr.values, in gpiotools_sets()
276 i, values[i]); in gpiotools_sets()
H A Dgpio-event-mon.c34 struct gpio_v2_line_values values; in monitor_device() local
59 values.mask = 0; in monitor_device()
60 values.bits = 0; in monitor_device()
62 gpiotools_set_bit(&values.mask, i); in monitor_device()
63 ret = gpiotools_get_values(lfd, &values); in monitor_device()
74 gpiotools_test_bit(values.bits, 0)); in monitor_device()
81 gpiotools_test_bit(values.bits, 0)); in monitor_device()
84 gpiotools_test_bit(values.bits, i)); in monitor_device()
86 gpiotools_test_bit(values.bits, i)); in monitor_device()
/linux/drivers/soc/rockchip/
H A Dgrf.c24 const struct rockchip_grf_value *values; member
39 .values = rk3036_defaults,
50 .values = rk3128_defaults,
61 .values = rk3228_defaults,
74 .values = rk3288_defaults,
85 .values = rk3328_defaults,
96 .values = rk3368_defaults,
107 .values = rk3399_defaults,
120 .values = rk3566_defaults,
131 .values = rk3588_defaults,
[all …]
/linux/drivers/i2c/muxes/
H A Di2c-mux-gpio.c27 DECLARE_BITMAP(values, BITS_PER_TYPE(val)); in i2c_mux_gpio_set()
29 values[0] = val; in i2c_mux_gpio_set()
31 gpiod_set_array_value_cansleep(mux->ngpios, mux->gpios, NULL, values); in i2c_mux_gpio_set()
61 unsigned int *values; in i2c_mux_gpio_probe_fw() local
93 values = devm_kcalloc(dev, in i2c_mux_gpio_probe_fw()
94 mux->data.n_values, sizeof(*mux->data.values), in i2c_mux_gpio_probe_fw()
96 if (!values) { in i2c_mux_gpio_probe_fw()
103 fwnode_property_read_u32(child, "reg", values + i); in i2c_mux_gpio_probe_fw()
114 mux->data.values = values; in i2c_mux_gpio_probe_fw()
175 initial_state = mux->data.values[0]; in i2c_mux_gpio_probe()
[all …]
/linux/Documentation/userspace-api/gpio/
H A Dgpio-handle-get-line-values-ioctl.rst10 gpio-v2-line-get-values-ioctl.rst.
15 GPIOHANDLE_GET_LINE_VALUES_IOCTL - Get the values of all requested lines.
22 ``int ioctl(int handle_fd, GPIOHANDLE_GET_LINE_VALUES_IOCTL, struct gpiohandle_data *values)``
31 ``values``
37 Get the values of all requested lines.
39 The values of both input and output lines may be read.
48 one line requested in that case, only the one value is returned in ``values``.
53 On success 0 and ``values`` populated with the values read.
H A Dgpio-handle-set-line-values-ioctl.rst10 gpio-v2-line-set-values-ioctl.rst.
15 GPIO_HANDLE_SET_LINE_VALUES_IOCTL - Set the values of all requested output lines.
22 ``int ioctl(int handle_fd, GPIO_HANDLE_SET_LINE_VALUES_IOCTL, struct gpiohandle_data *values)``
31 ``values``
37 Set the values of all requested output lines.
39 Only the values of output lines may be set.
/linux/drivers/auxdisplay/
H A Dhd44780.c66 DECLARE_BITMAP(values, 10); /* for DATA[0-7], RS, RW */ in hd44780_write_gpio8()
69 values[0] = val; in hd44780_write_gpio8()
70 __assign_bit(8, values, rs); in hd44780_write_gpio8()
74 gpiod_set_array_value_cansleep(n, &hd->pins[PIN_DATA0], NULL, values); in hd44780_write_gpio8()
82 DECLARE_BITMAP(values, 6); /* for DATA[4-7], RS, RW */ in hd44780_write_gpio4()
86 values[0] = val >> 4; in hd44780_write_gpio4()
87 __assign_bit(4, values, rs); in hd44780_write_gpio4()
96 values[0] &= ~0x0fUL; in hd44780_write_gpio4()
97 values[0] |= val & 0x0f; in hd44780_write_gpio4()
158 DECLARE_BITMAP(values, 6); /* for DATA[4-7], RS, RW */ in hd44780_write_cmd_raw_gpio4()
[all …]
/linux/tools/testing/selftests/bpf/progs/
H A Dtest_btf_map_in_map.c27 __array(values, struct {
41 .values = { (void *)&inner_map1, 0, (void *)&inner_map2 },
66 __array(values, struct {
74 .values = {
89 __array(values, struct inner_map);
91 .values = {
116 __array(values, struct sockarr_sz1);
118 .values = { (void *)&sockarr_sz1 },
/linux/Documentation/ABI/testing/
H A Dsysfs-class-power60 Valid values: Represented in microamps. Negative values are
100 Valid values: Represented in microamps. Negative values are
327 Valid values:
394 Valid values:
418 Valid values:
445 Valid values:
462 Valid values:
474 Valid values:
489 Valid values:
515 Valid values:
[all …]
/linux/samples/bpf/
H A Dtracex3_user.c20 __u64 values[nr_cpus]; in clear_stats() local
23 memset(values, 0, sizeof(values)); in clear_stats()
25 bpf_map_update_elem(fd, &key, values, BPF_ANY); in clear_stats()
78 long values[nr_cpus]; in print_hist() local
86 bpf_map_lookup_elem(fd, &key, values); in print_hist()
89 value += values[i]; in print_hist()
/linux/drivers/mmc/core/
H A Dpwrseq_simple.c42 unsigned long *values; in mmc_pwrseq_simple_set_gpios_value() local
45 values = bitmap_alloc(nvalues, GFP_KERNEL); in mmc_pwrseq_simple_set_gpios_value()
46 if (!values) in mmc_pwrseq_simple_set_gpios_value()
50 bitmap_fill(values, nvalues); in mmc_pwrseq_simple_set_gpios_value()
52 bitmap_zero(values, nvalues); in mmc_pwrseq_simple_set_gpios_value()
55 reset_gpios->info, values); in mmc_pwrseq_simple_set_gpios_value()
57 bitmap_free(values); in mmc_pwrseq_simple_set_gpios_value()
/linux/drivers/hwtracing/coresight/
H A Dcoresight-cti-platform.c245 u32 *values; in cti_plat_read_trig_group() local
251 if (!values) in cti_plat_read_trig_group()
255 values, tgrp->nr_sigs); in cti_plat_read_trig_group()
260 tgrp->used_mask |= BIT(values[idx]); in cti_plat_read_trig_group()
263 kfree(values); in cti_plat_read_trig_group()
272 u32 *values = NULL, i; in cti_plat_read_trig_types() local
286 values = kcalloc(items, sizeof(u32), GFP_KERNEL); in cti_plat_read_trig_types()
287 if (!values) in cti_plat_read_trig_types()
291 values, items); in cti_plat_read_trig_types()
303 values[i] < CTI_TRIG_MAX ? values[i] : GEN_IO; in cti_plat_read_trig_types()
[all …]
/linux/tools/kvm/kvm_stat/
H A Dkvm_stat944 self.values = {}
963 self.values = {}
968 self.values = {}
990 self.values = {}
1021 return self.values
1248 if values == (0, 0):
1306 cur = int(round(values.delta / sleeptime)) if values.delta else 0
1311 if values.delta:
1564 values.delta))
1619 def do_statline(opts, values): argument
[all …]

12345678910>>...70