Home
last modified time | relevance | path

Searched refs:split (Results 1 – 25 of 215) sorted by relevance

123456789

/Zephyr-latest/snippets/bt-ll-sw-split/
DREADME.rst1 .. _snippet-bt-ll-sw-split:
3 Zephyr Bluetooth LE Controller (bt-ll-sw-split)
11 west build -S bt-ll-sw-split [...]
/Zephyr-latest/scripts/build/
Dgen_syscalls.py227 def union_decl(type, split): argument
228 middle = "struct { uintptr_t lo, hi; } split" if split else "uintptr_t x"
255 split = need_split(argtype)
256 wrap += "\t\t%s parm%d" % (union_decl(argtype, split), argnum)
263 if split:
348 split = need_split(argtype)
349 vrfy_parms.append((argtype, split))
350 nmrsh += 2 if split else 1
375 for i, (argtype, split) in enumerate(vrfy_parms):
376 mrsh += "\t%s parm%d;\n" % (union_decl(argtype, split), i)
[all …]
Dgen_relocate_app.py389 memory_type = memory_type.split("|", 1)[0]
493 obj_filename = filename.split("/")[-1] + ".obj"
498 if filename.split("/")[-2] in dirpath.split("/")[-1]:
509 mem_region, rest = line.split(':', 1)
514 phdr, rest = rest.split(':', 1)
517 flag_list, file_list = (lst.split(';') for lst in rest.split(':', 1))
532 for line in input_rel_dict.split('|'):
612 mem_type = mem_type.split("|", 1)[0]
/Zephyr-latest/scripts/west_commands/zspdx/
Dcmakecache.py27 pline1 = sline.split(":", maxsplit=1)
30 pline2 = pline1[1].split("=", maxsplit=1)
Dgetincludes.py60 sline = rline.split(" ", maxsplit=1)
/Zephyr-latest/doc/develop/west/
Dalias.rst12 `shlex.split()`_ internally to split the value). This enables adding argument
14 argument separators; use proper escaping if arguments shouldn't be split.
16 .. _shlex.split(): https://docs.python.org/3/library/shlex.html#shlex.split
/Zephyr-latest/scripts/footprint/
Dpack_as_twister.py138 (in_path, data_id['board']) = os.path.split(in_path)
141 (in_path, data_id['board']) = os.path.split(in_path)
144 (in_path, data_id['feature']) = os.path.split(in_path)
145 (c_head, data_id['app']) = os.path.split(in_path)
146 (c_head, data_id['version']) = os.path.split(c_head)
187 test_name_parts = args.test_name.split(test_name_sep)
220 suite_type = plan[r_plan]['application'].split('/')
/Zephyr-latest/scripts/
Dgen_gcov_files.py34 file_name = line.split("<")[0][1:]
36 hex_dump = line.split("<")[1][:-1]
/Zephyr-latest/scripts/pylib/pytest-twister-harness/tests/resources/
Dzen_of_python.py29 """.split('\n')
/Zephyr-latest/scripts/west_commands/runners/
Dblackmagicprobe.py159 split = self.hex_file.split('.')
161 if len(split) >= 3 and split[-2] == 'signed':
/Zephyr-latest/scripts/tests/twister_blackbox/
Dtest_printouts.py295 printed_tags = [tag.strip() for tag in out.split('- ')[1:]]
320 for tag in exclude_tags.split():
331 printed_tests = [test.strip() for test in out.split('- ')[1:]]
333 printed_tests[-1] = printed_tests[-1].split('\n')[0]
356 for tag in exclude_tags.split():
394 output = err.split('\n')
Dtest_output.py142 split_build_log = build_log.split('\n')
148 for line in err.split('\n'):
149 columns = line.split()
/Zephyr-latest/samples/modules/tflite-micro/magic_wand/train/
DREADME.md55 - Random data split, which mixes different people's data together and randomly
57 - Person data split, which splits the data by person
59 #### Random data split
61 Using a random split results in higher training accuracy than a person split,
72 #### Person data split
74 Using a person data split results in lower training accuracy but better
/Zephyr-latest/tests/kernel/timer/timer_behavior/pytest/
Dsaleae_logic2.py73 options = [i for p in options.split(',') for i in p.split('=')]
Dconftest.py35 k, v = line.split('=', maxsplit=1)
/Zephyr-latest/tests/bsim/bluetooth/
Dtests.nrf5340bsim_nrf5340_cpuapp.txt1 # Search paths(s) for tests which will be run in the nrf5340 split stack configuration
/Zephyr-latest/doc/_extensions/zephyr/
Dapplication.py74 goals = self.options.get('goals').split()
120 build_args_list = build_args.split(' ') if build_args is not None else None
121 snippet_list = snippets.split(',') if snippets is not None else None
122 shield_list = shield.split(',') if shield is not None else None
220 app_name = app.split('/')[-1]
/Zephyr-latest/tests/net/lib/lwm2m/interop/pytest/
Dleshan.py104 if len(path.split('/')) == 3:
108 rid = path.split('/')[-1]
139 path = '/'.join(path.split('/')[:-1]) # Create call should not have instance ID in path
178 "id": int(path.split('/')[-1]), # ID is last element of path
282 keys = [int(key) for key in path.lstrip("/").split('/')]
349 level = len(path.split('/')) - 1
350 rid = int(path.split('/')[-1])
/Zephyr-latest/scripts/west_commands/
Dcompletion.py72 *COMPLETION_REL_PATH.split('/'))
Dzephyr_ext_common.py52 return fallback if unparsed is None else shlex.split(unparsed)
Dzcmake.py196 value = value.split(';')
288 version = lines[0].split()[2]
292 version = version.split('-', 1)[0]
/Zephyr-latest/boards/arduino/portenta_h7/
Darduino_portenta_h7_stm32h747xx_m4.dts16 /* HW resources are split between CM7 and CM4 */
/Zephyr-latest/doc/_extensions/zephyr/domain/static/js/
Dboard-catalog.js24 value.split(",").forEach(soc =>
174 const boardArchs = board.getAttribute("data-arch").split(" ");
176 const boardSocs = board.getAttribute("data-socs").split(" ");
/Zephyr-latest/subsys/net/lib/http/
DREADME_http_parser11 NOTE: The portions which relate to URL parsing have been split out into
/Zephyr-latest/boards/st/stm32h747i_disco/
Dstm32h747i_disco_stm32h747xx_m4.dts16 /* HW resources are split between CM7 and CM4 */

123456789