/linux-6.1.9/tools/perf/util/ |
D | values.c | 12 int perf_read_values_init(struct perf_read_values *values) in perf_read_values_init() argument 14 values->threads_max = 16; in perf_read_values_init() 15 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() 22 values->threads = 0; in perf_read_values_init() 24 values->counters_max = 16; in perf_read_values_init() 25 values->counterrawid = malloc(values->counters_max in perf_read_values_init() 26 * sizeof(*values->counterrawid)); in perf_read_values_init() [all …]
|
D | counts.c | 15 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()
|
D | values.h | 18 int perf_read_values_init(struct perf_read_values *values); 19 void perf_read_values_destroy(struct perf_read_values *values); 21 int perf_read_values_add_value(struct perf_read_values *values, 25 void perf_read_values_display(FILE *fp, struct perf_read_values *values,
|
/linux-6.1.9/drivers/iio/test/ |
D | iio-test-format.c | 47 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() 58 ret = iio_format_value(buf, IIO_VAL_INT_PLUS_MICRO, ARRAY_SIZE(values), values); in iio_test_iio_format_value_fixedpoint() 61 ret = iio_format_value(buf, IIO_VAL_INT_PLUS_MICRO_DB, ARRAY_SIZE(values), values); in iio_test_iio_format_value_fixedpoint() 64 ret = iio_format_value(buf, IIO_VAL_INT_PLUS_NANO, ARRAY_SIZE(values), values); 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() 71 ret = iio_format_value(buf, IIO_VAL_INT_PLUS_MICRO, ARRAY_SIZE(values), values); in iio_test_iio_format_value_fixedpoint() 74 ret = iio_format_value(buf, IIO_VAL_INT_PLUS_MICRO_DB, ARRAY_SIZE(values), values); in iio_test_iio_format_value_fixedpoint() [all …]
|
/linux-6.1.9/drivers/pcmcia/ |
D | max1600.c | 70 DECLARE_BITMAP(values, MAX1600_GPIO_MAX) = { 0, }; in max1600_configure() 75 __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() 79 __assign_bit(MAX1600_GPIO_1VPP, values, 1); in max1600_configure() 81 __assign_bit(MAX1600_GPIO_0VPP, values, 1); in max1600_configure() 82 __assign_bit(MAX1600_GPIO_1VPP, 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() [all …]
|
D | sa1111_jornada720.c | 64 DECLARE_BITMAP(values, J720_GPIO_MAX) = { 0, }; in jornada720_pcmcia_configure_socket() 75 __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() [all …]
|
/linux-6.1.9/tools/testing/selftests/bpf/map_tests/ |
D | htab_map_batch_ops.c | 15 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() 37 err = bpf_map_update_batch(map_fd, keys, values, &max_entries, &opts); in map_batch_update() 42 int *keys, void *values, bool is_pcpu) in map_batch_verify() argument 49 v = (value *)values; in map_batch_verify() 62 CHECK(keys[i] + 1 != ((int *)values)[i], 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() [all …]
|
D | array_map_batch_ops.c | 16 __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() 36 err = bpf_map_update_batch(map_fd, keys, values, &max_entries, &opts); 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() 58 CHECK(keys[i] + 1 != values[i], "key/value checking", 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() [all …]
|
D | lpm_trie_map_batch_ops.c | 23 struct test_lpm_key *keys, int *values) in map_batch_update() argument 37 values[i] = i + 1; in map_batch_update() 40 err = bpf_map_update_batch(map_fd, keys, values, &max_entries, &opts); 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() 57 "error: i %d key %s value %d\n", i, buff, values[i]); 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() 89 CHECK(!keys || !values || !visited, "malloc()", "error:%s\n", in test_lpm_trie_map_batch_ops() 94 map_batch_update(map_fd, max_entries, keys, values); in test_lpm_trie_map_batch_ops() [all …]
|
/linux-6.1.9/lib/ |
D | test_min_heap.c | 36 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() 64 int values[] = { 3, 1, 2, 4, 0x8000000, 0x7FFFFFF, 0, in test_heapify_all() local 67 .data = values, in test_heapify_all() 68 .nr = ARRAY_SIZE(values), in test_heapify_all() [all …]
|
/linux-6.1.9/drivers/video/fbdev/matrox/ |
D | matroxfb_misc.c | 544 minfo->values.pll.system = get_unaligned_le16(bd->pins + 28) ? in parse_pins1() 548 minfo->values.reg.mctlwtst = 0x00030101; in parse_pins1() 556 minfo->values.pll.system = 50000; in default_pins1() 558 minfo->values.reg.mctlwtst = 0x00030101; in default_pins1() 566 minfo->values.reg.mctlwtst = ((bd->pins[51] & 0x01) ? 0x00000001 : 0) | in parse_pins2() 570 minfo->values.pll.system = (bd->pins[43] == 0xFF) ? 50000 : ((bd->pins[43] + 100) * 1000); in parse_pins2() 580 minfo->values.reg.mctlwtst = 0x00030101; in default_pins2() 581 minfo->values.pll.system = 50000; in default_pins2() 590 minfo->values.reg.mctlwtst = get_unaligned_le32(bd->pins + 48) == 0xFFFFFFFF ? in parse_pins3() 593 minfo->values.reg.memrdbk = ((bd->pins[57] << 21) & 0x1E000000) | in parse_pins3() [all …]
|
/linux-6.1.9/net/ax25/ |
D | ax25_dev.c | 68 ax25_dev->values[AX25_VALUES_IPDEFMODE] = AX25_DEF_IPDEFMODE; in ax25_dev_device_up() 69 ax25_dev->values[AX25_VALUES_AXDEFMODE] = AX25_DEF_AXDEFMODE; in ax25_dev_device_up() 70 ax25_dev->values[AX25_VALUES_BACKOFF] = AX25_DEF_BACKOFF; in ax25_dev_device_up() 71 ax25_dev->values[AX25_VALUES_CONMODE] = AX25_DEF_CONMODE; in ax25_dev_device_up() 72 ax25_dev->values[AX25_VALUES_WINDOW] = AX25_DEF_WINDOW; in ax25_dev_device_up() 73 ax25_dev->values[AX25_VALUES_EWINDOW] = AX25_DEF_EWINDOW; in ax25_dev_device_up() 74 ax25_dev->values[AX25_VALUES_T1] = AX25_DEF_T1; in ax25_dev_device_up() 75 ax25_dev->values[AX25_VALUES_T2] = AX25_DEF_T2; in ax25_dev_device_up() 76 ax25_dev->values[AX25_VALUES_T3] = AX25_DEF_T3; in ax25_dev_device_up() 77 ax25_dev->values[AX25_VALUES_IDLE] = AX25_DEF_IDLE; in ax25_dev_device_up() [all …]
|
/linux-6.1.9/tools/gpio/ |
D | gpio-hammer.c | 28 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()
|
D | gpio-utils.c | 111 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()
|
D | gpio-event-mon.c | 34 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-6.1.9/drivers/soc/rockchip/ |
D | grf.c | 24 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, 182 const struct rockchip_grf_value *val = &grf_info->values[i]; in rockchip_grf_init()
|
/linux-6.1.9/drivers/i2c/muxes/ |
D | i2c-mux-gpio.c | 28 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() 62 unsigned *values; in i2c_mux_gpio_probe_fw() local 94 values = devm_kcalloc(dev, in i2c_mux_gpio_probe_fw() 95 mux->data.n_values, sizeof(*mux->data.values), in i2c_mux_gpio_probe_fw() 97 if (!values) { in i2c_mux_gpio_probe_fw() 104 fwnode_property_read_u32(child, "reg", values + i); in i2c_mux_gpio_probe_fw() 107 rc = acpi_get_local_address(ACPI_HANDLE_FWNODE(child), values + i); in i2c_mux_gpio_probe_fw() 114 mux->data.values = values; in i2c_mux_gpio_probe_fw() [all …]
|
/linux-6.1.9/drivers/auxdisplay/ |
D | hd44780.c | 66 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() 91 gpiod_set_array_value_cansleep(n, &hd->pins[PIN_DATA4], NULL, values); in hd44780_write_gpio4() 96 values[0] &= ~0x0fUL; in hd44780_write_gpio4() 97 values[0] |= val & 0x0f; in hd44780_write_gpio4() [all …]
|
/linux-6.1.9/tools/testing/selftests/bpf/progs/ |
D | test_btf_map_in_map.c | 27 __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-6.1.9/Documentation/ABI/testing/ |
D | sysfs-class-power | 10 Valid values: Represented as string 19 Valid values: Represented as string 28 Valid values: Represented as string 37 Valid values: "Battery", "UPS", "Mains", "USB", "Wireless" 60 Valid values: Represented in microamps. Negative values are 61 used for discharging batteries, positive values for charging 77 Valid values: Represented in microamps 100 Valid values: Represented in microamps. Negative values are 101 used for discharging batteries, positive values for charging 120 Valid values: Represented in 1/10 Degrees Celsius [all …]
|
/linux-6.1.9/samples/bpf/ |
D | tracex3_user.c | 20 __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-6.1.9/drivers/mmc/core/ |
D | pwrseq_simple.c | 42 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-6.1.9/drivers/hwtracing/coresight/ |
D | coresight-cti-platform.c | 245 u32 *values; in cti_plat_read_trig_group() local 250 values = kcalloc(tgrp->nr_sigs, sizeof(u32), GFP_KERNEL); in cti_plat_read_trig_group() 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() [all …]
|
/linux-6.1.9/tools/kvm/kvm_stat/ |
D | kvm_stat | 944 self.values = {} 963 self.values = {} 968 self.values = {} 990 self.values = {} 1017 oldval = self.values.get(key, EventStat(0, 0)).value 1020 self.values[key] = EventStat(newval, newdelta) 1021 return self.values 1038 if key in self.values.keys(): 1039 del self.values[key] 1041 oldvals = self.values.copy() [all …]
|
/linux-6.1.9/Documentation/userspace-api/media/dvb/ |
D | fe_property_parameters.rst | 116 Possible values: ``1712000``, ``5000000``, ``6000000``, ``7000000``, 120 Terrestrial Standard Possible values for bandwidth 159 The acceptable values are defined by :c:type:`fe_spectral_inversion`. 187 The acceptable values are defined by :c:type:`fe_code_rate`. 202 The acceptable values are defined by :c:type:`fe_sec_voltage`. 222 The acceptable values are defined by :c:type:`fe_pilot`. 234 The acceptable values are defined by :c:type:`fe_rolloff`. 268 The acceptable values are defined by :c:type:`fe_delivery_system`. 281 If '1' ``DTV_ISDBT_LAYERA_*`` values are assigned to the center segment 288 Possible values: 0, 1, -1 (AUTO) [all …]
|