Home
last modified time | relevance | path

Searched full:lines (Results 1 – 25 of 2171) sorted by relevance

12345678910>>...87

/linux-6.12.1/Documentation/fb/
Dviafb.modes16 # 12 chars 2 lines
18 # 2 chars 10 lines
20 # 6 chars 33 lines
22 # 80 chars 480 lines
24 # 20 chars 45 lines
41 # 8 chars 3 lines
43 # 2 chars 1 lines
45 # 15 chars 16 lines
47 # 80 chars 480 lines
49 # 25 chars 20 lines
[all …]
/linux-6.12.1/tools/net/ynl/
Dynl-gen-rst.py51 # This is useful for some fields that are spread across multiple lines
118 lines = []
120 lines.append(rst_paragraph(".. SPDX-License-Identifier: GPL-2.0"))
121 lines.append(rst_paragraph(".. NOTE: This document was auto-generated.\n\n"))
123 return "\n".join(lines)
128 lines = []
130 lines.append(".. toctree::")
131 lines.append(f" :maxdepth: {maxdepth}\n\n")
133 return "\n".join(lines)
147 lines = []
[all …]
/linux-6.12.1/tools/testing/kunit/
Dkunit_parser.py34 log : List[str] - log of KTAP lines that correspond to the test
148 A class to represent the lines of kernel output.
157 def __init__(self, lines: Iterator[Tuple[int, str]]):
159 self._lines = lines
192 """Returns True if stream has more lines."""
198 """Empties all lines stored in LineStream object into
218 """Extracts KTAP lines from the kernel output."""
227 # start extracting KTAP lines and set prefix
234 # start extracting KTAP lines and set prefix
240 # stop extracting KTAP lines
[all …]
/linux-6.12.1/tools/gpio/
Dgpio-utils.c27 * ioctl, including request and release for lines of gpio, read/write
29 * lines of gpio, user should use this type of api.
32 * following api will request gpio lines, do the operation and then
33 * release these lines.
37 * gpiotools_request_line() - request gpio lines in a gpiochip
40 * @lines: An array desired lines, specified by offset
42 * @num_lines: The number of lines to request.
49 * Request gpio lines through the ioctl provided by chardev. User
52 * gpiotools_release_line() to release these lines after that.
57 int gpiotools_request_line(const char *device_name, unsigned int *lines, in gpiotools_request_line() argument
[all …]
Dgpio-hammer.c3 * gpio-hammer - example swiss army knife to shake GPIO lines on a system
25 int hammer_device(const char *device_name, unsigned int *lines, int num_lines, in hammer_device() argument
39 ret = gpiotools_request_line(device_name, lines, num_lines, in hammer_device()
55 fprintf(stdout, "Hammer lines ["); in hammer_device()
57 fprintf(stdout, "%u", lines[i]); in hammer_device()
72 /* Invert all lines so we blink */ in hammer_device()
92 fprintf(stdout, "%u: %d", lines[i], in hammer_device()
116 "Hammer GPIO lines, 0->1->0->1...\n" in print_usage()
130 unsigned int lines[GPIOHANDLES_MAX]; in main() local
152 lines[i] = strtoul(optarg, NULL, 10); in main()
[all …]
Dgpio-event-mon.c29 unsigned int *lines, in monitor_device() argument
51 ret = gpiotools_request_line(device_name, lines, num_lines, config, in monitor_device()
72 fprintf(stdout, "Monitoring line %d on %s\n", lines[0], device_name); in monitor_device()
76 fprintf(stdout, "Monitoring lines %d", lines[0]); in monitor_device()
78 fprintf(stdout, ", %d", lines[i]); in monitor_device()
79 fprintf(stdout, " and %d on %s\n", lines[i], device_name); in monitor_device()
145 "Listen to events on GPIO lines, 0->1 1->0\n" in print_usage()
170 unsigned int lines[GPIO_V2_LINES_MAX]; in main() local
192 lines[num_lines] = strtoul(optarg, NULL, 10); in main()
240 return monitor_device(device_name, lines, num_lines, &config, loops); in main()
/linux-6.12.1/Documentation/dev-tools/
Dktap.rst18 lines -- and a final result. The test structure and results are
22 KTAP output is built from four different types of lines:
23 - Version lines
24 - Plan lines
25 - Test case result lines
26 - Diagnostic lines
34 Version lines
53 Plan lines
58 Plan lines must follow the format of "1..N" where N is the number of tests or subtests.
59 Plan lines follow version lines to indicate the number of nested tests.
[all …]
/linux-6.12.1/include/uapi/linux/
Dgpio.h30 * @lines: number of GPIO lines on this chip
35 __u32 lines; member
39 * Maximum number of requested lines.
89 * struct gpio_v2_line_values - Values of GPIO lines
90 * @bits: a bitmap containing the value of the lines, set to 1 for active
92 * @mask: a bitmap identifying the lines to get or set, with each bit
124 * containing the values to which the lines will be set, with each bit
142 * associated with one or more of the requested lines.
144 * @mask: a bitmap identifying the lines to which the attribute applies,
154 * struct gpio_v2_line_config - Configuration for GPIO lines
[all …]
/linux-6.12.1/Documentation/userspace-api/gpio/
Dchardev.rst21 Similarly, for multi-function lines there may be other subsystems, such as
39 Each chip supports a number of GPIO lines,
40 :c:type:`chip.lines<gpiochip_info>`. Lines on the chip are identified by an
41 ``offset`` in the range from 0 to ``chip.lines - 1``, i.e. `[0,chip.lines)`.
43 Lines are requested from the chip using gpio-v2-get-line-ioctl.rst
44 and the resulting line request is used to access the GPIO chip's lines or
45 monitor the lines for edge events.
71 access to a set of requested lines. The line request is exposed to userspace
89 Reconfigure Lines <gpio-v2-line-set-config-ioctl>
Dgpio-handle-set-config-ioctl.rst16 GPIOHANDLE_SET_CONFIG_IOCTL - Update the configuration of previously requested lines.
34 requested lines.
39 Update the configuration of previously requested lines, without releasing the
42 The configuration applies to all requested lines.
46 lines also apply when updating the line configuration, with the additional
52 bi-directional lines between input and output, but it may be used more
53 generally to move lines seamlessly from one configuration state to another.
55 To only change the value of output lines, use
Dgpio-v2-line-set-config-ioctl.rst12 GPIO_V2_LINE_SET_CONFIG_IOCTL - Update the configuration of previously requested lines.
30 requested lines.
35 Update the configuration of previously requested lines, without releasing the
38 The new configuration must specify a configuration for all requested lines.
41 :ref:`gpio-v2-get-line-config-support` that apply when requesting the lines
48 bi-directional lines between input and output, but it may also be used to
49 dynamically control edge detection, or more generally move lines seamlessly
52 To only change the value of output lines, use
Dchardev_v1.rst34 Each chip supports a number of GPIO lines,
35 :c:type:`chip.lines<gpiochip_info>`. Lines on the chip are identified by an
36 ``offset`` in the range from 0 to ``chip.lines - 1``, i.e. `[0,chip.lines)`.
38 Lines are requested from the chip using either gpio-get-linehandle-ioctl.rst
39 and the resulting line handle is used to access the GPIO chip's lines, or
68 access to a set of requested lines. The line handle is exposed to userspace
85 Reconfigure Lines <gpio-handle-set-config-ioctl>
/linux-6.12.1/tools/mm/
Dslabinfo-gnuplot.sh56 local lines=2000000
64 lines=$((xmax-xmin))
69 wc_lines=$lines
72 if [ "$wc_lines" -lt "$lines" ]; then
73 lines=$wc_lines
76 if [ $((width / lines)) -gt $min_slab_name_size ]; then
118 '$i Memory usage' with lines,"
120 '$i Loss' with lines,"
144 local lines
150 let lines=3
[all …]
/linux-6.12.1/include/asm-generic/
Dxor.h14 long lines = bytes / (sizeof (long)) / 8; in xor_8regs_2() local
27 } while (--lines > 0); in xor_8regs_2()
35 long lines = bytes / (sizeof (long)) / 8; in xor_8regs_3() local
49 } while (--lines > 0); in xor_8regs_3()
58 long lines = bytes / (sizeof (long)) / 8; in xor_8regs_4() local
73 } while (--lines > 0); in xor_8regs_4()
83 long lines = bytes / (sizeof (long)) / 8; in xor_8regs_5() local
99 } while (--lines > 0); in xor_8regs_5()
106 long lines = bytes / (sizeof (long)) / 8; in xor_32regs_2() local
136 } while (--lines > 0); in xor_32regs_2()
[all …]
/linux-6.12.1/Documentation/driver-api/gpio/
Ddrivers-on-gpio.rst11 lines, giving you the LED sysfs interface
26 mouse cable and connect the wires to GPIO lines or solder a mouse connector
27 to the lines for a more permanent solution of this type.
54 (two wires, SDA and SCL lines) by hammering (bitbang) two GPIO lines. It will
59 of wires, at least SCK and optionally MISO, MOSI and chip select lines) using
84 to a set of simple GPIO lines: RDY, NCE, ALE, CLE, NWP. It interacts with the
89 bus, data and clock line, by bit banging two GPIO lines. It will appear as
100 nothing but GPIO lines, this driver provides that and also a clearly defined
105 n GPIO lines such that you can mux in 2^n different devices by activating
106 different GPIO lines. Often the GPIOs are on a SoC and the devices are
[all …]
/linux-6.12.1/tools/perf/util/
Dsrccode.c3 * Manage printing of source lines
29 char **lines; member
58 static void fill_lines(char **lines, int maxline, char *map, int maplen) in fill_lines() argument
67 lines[l++] = map; in fill_lines()
71 lines[l++] = ++p; in fill_lines()
74 lines[l] = p; in fill_lines()
83 zfree(&sf->lines); in free_srcfile()
136 h->lines = calloc(h->numlines, sizeof(char *)); in find_srcfile()
137 if (!h->lines) in find_srcfile()
139 fill_lines(h->lines, h->numlines, h->map, h->maplen); in find_srcfile()
[all …]
/linux-6.12.1/tools/perf/pmu-events/arch/arm64/hisilicon/hip08/
Duncore-l3c.json40 …"BriefDescription": "Count of the number of read lines that come from this cluster of CPU core in …
41 …"PublicDescription": "Count of the number of read lines that come from this cluster of CPU core in…
47 …"BriefDescription": "Count of the number of write lines that come from this cluster of CPU core in…
48 …"PublicDescription": "Count of the number of write lines that come from this cluster of CPU core i…
54 "BriefDescription": "Count of the number of read lines that hits in spipe of this L3C",
55 "PublicDescription": "Count of the number of read lines that hits in spipe of this L3C",
61 "BriefDescription": "Count of the number of write lines that hits in spipe of this L3C",
62 "PublicDescription": "Count of the number of write lines that hits in spipe of this L3C",
/linux-6.12.1/arch/hexagon/mm/
Dcache.c17 unsigned long lines = spanlines(start, end-1); in flush_dcache_range() local
24 for (i = 0; i < lines; i++) { in flush_dcache_range()
37 unsigned long lines = spanlines(start, end-1); in flush_icache_range() local
44 for (i = 0; i < lines; i++) { in flush_icache_range()
62 unsigned long lines = spanlines(start, end-1); in hexagon_clean_dcache_range() local
69 for (i = 0; i < lines; i++) { in hexagon_clean_dcache_range()
82 unsigned long lines = spanlines(start, end-1); in hexagon_inv_dcache_range() local
89 for (i = 0; i < lines; i++) { in hexagon_inv_dcache_range()
/linux-6.12.1/drivers/staging/greybus/
Dgpio.c38 struct gb_gpio_line *lines; member
85 ggc->lines[which].active = true; in gb_gpio_activate_operation()
106 ggc->lines[which].active = false; in gb_gpio_deactivate_operation()
133 ggc->lines[which].direction = direction ? 1 : 0; in gb_gpio_get_direction_operation()
147 ggc->lines[which].direction = 1; in gb_gpio_direction_in_operation()
162 ggc->lines[which].direction = 0; in gb_gpio_direction_out_operation()
189 ggc->lines[which].value = value ? 1 : 0; in gb_gpio_get_value_operation()
200 if (ggc->lines[which].direction == 1) { in gb_gpio_set_value_operation()
215 ggc->lines[which].value = request.value; in gb_gpio_set_value_operation()
229 ggc->lines[which].debounce_usec = debounce_usec; in gb_gpio_set_debounce_operation()
[all …]
/linux-6.12.1/arch/loongarch/lib/
Dxor_template.c20 unsigned long lines = bytes / LINE_WIDTH; variable
32 } while (--lines > 0);
40 unsigned long lines = bytes / LINE_WIDTH; variable
54 } while (--lines > 0);
63 unsigned long lines = bytes / LINE_WIDTH; variable
80 } while (--lines > 0);
90 unsigned long lines = bytes / LINE_WIDTH; variable
109 } while (--lines > 0);
/linux-6.12.1/Documentation/devicetree/bindings/input/
Dgpio-matrix-keypad.txt4 The matrix keypad supports multiple row and column lines, a key can be
6 keypad can sense a key-press and key-release by means of GPIO lines and
11 - row-gpios: List of gpios used as row lines. The gpio specifier
13 which these row lines are connected.
14 - col-gpios: List of gpios used as column lines. The gpio specifier
16 which these column lines are connected.
/linux-6.12.1/Documentation/sphinx/
Dkernel_abi.py90lines = subprocess.check_output(args, cwd=os.path.dirname(doc.current_source)).decode('utf-8')
91 nodeList = self.nestedParse(lines, self.arguments[0])
94 def nestedParse(self, lines, fname): argument
101 for l in lines.split("\n"):
103 lines = code_block + "\n\n"
110 for line in lines.split("\n"):
127 # sphinx counts lines from 0
132 kernellog.info(self.state.document.settings.env.app, "%s: parsed %i lines" % (fname, n))
/linux-6.12.1/arch/powerpc/lib/
Dxor_vmx.c58 unsigned long lines = bytes / (sizeof(unative_t)) / 4; in __xor_altivec_2() local
68 } while (--lines > 0); in __xor_altivec_2()
79 unsigned long lines = bytes / (sizeof(unative_t)) / 4; in __xor_altivec_3() local
92 } while (--lines > 0); in __xor_altivec_3()
105 unsigned long lines = bytes / (sizeof(unative_t)) / 4; in __xor_altivec_4() local
121 } while (--lines > 0); in __xor_altivec_4()
136 unsigned long lines = bytes / (sizeof(unative_t)) / 4; in __xor_altivec_5() local
155 } while (--lines > 0); in __xor_altivec_5()
/linux-6.12.1/tools/perf/pmu-events/arch/x86/ivybridge/
Dcache.json7 "PublicDescription": "Counts the number of lines brought into the L1 data cache.",
51 "BriefDescription": "Not rejected writebacks from L1D to L2 cache lines in any state.",
59 "BriefDescription": "Not rejected writebacks from L1D to L2 cache lines in E state",
63 "PublicDescription": "Not rejected writebacks from L1D to L2 cache lines in E state.",
68 "BriefDescription": "Not rejected writebacks from L1D to L2 cache lines in M state",
72 "PublicDescription": "Not rejected writebacks from L1D to L2 cache lines in M state.",
77 …"BriefDescription": "Count the number of modified Lines evicted from L1 and missed L2. (Non-reject…
86 "BriefDescription": "L2 cache lines filling L2",
90 "PublicDescription": "L2 cache lines filling L2.",
95 "BriefDescription": "L2 cache lines in E state filling L2",
[all …]
/linux-6.12.1/drivers/media/pci/tw68/
Dtw68-risc.c30 * @lines: number of lines in field
36 unsigned int lines, bool jump) in tw68_risc_field() argument
53 /* scan lines */ in tw68_risc_field()
55 for (line = 0; line < lines; line++) { in tw68_risc_field()
126 * @lines: number of scan lines
135 unsigned int lines) in tw68_risc_buffer() argument
151 instructions = fields * (1 + (((bpl + padding) * lines) / in tw68_risc_buffer()
152 PAGE_SIZE) + lines) + 4; in tw68_risc_buffer()
163 bpl, padding, lines, true); in tw68_risc_buffer()
166 bpl, padding, lines, top_offset == UNSET); in tw68_risc_buffer()

12345678910>>...87