| /kernel/linux/linux-4.19/tools/perf/util/ |
| D | values.c | 8 #include "values.h" 11 int perf_read_values_init(struct perf_read_values *values) in perf_read_values_init() argument 13 values->threads_max = 16; in perf_read_values_init() 14 values->pid = malloc(values->threads_max * sizeof(*values->pid)); in perf_read_values_init() 15 values->tid = malloc(values->threads_max * sizeof(*values->tid)); in perf_read_values_init() 16 values->value = zalloc(values->threads_max * sizeof(*values->value)); in perf_read_values_init() 17 if (!values->pid || !values->tid || !values->value) { in perf_read_values_init() 21 values->threads = 0; in perf_read_values_init() 23 values->counters_max = 16; in perf_read_values_init() 24 values->counterrawid = malloc(values->counters_max in perf_read_values_init() [all …]
|
| /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') 85 for base_address, values in static_map.items(): 86 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 …]
|
| /kernel/linux/linux-4.19/drivers/gpu/drm/bridge/synopsys/ |
| D | dw-hdmi.h | 503 /* PRODUCT_ID0 field values */ 506 /* PRODUCT_ID1 field values */ 511 /* CONFIG0_ID field values */ 515 /* CONFIG1_ID field values */ 518 /* CONFIG3_ID field values */ 522 /* IH_FC_INT2 field values */ 527 /* IH_FC_STAT2 field values */ 532 /* IH_PHY_STAT0 field values */ 540 /* IH_I2CM_STAT0 and IH_MUTE_I2CM_STAT0 field values */ 544 /* IH_MUTE_I2CMPHY_STAT0 field values */ [all …]
|
| /kernel/linux/linux-4.19/arch/sh/drivers/pci/ |
| D | pci-sh5.h | 29 #define PCISH5_ICR_CR 0x100 /* PCI control register values */ 45 #define PCISH5_ICR_INT 0x114 /* Interrupt registert values */ 48 #define PCISH5_ICR_LSR0 0X104 /* Local space register values */ 49 #define PCISH5_ICR_LSR1 0X108 /* Local space register values */ 50 #define PCISH5_ICR_LAR0 0x10c /* Local address register values */ 51 #define PCISH5_ICR_LAR1 0x110 /* Local address register values */ 52 #define PCISH5_ICR_INTM 0x118 /* Interrupt mask register values */ 53 #define PCISH5_ICR_AIR 0x11c /* Interrupt error address information register values */ 54 #define PCISH5_ICR_CIR 0x120 /* Interrupt error command information register values */ 55 #define PCISH5_ICR_AINT 0x130 /* Interrupt error arbiter interrupt register values */ [all …]
|
| /kernel/linux/linux-4.19/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" 47 Valid values: 0 - 100 (percent) 61 Valid values: 0 - 100 (percent) 75 Valid values: 0 - 100 (percent) 84 Valid values: "Unknown", "Critical", "Low", "Normal", "High", 96 Valid values: Represented in microamps 105 Valid values: Represented in microamps [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 …]
|
| /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-4.19/drivers/media/usb/cx231xx/ |
| D | cx231xx-dif.h | 31 /* BEGIN - DIF BPF register values from 30_quant.dat*/ 51 /* END - DIF BPF register values from 30_quant.dat*/ 55 /* BEGIN - DIF BPF register values from 31_quant.dat*/ 75 /* END - DIF BPF register values from 31_quant.dat*/ 79 /* BEGIN - DIF BPF register values from 32_quant.dat*/ 99 /* END - DIF BPF register values from 32_quant.dat*/ 103 /* BEGIN - DIF BPF register values from 33_quant.dat*/ 123 /* END - DIF BPF register values from 33_quant.dat*/ 127 /* BEGIN - DIF BPF register values from 34_quant.dat*/ 147 /* END - DIF BPF register values from 34_quant.dat*/ [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-4.19/include/acpi/ |
| D | acrestyp.h | 186 /* Values for Width field above */ 349 u8 producer_consumer; /* For values, see Producer/Consumer above */ 351 u8 sharable; /* 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-4.19/Documentation/devicetree/bindings/sound/ |
| D | wlf,arizona.txt | 12 - wlf,inmode : A list of INn_MODE register values, where n is the number 13 of input signals. Valid values are 0 (Differential), 1 (Single-ended) and 15 If present, values must be specified less than or equal to the number of 16 input signals. If values less than the number of input signals, elements 20 - wlf,out-mono : A list of boolean values indicating whether each output is 23 indicates a mono output. If present, the number of values should be less 24 than or equal to the number of outputs, if less values are supplied the 30 present, the number of values should be less than or equal to the 42 See the datasheet for values. 47 See the datasheet for values. [all …]
|
| /kernel/linux/linux-4.19/net/ax25/ |
| D | ax25_dev.c | 67 ax25_dev->values[AX25_VALUES_IPDEFMODE] = AX25_DEF_IPDEFMODE; in ax25_dev_device_up() 68 ax25_dev->values[AX25_VALUES_AXDEFMODE] = AX25_DEF_AXDEFMODE; in ax25_dev_device_up() 69 ax25_dev->values[AX25_VALUES_BACKOFF] = AX25_DEF_BACKOFF; in ax25_dev_device_up() 70 ax25_dev->values[AX25_VALUES_CONMODE] = AX25_DEF_CONMODE; in ax25_dev_device_up() 71 ax25_dev->values[AX25_VALUES_WINDOW] = AX25_DEF_WINDOW; in ax25_dev_device_up() 72 ax25_dev->values[AX25_VALUES_EWINDOW] = AX25_DEF_EWINDOW; in ax25_dev_device_up() 73 ax25_dev->values[AX25_VALUES_T1] = AX25_DEF_T1; in ax25_dev_device_up() 74 ax25_dev->values[AX25_VALUES_T2] = AX25_DEF_T2; in ax25_dev_device_up() 75 ax25_dev->values[AX25_VALUES_T3] = AX25_DEF_T3; in ax25_dev_device_up() 76 ax25_dev->values[AX25_VALUES_IDLE] = AX25_DEF_IDLE; in ax25_dev_device_up() [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-4.19/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
|