Home
last modified time | relevance | path

Searched refs:tuple (Results 1 – 23 of 23) sorted by relevance

/hal_espressif-3.6.0/components/sdmmc/
Dsdmmc_io.c405 const cis_tuple_t* tuple = (const cis_tuple_t*)p; in cis_tuple_func_default() local
408 if (tuple) { in cis_tuple_func_default()
409 fprintf(fp, "TUPLE: %s, size: %d: ", tuple->name, size); in cis_tuple_func_default()
420 const cis_tuple_t* tuple = (const cis_tuple_t*)p; in cis_tuple_func_manfid() local
423 fprintf(fp, "TUPLE: %s, size: %d\n", tuple->name, size); in cis_tuple_func_manfid()
431 const cis_tuple_t* tuple = (const cis_tuple_t*)p; in cis_tuple_func_end() local
433 fprintf(fp, "TUPLE: %s\n", tuple->name); in cis_tuple_func_end()
439 const cis_tuple_t* tuple = (const cis_tuple_t*)p; in cis_tuple_func_cftable_entry() local
442 fprintf(fp, "TUPLE: %s, size: %d\n", tuple->name, size); in cis_tuple_func_cftable_entry()
509 const cis_tuple_t* tuple = get_tuple(cis[0]); in sdmmc_io_print_cis_info() local
[all …]
/hal_espressif-3.6.0/tools/ci/python_packages/tiny_test_fw/Utility/
DCaseConfig.py63 if isinstance(item, (tuple, list)):
88 if isinstance(filter_item, (tuple, list)) \
89 and isinstance(accepted_item, (tuple, list)):
92 elif isinstance(filter_item, (tuple, list)):
95 elif isinstance(accepted_item, (tuple, list)):
DSearchCases.py86 if isinstance(case.case_info[key], (list, tuple)):
/hal_espressif-3.6.0/tools/kconfig_new/
Dgen_kconfig_doc.py56 if isinstance(item, tuple):
221 if isinstance(expr, tuple):
344 if not isinstance(cond, tuple) and cond != kconfiglib.Kconfig.y:
362 if not isinstance(cond, tuple) and cond != kconfiglib.Kconfig.y:
/hal_espressif-3.6.0/tools/ci/python_packages/tiny_test_fw/
DDUT.py555 ret = tuple(x for x in match.groups())
632 'pattern': item_raw[0] if isinstance(item_raw, tuple) else item_raw,
633 'method': self._get_expect_method(item_raw[0] if isinstance(item_raw, tuple)
635 'callback': item_raw[1] if isinstance(item_raw, tuple) else None,
/hal_espressif-3.6.0/tools/test_apps/security/secure_boot/
Dexample_test.py25 new_blocks = tuple(corrupt_sig_block(s, seed, corrupt_sig, corrupt_crc) for s in sig_blocks)
29 …corr_sig_blocks = tuple(new_blocks[n] if corrupt_single_block in [None, n] else sig_blocks[n] for …
/hal_espressif-3.6.0/components/esptool_py/esptool/espefuse/efuse/
Dutil.py11 as_bytes = tuple(b for b in bitstring)
/hal_espressif-3.6.0/docs/
Dconf_common.py181 html_redirect_pages = [tuple(line.split(' ')) for line in lines]
/hal_espressif-3.6.0/tools/ci/
Dcheck_deprecated_kconfigs.py73 ignore_dirs = ignore_dirs + tuple(submodule)
Dcheck_kconfigs.py436 ignore_dirs = ignore_dirs + tuple(get_submodule_dirs(full_path=True))
Dcheck_public_headers.py279 if os.path.relpath(d, idf_path).startswith(tuple(ignore_dirs)):
/hal_espressif-3.6.0/components/esptool_py/esptool/esptool/targets/
Desp32h2beta1.py116 return tuple(bitstring)
Desp32c6.py138 return tuple(bitstring)
Desp32c3.py136 return tuple(bitstring)
Desp32s2.py189 return tuple(bitstring)
Desp32s3.py215 return tuple(bitstring)
Desp32.py291 return tuple(bitstring)
/hal_espressif-3.6.0/tools/esp_app_trace/
Dlogtrace_proc.py104 print(fmt_str % tuple(lrec.args), end='')
/hal_espressif-3.6.0/examples/protocols/modbus/serial/
Dexample_test.py126 ret = tuple(None if x is None else x.decode() for x in match.groups())
/hal_espressif-3.6.0/tools/esp_app_trace/espytrace/
Dapptrace.py550 return fmt_str % tuple(self.args)
/hal_espressif-3.6.0/
D.flake817 F631, # assertion test is a tuple, which are always True
/hal_espressif-3.6.0/components/esptool_py/esptool/esptool/
D__init__.py952 values = tuple(int(v, 0) for v in values)
/hal_espressif-3.6.0/tools/catch/
Dcatch.hpp1729 static void print( const Tuple& tuple, std::ostream& os ) in print()
1732 << Catch::toString(std::get<N>(tuple)); in print()
1733 ElementPrinter<Tuple,N+1>::print(tuple,os); in print()
1748 struct StringMaker<std::tuple<Types...>> {
1750 static std::string convert( const std::tuple<Types...>& tuple ) in convert()
1754 TupleDetail::ElementPrinter<std::tuple<Types...>>::print( tuple, os ); in convert()