Home
last modified time | relevance | path

Searched refs:_default (Results 1 – 4 of 4) sorted by relevance

/hal_rpi_pico-latest/tools/
Dextract_build_defines.py61 _min = _max = _default = None
82 _default = int(m.group(1)) * 10**int(m.group(2))
84 _default = int(value, 0)
90 if _min is not None and _default is not None:
91 if _min > _default:
93 if _default is not None and _max is not None:
94 if _default > _max:
99 _default = config_attrs.get('default', None)
100 if _default is not None:
101 if '/' not in _default:
[all …]
Dextract_cmake_configs.py61 _min = _max = _default = None
82 _default = int(m.group(1)) * 10**int(m.group(2))
84 _default = int(value, 0)
90 if _min is not None and _default is not None:
91 if _min > _default:
93 if _default is not None and _max is not None:
94 if _default > _max:
99 _default = config_attrs.get('default', None)
100 if _default is not None:
101 if '/' not in _default:
[all …]
Dextract_configs.py64 _min = _max = _default = None
91 _default = int(m.group(1)) * 10**int(m.group(2))
93 _default = int(value, 0)
99 if _min is not None and _default is not None:
100 if _min > _default:
102 if _default is not None and _max is not None:
103 if _default > _max:
111 _default = config_attrs.get('default', None)
112 if _default is not None:
113 if '/' not in _default:
[all …]
/hal_rpi_pico-latest/src/common/pico_binary_info/include/pico/binary_info/
Dcode.h85 #define bi_ptr_int32(_tag, _id, _var, _default) __attribute__((section(".data"))) static int _var =… argument
99 #define bi_ptr_string(_tag, _id, _var, _default, _max_len) static char _var[_max_len] = _default; _… argument