Home
last modified time | relevance | path

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

12345678910>>...65

/linux/tools/perf/util/
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 …]
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/
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/lib/
A Dtest_min_heap.c38 int *values = heap->data; in pop_verify_heap() local
42 last = values[0]; in pop_verify_heap()
46 if (last > values[0]) { in pop_verify_heap()
48 values[0]); in pop_verify_heap()
52 if (last < values[0]) { in pop_verify_heap()
54 values[0]); in pop_verify_heap()
58 last = values[0]; in pop_verify_heap()
69 .data = values, in test_heapify_all()
101 .data = values, in test_heap_push()
133 .data = values, in test_heap_pop_push()
[all …]
/linux/drivers/pcmcia/
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 …]
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/
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 …]
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 …]
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/drivers/video/fbdev/matrox/
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/
A Dax25_dev.c71 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_IDLE] = AX25_DEF_IDLE; in ax25_dev_device_up()
79 ax25_dev->values[AX25_VALUES_N2] = AX25_DEF_N2; in ax25_dev_device_up()
80 ax25_dev->values[AX25_VALUES_PACLEN] = AX25_DEF_PACLEN; in ax25_dev_device_up()
[all …]
/linux/drivers/soc/rockchip/
A Dgrf.c39 .values = rk3036_defaults,
52 .values = rk3128_defaults,
63 .values = rk3228_defaults,
76 .values = rk3288_defaults,
87 .values = rk3328_defaults,
98 .values = rk3368_defaults,
109 .values = rk3399_defaults,
122 .values = rk3566_defaults,
134 .values = rk3576_defaults_sys_grf,
145 .values = rk3576_defaults_ioc_grf,
[all …]
/linux/Documentation/userspace-api/gpio/
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 returned are logical, indicating if the line is active or inactive.
41 values (high/low) and logical values (active/inactive).
46 The values of both input and output lines may be read.
55 one line requested in that case, only the one value is returned in ``values``.
60 On success 0 and ``values`` populated with the values read.
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 The values set are logical, indicating if the line is to be active or inactive.
41 values (active/inactive) and physical values (high/low).
46 Only the values of output lines may be set.
A Dgpio-v2-line-get-values-ioctl.rst12 GPIO_V2_LINE_GET_VALUES_IOCTL - Get the values of requested lines.
19 ``int ioctl(int req_fd, GPIO_V2_LINE_GET_VALUES_IOCTL, struct gpio_v2_line_values *values)``
28 ``values``
35 Get the values of requested lines.
37 The values returned are logical, indicating if the line is active or inactive.
39 values (high/low) and logical values (active/inactive).
44 The values of both input and output lines may be read.
54 On success 0 and the corresponding :c:type:`values.bits<gpio_v2_line_values>`
A Dgpio-v2-line-set-values-ioctl.rst12 GPIO_V2_LINE_SET_VALUES_IOCTL - Set the values of requested output lines.
19 ``int ioctl(int req_fd, GPIO_V2_LINE_SET_VALUES_IOCTL, struct gpio_v2_line_values *values)``
28 ``values``
36 Set the values of requested output lines.
38 The values set are logical, indicating if the line is to be active or inactive.
40 values (active/inactive) and physical values (high/low).
45 Only the values of output lines may be set.
/linux/tools/gpio/
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()
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()
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/i2c/muxes/
A Di2c-mux-gpio.c28 DECLARE_BITMAP(values, BITS_PER_TYPE(val)); in i2c_mux_gpio_set()
30 values[0] = val; in i2c_mux_gpio_set()
32 gpiod_set_array_value_cansleep(mux->ngpios, mux->gpios, NULL, values); in i2c_mux_gpio_set()
65 unsigned int *values; in i2c_mux_gpio_probe_fw() local
97 values = devm_kcalloc(dev, in i2c_mux_gpio_probe_fw()
98 mux->data.n_values, sizeof(*mux->data.values), in i2c_mux_gpio_probe_fw()
100 if (!values) { in i2c_mux_gpio_probe_fw()
107 fwnode_property_read_u32(child, "reg", values + i); in i2c_mux_gpio_probe_fw()
118 mux->data.values = values; in i2c_mux_gpio_probe_fw()
181 initial_state = mux->data.values[0]; in i2c_mux_gpio_probe()
[all …]
/linux/drivers/auxdisplay/
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/
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/
A Dsysfs-class-power60 Valid values: Represented in microamps. Negative values are
100 Valid values: Represented in microamps. Negative values are
327 Valid values:
410 Valid values:
434 Valid values:
461 Valid values:
478 Valid values:
490 Valid values:
505 Valid values:
531 Valid values:
[all …]
/linux/samples/bpf/
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/hwtracing/coresight/
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 …]

Completed in 44 milliseconds

12345678910>>...65