Home
last modified time | relevance | path

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

/openthread-latest/third_party/mbedtls/repo/tests/scripts/
Dset_psa_test_dependencies.py111 def dependencies_of_symbol(symbol): argument
113 if symbol in WITHOUT_SYSTEMATIC_DEPENDENCIES:
115 if symbol in SPECIAL_SYSTEMATIC_DEPENDENCIES:
116 return SPECIAL_SYSTEMATIC_DEPENDENCIES[symbol]
117 if symbol.startswith('PSA_ALG_CATEGORY_') or \
118 symbol.startswith('PSA_KEY_TYPE_CATEGORY_'):
122 return {symbol.replace('_', '_WANT_', 1)}
152 for symbol in re.findall(r'PSA_(?:ALG|KEY_TYPE)_\w+', arg):
153 deps.update(dependencies_of_symbol(symbol))
Dtest_config_script.py144 for symbol in TEST_SYMBOLS:
145 run_one(options, ['get', symbol])
146 (stem, filename) = run_one(options, ['set', symbol])
147 run_one(options, ['get', symbol], stem_prefix=stem, input_file=filename)
148 run_one(options, ['--force', 'set', symbol])
149 (stem, filename) = run_one(options, ['set', symbol, 'value'])
150 run_one(options, ['get', symbol], stem_prefix=stem, input_file=filename)
151 run_one(options, ['--force', 'set', symbol, 'value'])
152 run_one(options, ['unset', symbol])
Ddepends.py293 def handle_exclusive_groups(config_settings, symbol): argument
296 for dep in EXCLUSIVE_GROUPS.get(symbol, []):
329 for symbol in symbols:
330 base_config_settings[symbol] = False
331 for symbol in symbols:
332 description = symbol
336 config_settings[symbol] = True
337 handle_exclusive_groups(config_settings, symbol)
353 for symbol in symbols:
354 description = '!' + symbol
[all …]
Dgenerate_bignum_tests.py91 self.symbol,
140 self.symbol = ["<", "==", ">"][self._result + 1]
159 symbol = "+" variable in BignumAdd
Dcheck_names.py761 symbol = nm_valid_regex.search(line)
762 if (symbol and not symbol.group("symbol").startswith(exclusions)):
763 symbols.append(symbol.group("symbol"))
825 for symbol in self.parse_result["symbols"]:
828 if symbol == identifier_match.name:
833 problems.append(SymbolNotInHeader(symbol))
/openthread-latest/third_party/mbedtls/repo/scripts/mbedtls_dev/
Dbignum_mod_raw.py22 symbol = "-" variable in BignumModRawSub
41 symbol = "-" variable in BignumModRawFixQuasiReduction
72 symbol = "*" variable in BignumModRawMul
93 symbol = "^ -1" variable in BignumModRawInvPrime
111 symbol = "+" variable in BignumModRawAdd
127 symbol = "" variable in BignumModRawConvertRep
136 return ([bignum_common.quote_str(self.arg_n), self.rep.symbol(),
210 symbol = "R *" variable in BignumModRawConvertToMont
223 symbol = "1/R *" variable in BignumModRawConvertFromMont
236 symbol = "-" variable in BignumModRawModNegate
Dbignum_mod.py22 symbol = "*" variable in BignumModMul
41 symbol = "-" variable in BignumModSub
56 symbol = "^ -1" variable in BignumModInvNonMont
73 symbol = "^ -1" variable in BignumModInvMont
93 symbol = "+" variable in BignumModAdd
Decp.py21 symbol = "-" variable in EcpP192R1Raw
98 symbol = "-" variable in EcpP224R1Raw
177 symbol = "-" variable in EcpP256R1Raw
491 symbol = "-" variable in EcpP192K1Raw
563 symbol = "-" variable in EcpP224K1Raw
637 symbol = "-" variable in EcpP256K1Raw
713 symbol = "-" variable in EcpP255Raw
782 symbol = "-" variable in EcpP448Raw
Dbignum_core.py78 symbol = "<<" variable in BignumCoreShiftL
102 self.symbol,
165 symbol = "+" variable in BignumCoreAddAndAddIf
187 symbol = "-" variable in BignumCoreSub
291 symbol = "*" variable in BignumCoreMul
834 symbol = "^" variable in BignumCoreExpMod
856 symbol = "-" variable in BignumCoreSubInt
887 symbol = "== 0" variable in BignumCoreZeroCheckCT
Dpsa_information.py122 return frozenset(symbol
124 for symbol in re.findall(r'\bPSA_WANT_\w+\b', line))
Dbignum_common.py117 symbol = "" variable in OperationCommon
202 self.symbol, self.int_a
206 self.int_a, self.symbol, self.int_b
276 def symbol(self) -> str: member in ModulusRepresentation
/openthread-latest/third_party/mbedtls/repo/docs/proposed/
Dpsa-conditional-inclusion-c.md24 …raphy. For example, many parts of the ECC code have no `MBEDTLS_xxx_ALT` symbol, so a platform wit…
52 …ls of the form `PSA_WANT_xxx` where `xxx` describes the feature that the symbol enables. The symbo…
54 The symbol `MBEDTLS_PSA_CRYPTO_CONFIG` in `mbedtls/mbedtls_config.h` determines whether `psa/crypto…
61 #### Configuration symbol syntax
63 A PSA Crypto configuration symbol is a C preprocessor symbol whose name starts with `PSA_WANT_`.
65 * If the symbol is not defined, the corresponding feature is not included.
66 * If the symbol is defined to a preprocessor expression with the value `1`, the corresponding featu…
67 * If the symbol is defined with a different value, the behavior is currently undefined and reserved…
69 #### Configuration symbol usage
71 The presence of a symbol `PSA_WANT_xxx` in the Mbed TLS configuration determines whether a feature …
[all …]
/openthread-latest/third_party/mbedtls/repo/scripts/
Dconfig.py576 if args.symbol in config:
577 value = config[args.symbol]
580 return 0 if args.symbol in config else 1
582 if not args.force and args.symbol not in config.settings:
585 .format(args.symbol, config.filename))
587 config.set(args.symbol, value=args.value)
591 config.unset(args.symbol)
/openthread-latest/
DSTYLE_GUIDE.md59 …cessor directive should be avoided and shall never be used to undefine a symbol from a foreign mod…
74 …ment, C or C++ depending on the header type, containing the preprocessor symbol introduced by the …
75 …- The symbol used for the guard should be the file name, converted to all uppercase, with any spac…
84 - All header files intended to have C symbol linkage shall use “extern C” linkage wrappers.
89 …o alias data over and above a pointer, the reference, indicated by the & symbol. Where appropriate…
/openthread-latest/third_party/mbedtls/repo/scripts/data_files/
Dquery_config.fmt111 CHECK_CONFIG /* If the symbol is not found, return an error */
/openthread-latest/third_party/mbedtls/repo/docs/architecture/
Dalternative-implementations.md72 …me contains `_internal`, `_ext` or `_ret`, this is removed in the `_ALT` symbol. When the correspo…
84 * Define the symbol `MBEDTLS_PLATFORM_XXX_ALT` at compile time.
Dpsa-crypto-implementation-structure.md127 * The feature is available to applications when the preprocessor symbol `PSA_WANT_ttt_xxx` is defin…
/openthread-latest/third_party/mbedtls/repo/tests/suites/
Dmain_test.function28 /* Test code may use deprecated identifiers only if the preprocessor symbol
/openthread-latest/tools/spi-hdlc-adapter/
DREADME.md33 …eset bit being set on a SPI frame, the special vendor-specific HDLC-lite symbol `0xF8` is emitted.…
/openthread-latest/third_party/mbedtls/repo/docs/
Ddriver-only-builds.md331 - Enable `MBEDTLS_PSA_ACCEL_[KEY_TYPE_xxx|ALG_yyy]` symbol(s) which correspond
400 - The legacy symbol `MBEDTLS_CCM_C` adds support for both cipher and AEAD,
Dpsa-transition.md185 …For parametrized algorithms, there is a `PSA_WANT_` symbol both for the main macro and for each ar…
300symbol `PSA_WANT_KEY_TYPE_xxx` is defined with a non-zero value if the library is built with suppo…
465symbol `PSA_WANT_KEY_TYPE_xxx` is defined with a non-zero value if the library is built with suppo…
D3.0-migration-guide.md55 A config file version symbol, `MBEDTLS_CONFIG_VERSION` was introduced.
/openthread-latest/third_party/mbedtls/repo/3rdparty/p256-m/p256-m/
DREADME.md95 unsigned multiplication instruction, the symbol `MUL64_IS_CONSTANT_TIME` can
/openthread-latest/doc/
DDoxyfile.in422 # The size of the symbol lookup cache can be set using LOOKUP_CACHE_SIZE. This
424 # an expensive process and often the same symbol appears multiple times in the
880 # The EXCLUDE_SYMBOLS tag can be used to specify one or more symbol names
882 # output. The symbol name can be a fully qualified name, a word, or if the
/openthread-latest/third_party/mbedtls/repo/
DChangeLog240 corresponding MBEDTLS_PSA_ACCEL symbol should be defined in case
1906 * A config file version symbol, MBEDTLS_CONFIG_VERSION was introduced.
2267 * Use local labels in mbedtls_padlock_has_support() to fix an invalid symbol
3989 * Fix the redefinition of macro ssl_set_bio to an undefined symbol
4106 through the symbol YOTTA_CFG_MBEDTLS_TARGET_CONFIG_FILE.