Searched refs:split (Results 1 – 25 of 215) sorted by relevance
123456789
/Zephyr-latest/snippets/bt-ll-sw-split/ |
D | README.rst | 1 .. _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/ |
D | gen_syscalls.py | 227 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 …]
|
D | gen_relocate_app.py | 389 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/ |
D | cmakecache.py | 27 pline1 = sline.split(":", maxsplit=1) 30 pline2 = pline1[1].split("=", maxsplit=1)
|
D | getincludes.py | 60 sline = rline.split(" ", maxsplit=1)
|
/Zephyr-latest/doc/develop/west/ |
D | alias.rst | 12 `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/ |
D | pack_as_twister.py | 138 (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/ |
D | gen_gcov_files.py | 34 file_name = line.split("<")[0][1:] 36 hex_dump = line.split("<")[1][:-1]
|
/Zephyr-latest/scripts/pylib/pytest-twister-harness/tests/resources/ |
D | zen_of_python.py | 29 """.split('\n')
|
/Zephyr-latest/scripts/west_commands/runners/ |
D | blackmagicprobe.py | 159 split = self.hex_file.split('.') 161 if len(split) >= 3 and split[-2] == 'signed':
|
/Zephyr-latest/scripts/tests/twister_blackbox/ |
D | test_printouts.py | 295 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')
|
D | test_output.py | 142 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/ |
D | README.md | 55 - 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/ |
D | saleae_logic2.py | 73 options = [i for p in options.split(',') for i in p.split('=')]
|
D | conftest.py | 35 k, v = line.split('=', maxsplit=1)
|
/Zephyr-latest/tests/bsim/bluetooth/ |
D | tests.nrf5340bsim_nrf5340_cpuapp.txt | 1 # Search paths(s) for tests which will be run in the nrf5340 split stack configuration
|
/Zephyr-latest/doc/_extensions/zephyr/ |
D | application.py | 74 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/ |
D | leshan.py | 104 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/ |
D | completion.py | 72 *COMPLETION_REL_PATH.split('/'))
|
D | zephyr_ext_common.py | 52 return fallback if unparsed is None else shlex.split(unparsed)
|
D | zcmake.py | 196 value = value.split(';') 288 version = lines[0].split()[2] 292 version = version.split('-', 1)[0]
|
/Zephyr-latest/boards/arduino/portenta_h7/ |
D | arduino_portenta_h7_stm32h747xx_m4.dts | 16 /* HW resources are split between CM7 and CM4 */
|
/Zephyr-latest/doc/_extensions/zephyr/domain/static/js/ |
D | board-catalog.js | 24 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/ |
D | README_http_parser | 11 NOTE: The portions which relate to URL parsing have been split out into
|
/Zephyr-latest/boards/st/stm32h747i_disco/ |
D | stm32h747i_disco_stm32h747xx_m4.dts | 16 /* HW resources are split between CM7 and CM4 */
|
123456789