Home
last modified time | relevance | path

Searched refs:nodes (Results 1 – 25 of 198) sorted by relevance

12345678

/u-boot/doc/sphinx/
A DrstFlatTable.py47 from docutils import nodes
104 class rowSpan(nodes.General, nodes.Element): pass # pylint: disable=C0103,C0321
105 class colSpan(nodes.General, nodes.Element): pass # pylint: disable=C0103,C0321
166 table = nodes.table()
167 tgroup = nodes.tgroup(cols=len(colwidths))
186 thead = nodes.thead()
191 tbody = nodes.tbody()
200 row = nodes.row()
211 entry = nodes.entry(**attributes)
333 if (isinstance(child , nodes.comment)
[all …]
A Dautomarkup.py7 from docutils import nodes
110 repl.append(nodes.Text(t[done:m.start()]))
120 repl.append(nodes.Text(t[done:]))
136 target_text = nodes.Text(match.group(0))
148 lit_text = nodes.literal(classes=['xref', 'c', class_s])
195 target_text = nodes.Text(match.group(0))
206 lit_text = nodes.literal(classes=['xref', 'c', class_str[match.re]])
257 return nodes.Text(match.group(0))
280 for para in doctree.traverse(nodes.paragraph):
281 for node in para.traverse(nodes.Text):
[all …]
A Dkfigure.py54 from docutils import nodes
60 from sphinx.util.nodes import clean_astext
104 node = nodes.literal_block(data, data)
346 class kernel_image(nodes.image):
383 class kernel_figure(nodes.figure):
449 img_node = nodes.image(node.rawsource, **node.attributes)
458 class kernel_render(nodes.General, nodes.Inline, nodes.Element):
505 literal_node = nodes.literal_block(code, code)
511 parsed = nodes.Element()
514 caption_node = nodes.caption(
[all …]
A Dkerneldoc.py37 from docutils import nodes, statemachine
125 return [nodes.error(None, nodes.paragraph(text = "kernel-doc missing"))]
145 node = nodes.section()
153 return [nodes.error(None, nodes.paragraph(text = "kernel-doc missing"))]
A Dkernel_include.py36 from docutils import io, nodes, statemachine
97 path = nodes.reprunicode(path)
154 literal_block = nodes.literal_block(rawtext, source=path,
170 literal_block += nodes.inline(value, value,
173 literal_block += nodes.Text(value, value)
175 literal_block += nodes.Text(text, text)
/u-boot/fs/btrfs/
A Dinode.c41 fi = btrfs_item_ptr(path.nodes[0], path.slots[0], in btrfs_readlink()
43 if (btrfs_file_extent_type(path.nodes[0], fi) != in btrfs_readlink()
49 if (btrfs_file_extent_compression(path.nodes[0], fi) != in btrfs_readlink()
55 if (btrfs_file_extent_ram_bytes(path.nodes[0], fi) >= in btrfs_readlink()
62 read_extent_buffer(path.nodes[0], target, in btrfs_readlink()
64 btrfs_file_extent_ram_bytes(path.nodes[0], fi)); in btrfs_readlink()
65 ret = btrfs_file_extent_ram_bytes(path.nodes[0], fi); in btrfs_readlink()
364 struct extent_buffer *leaf = path->nodes[0]; in btrfs_read_extent_inline()
424 struct extent_buffer *leaf = path->nodes[0]; in btrfs_read_extent_reg()
626 struct extent_buffer *leaf = path->nodes[0]; in read_and_truncate_page()
[all …]
A Dsubvolume.c55 iref = btrfs_item_ptr(path.nodes[0], path.slots[0], in get_path_in_subvol()
57 name_len = btrfs_inode_ref_name_len(path.nodes[0], in get_path_in_subvol()
63 read_extent_buffer(path.nodes[0], path_ret, in get_path_in_subvol()
69 btrfs_item_key_to_cpu(path.nodes[0], &key, path.slots[0]); in get_path_in_subvol()
118 rr = btrfs_item_ptr(path.nodes[0], path.slots[0], in list_one_subvol()
121 name_len = btrfs_root_ref_name_len(path.nodes[0], rr); in list_one_subvol()
126 ino = btrfs_root_ref_dirid(path.nodes[0], rr); in list_one_subvol()
127 read_extent_buffer(path.nodes[0], path_ret, in list_one_subvol()
134 btrfs_item_key_to_cpu(path.nodes[0], &key, path.slots[0]); in list_one_subvol()
187 if (path.slots[0] >= btrfs_header_nritems(path.nodes[0])) in list_subvolums()
[all …]
A Dctree.c66 if (!p->nodes[i]) in btrfs_release_path()
352 eb = path->nodes[0]; in btrfs_find_item()
357 eb = path->nodes[0]; in btrfs_find_item()
426 p->nodes[level] = b; in btrfs_search_slot()
514 leaf = p->nodes[0]; in btrfs_search_slot_for_read()
537 leaf = p->nodes[0]; in btrfs_search_slot_for_read()
618 c = path->nodes[level]; in btrfs_prev_leaf()
638 c = path->nodes[level]; in btrfs_prev_leaf()
679 c = path->nodes[level]; in btrfs_next_sibling_tree_block()
695 c = path->nodes[level]; in btrfs_next_sibling_tree_block()
[all …]
A Ddir-item.c51 leaf = path->nodes[0]; in btrfs_match_dir_item_name()
106 leaf = path->nodes[0]; in btrfs_lookup_dir_item()
137 if (path.slots[0] >= btrfs_header_nritems(path.nodes[0])) { in btrfs_iter_dir()
149 btrfs_item_key_to_cpu(path.nodes[0], &key, path.slots[0]); in btrfs_iter_dir()
152 di = btrfs_item_ptr(path.nodes[0], path.slots[0], in btrfs_iter_dir()
154 if (verify_dir_item(root, path.nodes[0], di)) { in btrfs_iter_dir()
158 ret = callback(root, path.nodes[0], di); in btrfs_iter_dir()
/u-boot/board/nvidia/p2771-0000/
A Dp2771-0000.c63 static const char * const nodes[] = { variable
72 ft_carveout_setup(fdt, nodes, ARRAY_SIZE(nodes)); in ft_board_setup()
/u-boot/arch/arm/mach-uniphier/
A Dfdt-fixup.c51 static const struct node_info nodes[] = { in ft_board_setup() local
57 fdt_fixup_mtdparts(fdt, nodes, ARRAY_SIZE(nodes)); in ft_board_setup()
/u-boot/doc/device-tree-bindings/i2c/
A Di2c-mux.txt4 numbered uniquely in a device dependent manner. The nodes for an i2c bus
12 Required properties for child nodes:
17 Optional properties for child nodes:
19 - Child nodes conforming to i2c bus binding
/u-boot/doc/device-tree-bindings/
A Dbootph.yaml8 title: Boot-phase-specific device nodes
20 nodes are present, so as to reduce execution time.
22 This binding supports adding tags to device tree nodes to allow them to be
25 Without any tags, nodes are included only in the final phase, where all
26 memory is available. Any untagged nodes are dropped from previous phases
30 use fdtgrep to drop any nodes which are not needed for a particular build.
31 For example, the pre-sram build will drop any nodes which are not marked
40 Tags in a child node are implied to be present in all parent nodes as well.
47 add the same tag to parent nodes, rather than relying on tooling to do
/u-boot/board/Marvell/octeontx2/
A Dboard-fdt.c159 char nodes[ARRAY_SIZE(octeontx_brd_nodes)][32]; in ft_board_setup() local
178 strncpy(nodes[i], temp, sizeof(nodes[i])); in ft_board_setup()
203 nodes[i])) { in ft_board_setup()
204 printf("Can't set %s\n", nodes[i]); in ft_board_setup()
/u-boot/board/nvidia/p2371-2180/
A Dp2371-2180.c87 static const char * const nodes[] = { variable
96 ft_carveout_setup(fdt, nodes, ARRAY_SIZE(nodes)); in ft_board_setup()
/u-boot/board/nvidia/p3450-0000/
A Dp3450-0000.c85 static const char * const nodes[] = { variable
94 ft_carveout_setup(fdt, nodes, ARRAY_SIZE(nodes)); in ft_board_setup()
/u-boot/arch/arm/dts/
A Dexynos4412.dtsi7 * Samsung's Exynos4412 SoC device nodes are listed in this file. Exynos4412
11 * Note: This file does not include device nodes for all the controllers in
13 * nodes can be added to this file.
/u-boot/doc/device-tree-bindings/w1/
A Dw1-gpio.txt5 Child nodes are required in device tree. The driver will detect
6 the devices serial number and then search in the child nodes in the device tree
9 Also check doc/device-tree-bindings/w1-eeprom for possible child nodes drivers
A Dmxc-w1.txt4 Child nodes are required in device tree. The driver will detect
5 the devices serial number and then search in the child nodes in the device tree
8 Also check doc/device-tree-bindings/w1-eeprom for possible child nodes drivers
/u-boot/arch/arm/mach-tegra/
A Ddt-setup.c161 void ft_carveout_setup(void *fdt, const char * const *nodes, unsigned int count) in ft_carveout_setup() argument
168 printf("copying carveout for %s...\n", nodes[i]); in ft_carveout_setup()
170 err = ft_copy_carveout(fdt, cboot_fdt, nodes[i]); in ft_carveout_setup()
174 nodes[i], err); in ft_carveout_setup()
/u-boot/doc/device-tree-bindings/sysinfo/
A Dgdsys,sysinfo_gazerbeam.txt10 - rxaui[0-3]: phandles to the rxaui control device nodes
11 - fpga[0-1]: phandles to the board's gdsys FPGA device nodes
12 - ioep[0-1]: phandles to the board's IO endpoint device nodes
/u-boot/doc/device-tree-bindings/pinctrl/
A Dcanaan,k210-fpioa.txt14 Configuration nodes
16 Pin configuration nodes are documented in pinctrl-bindings.txt
18 Required properties for pin-configuration nodes or sub-nodes are:
37 Optional properties for "pinmux" nodes are:
43 Optional properties for "groups" nodes are:
A Dintel,apl-pinctrl.txt16 GPIO nodes may be added as children of the pinctrl nodes. See intel,apl-gpio
/u-boot/board/isee/igep00x0/
A Digep00x0.c109 static const struct node_info nodes[] = { in ft_board_setup() local
114 fdt_fixup_mtdparts(blob, nodes, ARRAY_SIZE(nodes)); in ft_board_setup()
/u-boot/doc/device-tree-bindings/sound/
A Dintel-hda.txt18 - codecs: Contains a list of codec nodes
21 * Codec nodes

Completed in 20 milliseconds

12345678