Searched refs:split (Results 26 – 50 of 224) sorted by relevance
123456789
/Zephyr-latest/boards/st/stm32h747i_disco/ |
D | stm32h747i_disco_stm32h747xx_m4.dts | 16 /* HW resources are split between CM7 and CM4 */
|
/Zephyr-latest/tests/bluetooth/classic/sdp_c/pytest/ |
D | conftest.py | 28 hci = fixture.split(sep=':', maxsplit=1)[1]
|
/Zephyr-latest/scripts/west_commands/runners/ |
D | stm32cubeprogrammer.py | 55 for opts in [shlex.split(opt) for opt in download_modifiers]: 60 for opts in [shlex.split(opt) for opt in start_modifiers]: 81 for opts in [shlex.split(opt) for opt in tool_opt]:
|
D | core.py | 136 out = subprocess.check_output(cmd).split(b'\r\n') 137 used_bytes = [x.split()[1].rsplit(b':', 1)[1] for x in out 144 used_bytes = [s.split()[3].rsplit(b':', 1)[1] for s in out] 149 out = subprocess.check_output(cmd).split(b'\n') 150 used_bytes = [x.split()[3].rsplit(b':', 1)[1] for x in out
|
/Zephyr-latest/scripts/west_commands/ |
D | zcmake.py | 219 value = value.split(';') 311 version = lines[0].split()[2] 315 version = version.split('-', 1)[0]
|
D | patch.py | 365 apply_cmd_list = shlex.split(apply_cmd) 427 clean_cmd_list = shlex.split(clean_cmd) 428 checkout_cmd_list = shlex.split(checkout_cmd) 490 filename = "-".join(filter(None, re.split("[^a-zA-Z0-9]+", subject))) + ".patch" 509 filename = "-".join(filter(None, re.split("[^a-zA-Z0-9]+", pr.title))) + ".patch"
|
/Zephyr-latest/scripts/utils/ |
D | twister_to_list.py | 39 s = val.split()
|
/Zephyr-latest/tests/drivers/can/host/pytest/ |
D | conftest.py | 32 ctx = fixture.split(sep=':', maxsplit=1)[1]
|
/Zephyr-latest/doc/contribute/style/ |
D | devicetree.rst | 11 * You can split related groups of properties into "paragraphs" by
|
/Zephyr-latest/scripts/pylib/twister/twisterlib/ |
D | size_calc.py | 229 words = line.split() 378 column.rstrip(":") for column in re.split( 426 data_parts = value.split()
|
D | config_parser.py | 25 args = arg_list.strip().split() 31 name, val = field.split("=", 1)
|
D | coverage.py | 71 sp = line.split("<") 191 for r in self.output_formats.split(','): 339 if 'html' not in self.output_formats.split(','): 377 version_lines = result.stdout.strip().split('\n') 490 [report_options[r] for r in self.output_formats.split(',')]
|
/Zephyr-latest/dts/riscv/starfive/ |
D | jh7110-visionfive-v2.dtsi | 77 tlb-split; 102 tlb-split; 127 tlb-split;
|
/Zephyr-latest/dts/arm/nxp/ |
D | nxp_k8xfn256vxx15.dtsi | 11 /* The on-chip SRAM is split into SRAM_L and SRAM_U regions that form a
|
D | nxp_ke1xf256vlx16.dtsi | 11 /* The on-chip SRAM is split into SRAM_L and SRAM_U regions that form a
|
D | nxp_ke1xf512vlx16.dtsi | 11 /* The on-chip SRAM is split into SRAM_L and SRAM_U regions that form a
|
/Zephyr-latest/scripts/ci/ |
D | upload_test_results_es.py | 181 _grouping = name.split("/")[-1] 182 main_group = _grouping.split(".")[0] 183 sub_group = _grouping.split(".")[1]
|
/Zephyr-latest/scripts/support/ |
D | quartus-flash.py | 107 dname, fname = os.path.split(pof_file.name)
|
/Zephyr-latest/boards/nxp/s32z2xxdc2/doc/ |
D | index.rst | 8 each, with flexible split/lock configurations. 287 either in lock-step or split-lock mode. By default, Zephyr runs on the first 291 To build for split-lock mode, the :kconfig:option:`CONFIG_DCLS` must be 305 .. group-tab:: split-lock configuration 318 ``s32z2xxdc2/s32z270/rtu0`` with split-lock core configuration: 327 To execute this sample in the second core of RTU0 in split-lock mode:
|
/Zephyr-latest/scripts/kconfig/ |
D | diffconfig | 47 name, val = line[7:].split("=", 1)
|
D | menuconfig.py | 266 """[1:-1].split("\n") 271 """[1:-1].split("\n") 280 """[1:-1].split("\n") 520 for sline in style_str.split(): 523 key, data = sline.split("=", 1) 555 color_def = color_def.split(":", 1)[1] 587 for field in style_def.split(","): 1468 split_path = menu_path_str.split("\0") 1717 info_lines = info_text.split("\n") if info_text else [] 1973 lines = text.split("\n") [all …]
|
/Zephyr-latest/doc/connectivity/usb/device/api/ |
D | usb_device.rst | 23 transfer API will automatically split the data transmission into one or more
|
/Zephyr-latest/scripts/build/ |
D | uf2conv.py | 172 for line in buf.split('\n'): 214 for line in to_str(r).split('\n'): 215 words = re.split(r'\s+', line)
|
/Zephyr-latest/soc/nuvoton/npcm/common/esiost/ |
D | esiost_args.py | 107 args = parser.parse_known_args(arg_list.split())
|
/Zephyr-latest/doc/_extensions/zephyr/doxytooltip/static/ |
D | doxytooltip.js | 62 const targetId = link.getAttribute('href').split('#')[1];
|
123456789