Home
last modified time | relevance | path

Searched full:tuple (Results 1 – 25 of 43) sorted by relevance

12

/Zephyr-Core-3.6.0/doc/_extensions/zephyr/
Dgh_utils.py44 from typing import Final, Optional, Tuple
167 def git_info_filter(app: Sphinx, pagename) -> Optional[Tuple[str, str]]:
168 """Return a tuple with the date and SHA1 of the last commit made to a page.
175 Optional[Tuple[str, str]] -- Tuple with the date and SHA1 of the last commit made to the
Ddomain.py49 from typing import Any, Dict, Iterator, List, Tuple
279 def get_object_synopses(self) -> Iterator[Tuple[Tuple[str, str], str]]:
Dexternal_content.py24 a tuple with two fields: the external base directory and a file glob pattern.
/Zephyr-Core-3.6.0/scripts/ci/
Dpylintrc182 trailing-comma-tuple,
205 assert-on-tuple,
221 unbalanced-tuple-unpacking,
228 raising-format-tuple,
/Zephyr-Core-3.6.0/scripts/west_commands/zspdx/
Dutil.py15 Returns: tuple of (SHA1, SHA256, MD5) hashes for filePath, or
/Zephyr-Core-3.6.0/scripts/
Dset_assignees.py252 labels = tuple(sorted(labels))
261 if tuple([area]) not in label_to_maintainer:
262 label_to_maintainer[tuple([area])] = maintainers
267 if tuple([label_name]) not in label_to_maintainer:
271 issue_labels = tuple(sorted(issue_labels))
Dget_maintainer.py525 # e.g. to only check non-globbing filenames. The tuple() is
527 paths = tuple(root.glob(glob_pattern))
/Zephyr-Core-3.6.0/subsys/net/lib/zperf/
Dzperf_session.h36 /* Tuple for UDP */
/Zephyr-Core-3.6.0/include/zephyr/sd/
Dsd_spec.h874 #define SDIO_TPL_CODE_NULL 0x00 /*!< NULL CIS tuple code */
875 #define SDIO_TPL_CODE_MANIFID 0x20 /*!< manufacturer ID CIS tuple code */
876 #define SDIO_TPL_CODE_FUNCID 0x21 /*!< function ID CIS tuple code */
877 #define SDIO_TPL_CODE_FUNCE 0x22 /*!< function extension CIS tuple code */
878 #define SDIO_TPL_CODE_END 0xFF /*!< End CIS tuple code */
896 * @brief SDIO common CIS tuple properties
898 * CIS tuple properties. Note that additional properties exist for
902 /* Manufacturer ID string tuple */
905 /* Function identification tuple */
Dsd.h51 struct sdio_cis cis; /*!< CIS tuple data for this function */
/Zephyr-Core-3.6.0/dts/bindings/spi/
Dnxp,imx-flexspi.yaml70 The tuple fields correspond to the following register bitfields:
/Zephyr-Core-3.6.0/dts/bindings/gpio/
Dnxp,s32-gpio.yaml64 as in a tuple `<gpio-pin wkpu-interrupt-source>`.
/Zephyr-Core-3.6.0/subsys/sd/
Dsdio.c325 LOG_WRN("Unknown CIS tuple %d", tpl_code); in sdio_decode_cis()
354 /* Read CIS tuples until we have read all requested CIS tuple codes */ in sdio_read_cis()
356 /* Read tuple code */ in sdio_read_cis()
363 /* End of tuple chain */ in sdio_read_cis()
367 /* Skip NULL tuple */ in sdio_read_cis()
370 /* Read tuple link */ in sdio_read_cis()
377 /* End of tuple chain */ in sdio_read_cis()
380 /* Check to see if read tuple matches any we should look for */ in sdio_read_cis()
388 /* tuple chains may be maximum of 255 bytes long */ in sdio_read_cis()
/Zephyr-Core-3.6.0/doc/_extensions/zephyr/kconfig/
D__init__.py37 from typing import Any, Dict, Iterable, List, Optional, Tuple
67 def kconfig_load(app: Sphinx) -> Tuple[kconfiglib.Kconfig, Dict[str, str]]:
188 def get_objects(self) -> Iterable[Tuple[str, str, str, str, str, int]]:
/Zephyr-Core-3.6.0/scripts/dts/python-devicetree/src/devicetree/
Ddtlib.py24 NamedTuple, NoReturn, Optional, Set, Tuple, TYPE_CHECKING, Union
311 self._label_offset_lst: List[Tuple[str, int]] = []
630 # while the value is built. We use a list instead of a tuple to be able
711 (e.g., 'x = label_1: < 1 label2: 2 >;') to a (prop, offset) tuple, where
745 An iterable (e.g. list or tuple) containing paths to search for
759 self.label2prop_offset: Dict[str, Tuple[Property, int]] = {}
761 self.memreserves: List[Tuple[Set[str], int, int]] = []
1203 # tuple.
1800 # The tuple() avoids a 'dictionary changed size during iteration'
1802 for prop in tuple(node.props.values()):
[all …]
Dedtlib.py74 Optional, Set, TYPE_CHECKING, Tuple, Union
1588 # Number of cells for one translation 3-tuple in 'ranges'
1954 self._compat2binding: Dict[Tuple[str, Optional[str]], Binding] = {}
2715 # Gives the size of each component in a translation 3-tuple in 'ranges'
2720 # Number of cells for one translation 3-tuple in 'ranges'
2792 def _interrupts(node: dtlib_Node) -> List[Tuple[dtlib_Node, bytes]]:
2793 # Returns a list of (<controller>, <data>) tuples, with one tuple per
2802 ret: List[Tuple[dtlib_Node, bytes]] = []
2829 ) -> Tuple[dtlib_Node, bytes]:
2832 # (<controller>, <data>) tuple with the final destination after mapping.
[all …]
/Zephyr-Core-3.6.0/scripts/logging/dictionary/dictionary_parser/
Dlog_parser_v1.py218 the binary arglist and return a tuple usable with
305 return tuple(args)
/Zephyr-Core-3.6.0/scripts/build/
Dprocess_gperf.py77 return "(char *)0x%02x%02x%02x%02x%02x%02x%02x%02x" % tuple(addr_vals)
Dgen_relocate_app.py54 from typing import Tuple
298 def section_kinds_from_memory_region(memory_region: str) -> 'Tuple[set[SectionKind], str]':
505 # Returns a 4-tuple with them: (mem_region, program_header, flags, files)
/Zephyr-Core-3.6.0/scripts/west_commands/runners/
Djlink.py159 # Get the J-Link version as a (major, minor, rev) tuple of integers.
199 # Converts the numeric revision tuple to something human-readable.
/Zephyr-Core-3.6.0/scripts/release/
Dbug_bash.py103 top_ten.append(tuple([score, user]))
/Zephyr-Core-3.6.0/scripts/kconfig/
Dmenuconfig.py359 # Converts an 888 RGB color to a 3-tuple (nice in that it's hashable)
371 return tuple(0 if x < 48 else int(round(max(1, (x - 55)/40))) for x in rgb)
377 return tuple(0 if x == 0 else 40*x + 55 for x in r6g6b6)
401 return 3*(10*index + 8,) # Returns a 3-tuple
502 d = dist(rgb, tuple(int(round(255*c/1000))
552 # a (fg_color, bg_color, attributes) tuple.
633 # (<foreground color>, <background color>) tuple.
2677 if isinstance(val, tuple):
2717 if isinstance(term, tuple):
2889 # An (s, i, hscroll) tuple for the new state
[all …]
/Zephyr-Core-3.6.0/scripts/pylib/pytest-twister-harness/src/twister_harness/device/
Dhardware_adapter.py64 def _prepare_runner_args(self) -> tuple[list[str], list[str]]:
/Zephyr-Core-3.6.0/include/zephyr/sys/
Dutil_internal.h32 * two-argument tuple to the preprocessor only in the case where the
/Zephyr-Core-3.6.0/doc/connectivity/networking/
Dnet_config_guide.rst79 5-tuple that is used when listening or sending network traffic. Each BSD socket in the

12