/kernel/linux/linux-5.10/tools/perf/util/ |
D | values.c | 9 #include "values.h" 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() [all …]
|
D | counts.c | 14 struct xyarray *values; in perf_counts__new() local 16 values = xyarray__new(ncpus, nthreads, sizeof(struct perf_counts_values)); in perf_counts__new() 17 if (!values) { in perf_counts__new() 22 counts->values = values; in perf_counts__new() 24 values = xyarray__new(ncpus, nthreads, sizeof(bool)); in perf_counts__new() 25 if (!values) { in perf_counts__new() 26 xyarray__delete(counts->values); in perf_counts__new() 31 counts->loaded = values; in perf_counts__new() 41 xyarray__delete(counts->values); in perf_counts__delete() 49 xyarray__reset(counts->values); in perf_counts__reset()
|
/kernel/linux/linux-5.10/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 …]
|
D | linear_ranges.c | 3 * helpers to map values in a linear range to range index 18 * linear_range_values_in_range - return the amount of values in a range 19 * @r: pointer to linear range where values are counted 21 * Compute the amount of values in range pointed by @r. Note, values can 23 * 3 values even though they are all equal. 25 * Return: the amount of values in range pointed by @r 36 * linear_range_values_in_range_array - return the amount of values in ranges 37 * @r: pointer to array of linear ranges where values are counted 40 * Compute the amount of values in ranges pointed by @r. Note, values can 42 * 3 values even though they are all equal. [all …]
|
/kernel/liteos_m/tools/ |
D | mem_analysis.py | 62 for base_address, values in static_map.items(): 64 c.value = values.get('offsets') 66 c.value = values.get('section') 68 c.value = values.get('sizeH') 70 c.value = values.get('sizeD') 72 c.value = values.get('symbol') 74 c.value = values.get('lib') 76 c.value = values.get('obj') 84 for base_address, values in static_map.items(): 85 target_list.append('{:<10s}'.format(values.get('offsets'))) [all …]
|
/kernel/linux/linux-5.10/drivers/gpu/drm/bridge/synopsys/ |
D | dw-hdmi.h | 534 /* PRODUCT_ID0 field values */ 537 /* PRODUCT_ID1 field values */ 542 /* CONFIG0_ID field values */ 546 /* CONFIG1_ID field values */ 549 /* CONFIG3_ID field values */ 553 /* IH_FC_INT2 field values */ 558 /* IH_FC_STAT2 field values */ 563 /* IH_PHY_STAT0 field values */ 571 /* IH_I2CM_STAT0 and IH_MUTE_I2CM_STAT0 field values */ 575 /* IH_MUTE_I2CMPHY_STAT0 field values */ [all …]
|
/kernel/linux/linux-5.10/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 …]
|
D | sysfs-tty | 29 These sysfs values expose the TIOCGSERIAL interface via 38 These sysfs values expose the TIOCGSERIAL interface via 47 These sysfs values expose the TIOCGSERIAL interface via 56 These sysfs values expose the TIOCGSERIAL interface via 65 These sysfs values expose the TIOCGSERIAL interface via 74 These sysfs values expose the TIOCGSERIAL interface via 83 These sysfs values expose the TIOCGSERIAL interface via 92 These sysfs values expose the TIOCGSERIAL interface via 101 These sysfs values expose the TIOCGSERIAL interface via 110 These sysfs values expose the TIOCGSERIAL interface via [all …]
|
D | sysfs-class-switchtec | 20 Values: arbitrary string. 28 Values: integer. 37 Values: arbitrary string. 45 Values: integer. 53 Values: integer (in hexadecimal). 61 Values: integer. 69 Values: integer. 78 Values: arbitrary string. 87 Values: arbitrary string. 96 Values: arbitrary string.
|
/kernel/linux/linux-5.10/tools/testing/selftests/bpf/map_tests/ |
D | array_map_batch_ops.c | 13 int *values) in map_batch_update() argument 23 values[i] = i + 1; in map_batch_update() 26 err = bpf_map_update_batch(map_fd, keys, values, &max_entries, &opts); in map_batch_update() 31 int *keys, int *values) in map_batch_verify() argument 37 CHECK(keys[i] + 1 != values[i], "key/value checking", in map_batch_verify() 38 "error: i %d key %d value %d\n", i, keys[i], values[i]); in map_batch_verify() 55 int map_fd, *keys, *values, *visited; in test_array_map_batch_ops() local 72 values = malloc(max_entries * sizeof(int)); in test_array_map_batch_ops() 74 CHECK(!keys || !values || !visited, "malloc()", "error:%s\n", in test_array_map_batch_ops() 78 map_batch_update(map_fd, max_entries, keys, values); in test_array_map_batch_ops() [all …]
|
D | htab_map_batch_ops.c | 14 void *values, bool is_pcpu) in map_batch_update() argument 25 v = (value *)values; in map_batch_update() 33 ((int *)values)[i] = i + 2; in map_batch_update() 36 err = bpf_map_update_batch(map_fd, keys, values, &max_entries, &opts); in map_batch_update() 41 int *keys, void *values, bool is_pcpu) in map_batch_verify() argument 48 v = (value *)values; in map_batch_verify() 61 CHECK(keys[i] + 1 != ((int *)values)[i], in map_batch_verify() 64 ((int *)values)[i]); in map_batch_verify() 85 void *values; in __test_map_lookup_and_delete_batch() local 106 values = pcpu_values; in __test_map_lookup_and_delete_batch() [all …]
|
/kernel/linux/linux-5.10/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 …]
|
/kernel/linux/linux-5.10/drivers/media/usb/cx231xx/ |
D | cx231xx-dif.h | 22 /* BEGIN - DIF BPF register values from 30_quant.dat*/ 42 /* END - DIF BPF register values from 30_quant.dat*/ 46 /* BEGIN - DIF BPF register values from 31_quant.dat*/ 66 /* END - DIF BPF register values from 31_quant.dat*/ 70 /* BEGIN - DIF BPF register values from 32_quant.dat*/ 90 /* END - DIF BPF register values from 32_quant.dat*/ 94 /* BEGIN - DIF BPF register values from 33_quant.dat*/ 114 /* END - DIF BPF register values from 33_quant.dat*/ 118 /* BEGIN - DIF BPF register values from 34_quant.dat*/ 138 /* END - DIF BPF register values from 34_quant.dat*/ [all …]
|
/kernel/linux/linux-5.10/include/acpi/ |
D | acrestyp.h | 186 /* Values for Width field above */ 349 u8 producer_consumer; /* For values, see Producer/Consumer above */ 351 u8 shareable; /* For values, see Interrupt Attributes above */ 352 u8 wake_capable; /* For values, see Interrupt Attributes above */ 354 u8 triggering; /* For values, see Interrupt Attributes above */ 355 u8 polarity; /* For values, see Interrupt Attributes above */ 365 /* Values for GPIO connection_type field above */ 370 /* Values for pin_config field above */ 377 /* Values for io_restriction field above */ 389 …u8 producer_consumer; /* For values, see Producer/Consumer … [all …]
|
/kernel/linux/linux-5.10/Documentation/devicetree/bindings/powerpc/opal/ |
D | power-mgt.txt | 41 Array of unsigned 32-bit values containing the values of the 61 Array of unsigned 32-bit values containing the values of the 66 Array of unsigned 32-bit values containing the values of the 74 Array of unsigned 64-bit values containing the values for the 79 Array of unsigned 64-bit values containing the masks 90 values. 101 For all the other values of the entry in 107 Array of unsigned 64-bit values containing the pmicr values 115 Array of unsigned 64-bit values containing the mask indicating
|
/kernel/linux/linux-5.10/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 …]
|
/kernel/linux/linux-5.10/drivers/net/wireless/broadcom/b43/ |
D | lo.h | 13 /* Control values. */ 17 /* Debugging: Poison value for i and q values. */ 23 /* The set of attenuation values this set of LO 24 * control values is calibrated for. */ 27 /* The set of control values for the LO. */ 40 /* Lists of RF and BB attenuation values for this device. 49 /* List of calibrated control values (struct b43_lo_calib). */ 53 /* Last time the txctl values were measured (jiffies). */ 75 * and txctl values. 78 /* Adjust to specific values. */
|
/kernel/linux/linux-5.10/net/ax25/ |
D | ax25_dev.c | 66 ax25_dev->values[AX25_VALUES_IPDEFMODE] = AX25_DEF_IPDEFMODE; in ax25_dev_device_up() 67 ax25_dev->values[AX25_VALUES_AXDEFMODE] = AX25_DEF_AXDEFMODE; in ax25_dev_device_up() 68 ax25_dev->values[AX25_VALUES_BACKOFF] = AX25_DEF_BACKOFF; in ax25_dev_device_up() 69 ax25_dev->values[AX25_VALUES_CONMODE] = AX25_DEF_CONMODE; in ax25_dev_device_up() 70 ax25_dev->values[AX25_VALUES_WINDOW] = AX25_DEF_WINDOW; in ax25_dev_device_up() 71 ax25_dev->values[AX25_VALUES_EWINDOW] = AX25_DEF_EWINDOW; in ax25_dev_device_up() 72 ax25_dev->values[AX25_VALUES_T1] = AX25_DEF_T1; in ax25_dev_device_up() 73 ax25_dev->values[AX25_VALUES_T2] = AX25_DEF_T2; in ax25_dev_device_up() 74 ax25_dev->values[AX25_VALUES_T3] = AX25_DEF_T3; in ax25_dev_device_up() 75 ax25_dev->values[AX25_VALUES_IDLE] = AX25_DEF_IDLE; in ax25_dev_device_up() [all …]
|
/kernel/linux/linux-5.10/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 …]
|
/kernel/linux/linux-5.10/drivers/media/dvb-frontends/ |
D | cxd2820r.h | 56 * Default: none, must set. Values: 0x6c, 0x6d. 57 * @ts_mode: TS output mode. Default: none, must set. Values: FIXME? 58 * @ts_clock_inv: TS clock inverted. Default: 0. Values: 0, 1. 59 * @if_agc_polarity: Default: 0. Values: 0, 1 60 * @spec_inv: Spectrum inversion. Default: 0. Values: 0, 1. 67 * Values: 0x6c, 0x6d 73 * Values: 79 * Values: 0, 1 85 * Values: 0, 1 91 * Values: 0, 1
|
/kernel/linux/linux-5.10/include/drm/ |
D | drm_property.h | 33 * struct drm_property_enum - symbolic values for enumerations 35 * @head: list of enum values, linked to &drm_property.enum_list 51 * of the property with the set of permissible values. This means that when a 91 * Range properties report their minimum and maximum admissible unsigned values. 92 * The KMS core verifies that values set by application fit in that 97 * Range properties report their minimum and maximum admissible unsigned values. 98 * The KMS core verifies that values set by application fit in that 104 * the number of enumerated values defined by the property minus one, 107 * numerical value to get and set property instance values. Enum 112 * restrict all enumerated values to the 0..63 range. Bitmask property [all …]
|
/kernel/linux/linux-5.10/Documentation/devicetree/bindings/sound/ |
D | wlf,arizona.yaml | 27 A list of INn_MODE register values, where n is the number of input 28 signals. Valid values are 0 (Differential), 1 (Single-ended) and 30 default. If present, values must be specified less than or equal 31 to the number of input signals. If values less than the number of 45 A list of boolean values indicating whether each output is mono 48 value indicates a mono output. If present, the number of values 49 should be less than or equal to the number of outputs, if less values 64 of values should be less than or equal to the number of inputs, 92 the datasheet for values. The second cell is ignored for codecs that 101 the datasheet for values. The second cell is ignored for codecs that [all …]
|
/kernel/linux/linux-5.10/tools/perf/scripts/perl/Perf-Trace-Util/lib/Perf/Trace/ |
D | Core.pm | 69 foreach my $idx (sort {$a <=> $b} keys %{$flag_fields{$event_name}{$field_name}{"values"}}) { 71 $string .= "$flag_fields{$event_name}{$field_name}{'values'}{$idx}"; 78 $string .= "$flag_fields{$event_name}{$field_name}{'values'}{$idx}"; 99 $flag_fields{$event_name}{$field_name}{"values"}{$value} = $field_str; 109 foreach my $idx (sort {$a <=> $b} keys %{$flag_fields{$event}{$field}{"values"}}) { 110 print " value $idx: $flag_fields{$event}{$field}{'values'}{$idx}\n"; 121 foreach my $idx (sort {$a <=> $b} keys %{$symbolic_fields{$event_name}{$field_name}{"values"}}) { 123 return "$symbolic_fields{$event_name}{$field_name}{'values'}{$idx}"; 127 return "$symbolic_fields{$event_name}{$field_name}{'values'}{$idx}"; 146 $symbolic_fields{$event_name}{$field_name}{"values"}{$value} = $field_str; [all …]
|
/kernel/linux/linux-5.10/Documentation/misc-devices/ |
D | apds990x.rst | 23 ALS produces raw measurement values for two channels: Clear channel 29 only lux values. Lux value is calculated using information from the both 38 Platform data can provide tuned values to the conversion formulas if 39 values are known. Otherwise plain sensor default values are used. 42 It produces directly usable values. 118 values: 0 or prox0_sensor_range value. 0 means no proximity, 120 In "periodic" mode the driver reports all values above 125 RO - accepted values to prox0_reporting_mode (trigger, periodic)
|