Home
last modified time | relevance | path

Searched refs:high (Results 1 – 24 of 24) sorted by relevance

/mbedtls-latest/3rdparty/everest/library/kremlib/
DFStar_UInt128_extracted.c22 return projectee.high; in FStar_UInt128___proj__Mkuint128__item__high()
38 flat = { a.low + b.low, a.high + b.high + FStar_UInt128_carry(a.low + b.low, b.low) }; in FStar_UInt128_add()
46 flat = { a.low + b.low, a.high + b.high + FStar_UInt128_carry(a.low + b.low, b.low) }; in FStar_UInt128_add_underspec()
53 flat = { a.low + b.low, a.high + b.high + FStar_UInt128_carry(a.low + b.low, b.low) }; in FStar_UInt128_add_mod()
60 flat = { a.low - b.low, a.high - b.high - FStar_UInt128_carry(a.low, a.low - b.low) }; in FStar_UInt128_sub()
68 flat = { a.low - b.low, a.high - b.high - FStar_UInt128_carry(a.low, a.low - b.low) }; in FStar_UInt128_sub_underspec()
76 flat = { a.low - b.low, a.high - b.high - FStar_UInt128_carry(a.low, a.low - b.low) }; in FStar_UInt128_sub_mod_impl()
87 FStar_UInt128_uint128 flat = { a.low & b.low, a.high & b.high }; in FStar_UInt128_logand()
93 FStar_UInt128_uint128 flat = { a.low ^ b.low, a.high ^ b.high }; in FStar_UInt128_logxor()
99 FStar_UInt128_uint128 flat = { a.low | b.low, a.high | b.high }; in FStar_UInt128_logor()
[all …]
/mbedtls-latest/include/mbedtls/
Derror.h113 #define MBEDTLS_ERROR_ADD(high, low) \ argument
114 mbedtls_error_add(high, low, __FILE__, __LINE__)
142 static inline int mbedtls_error_add(int high, int low, in mbedtls_error_add() argument
147 (*mbedtls_test_hook_error_add)(high, low, file, line); in mbedtls_error_add()
153 return high + low; in mbedtls_error_add()
/mbedtls-latest/tests/suites/
Dtest_suite_error.data5 Single high error
9 Low and high error
13 Non existing high error
19 Non existing low and high error
Dtest_suite_random.function14 * This must be high enough that the probability of generating the same
Dhost_test.function264 * At high optimization levels (e.g. gcc -O3), this function may be
Dtest_suite_ecp.data587 ECP generate Montgomery key: Curve448, set high bit
/mbedtls-latest/tests/src/
Dhelpers.c664 void mbedtls_test_err_add_check(int high, int low, in mbedtls_test_err_add_check() argument
679 if (high > -0x1000 && high != 0) { in mbedtls_test_err_add_check()
685 } else if (high < -0x7F80) { in mbedtls_test_err_add_check()
691 } else if ((high & 0x7F) != 0) { in mbedtls_test_err_add_check()
/mbedtls-latest/scripts/data_files/
Derror.fmt31 /* Extract the high-level part from the error code. */
89 // Translate high level error code.
113 // If high level code is present, make a concatenation between both
/mbedtls-latest/library/
Dconstant_time_impl.h407 unsigned char high, in mbedtls_ct_uchar_in_range_if() argument
417 unsigned high_mask = ((unsigned) high - co) >> 8; in mbedtls_ct_uchar_in_range_if()
Dmd5.c260 uint32_t high, low; in mbedtls_md5_finish() local
286 high = (ctx->total[0] >> 29) in mbedtls_md5_finish()
291 MBEDTLS_PUT_UINT32_LE(high, ctx->buffer, 60); in mbedtls_md5_finish()
Dripemd160.c332 uint32_t high, low; in mbedtls_ripemd160_finish() local
335 high = (ctx->total[0] >> 29) in mbedtls_ripemd160_finish()
340 MBEDTLS_PUT_UINT32_LE(high, msglen, 4); in mbedtls_ripemd160_finish()
Dsha1.c296 uint32_t high, low; in mbedtls_sha1_finish() local
322 high = (ctx->total[0] >> 29) in mbedtls_sha1_finish()
326 MBEDTLS_PUT_UINT32_BE(high, ctx->buffer, 56); in mbedtls_sha1_finish()
Dsha256.c705 uint32_t high, low; in mbedtls_sha256_finish() local
732 high = (ctx->total[0] >> 29) in mbedtls_sha256_finish()
736 MBEDTLS_PUT_UINT32_BE(high, ctx->buffer, 56); in mbedtls_sha256_finish()
Dconstant_time_internal.h398 unsigned char high,
Dsha512.c819 uint64_t high, low; in mbedtls_sha512_finish() local
846 high = (ctx->total[0] >> 61) in mbedtls_sha512_finish()
850 sha512_put_uint64_be(high, ctx->buffer, 112); in mbedtls_sha512_finish()
/mbedtls-latest/3rdparty/everest/include/everest/kremlin/internal/
Dtypes.h55 uint64_t high; member
/mbedtls-latest/tests/include/test/
Dhelpers.h400 void mbedtls_test_err_add_check(int high, int low,
/mbedtls-latest/docs/architecture/
Dpsa-crypto-implementation-structure.md8 This document describes the high level organization of the Mbed TLS PSA Cryptography API implementa…
Dpsa-shared-memory.md130 In the remainder of this chapter, we will discuss how to implement this high-level requirement wher…
152 … **small buffers**, the cost of copying is low. For many of those, the risk of not copying is high:
154 * Any parsing of formatted data has a high risk of [read-read inconsistency](#read-read-inconsisten…
/mbedtls-latest/docs/architecture/psa-migration/
Dpsa-legacy-bridges.md69 … modules for individual algorithms. Our focus is on applications that use high-level legacy crypto…
/mbedtls-latest/docs/
Dpsa-transition.md334 …variable_iv_size`: the PSA API does not currently have such mechanism for high-level metadata info…
780 …tls_ecdsa_genkey`), this directly creates an object that can be used with high-level APIs, but rem…
1286 * If the purpose of the ALT interface is to isolate the private key in a high-security environment:…
D3.0-migration-guide.md158 Please also refer to the section [High-level crypto](#high-level-crypto) for
/mbedtls-latest/
DChangeLog244 This affects both the low-level modules and the high-level APIs
696 * Fix very high stack usage in SSL debug code. Reported by Maximilian
2517 high- and low-level error codes, complementing mbedtls_strerror()
2892 codes to always wrap these codes into X.509 high level error codes before
3242 primes with high probability. This does not have an impact on the
/mbedtls-latest/docs/proposed/
Dpsa-driver-interface.md29 The present specification was designed to fulfill the following high-level requirements.