Home
last modified time | relevance | path

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

/mbedtls-development/3rdparty/everest/library/kremlib/
A DFStar_UInt128_extracted.c87 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()
201 return a.low == b.low && a.high == b.high; in FStar_UInt128_eq()
206 return a.high > b.high || (a.high == b.high && a.low > b.low); in FStar_UInt128_gt()
211 return a.high < b.high || (a.high == b.high && a.low < b.low); in FStar_UInt128_lt()
216 return a.high > b.high || (a.high == b.high && a.low >= b.low); in FStar_UInt128_gte()
221 return a.high < b.high || (a.high == b.high && a.low <= b.low); in FStar_UInt128_lte()
231 & FStar_UInt64_eq_mask(a.high, b.high), in FStar_UInt128_eq_mask()
234 & FStar_UInt64_eq_mask(a.high, b.high) in FStar_UInt128_eq_mask()
244 (FStar_UInt64_gte_mask(a.high, b.high) & ~FStar_UInt64_eq_mask(a.high, b.high)) in FStar_UInt128_gte_mask()
[all …]
/mbedtls-development/include/mbedtls/
A Derror.h127 #define MBEDTLS_ERROR_ADD( high, low ) \ argument
128 mbedtls_error_add( high, low, __FILE__, __LINE__ )
156 static inline int mbedtls_error_add( int high, int low, in mbedtls_error_add() argument
161 ( *mbedtls_test_hook_error_add )( high, low, file, line ); in mbedtls_error_add()
166 return( high + low ); in mbedtls_error_add()
/mbedtls-development/tests/suites/
A Dtest_suite_error.data5 Single high error
9 Low and high error
13 Non existing high error
19 Non existing low and high error
A Dtest_suite_base64.function21 unsigned char low = low_arg, high = high_arg;
27 unsigned char m = mbedtls_base64_mask_of_range( low, high, c );
30 if( low <= c && c <= high )
A Dtest_suite_random.function14 * This must be high enough that the probability of generating the same
A Dhost_test.function322 * At high optimization levels (e.g. gcc -O3), this function may be
A Dtest_suite_ecp.data477 ECP generate Montgomery key: Curve448, set high bit
/mbedtls-development/tests/src/
A Dhelpers.c233 void mbedtls_test_err_add_check( int high, int low, in mbedtls_test_err_add_check() argument
248 if ( high > -0x1000 && high != 0 ) in mbedtls_test_err_add_check()
256 else if ( high < -0x7F80 ) in mbedtls_test_err_add_check()
264 else if ( ( high & 0x7F ) != 0 ) in mbedtls_test_err_add_check()
/mbedtls-development/scripts/data_files/
A Derror.fmt46 /* Extract the high-level part from the error code. */
104 // Translate high level error code.
125 // If high level code is present, make a concatenation between both
/mbedtls-development/library/
A Dbase64_invasive.h37 unsigned char high,
A Dbase64.c47 unsigned char high, in mbedtls_base64_mask_of_range() argument
53 unsigned high_mask = ( (unsigned) high - c ) >> 8; in mbedtls_base64_mask_of_range()
A Dsha512.c356 uint64_t high, low; in mbedtls_sha512_finish() local
387 high = ( ctx->total[0] >> 61 ) in mbedtls_sha512_finish()
391 sha512_put_uint64_be( high, ctx->buffer, 112 ); in mbedtls_sha512_finish()
A Dmd5.c278 uint32_t high, low; in mbedtls_md5_finish() local
306 high = ( ctx->total[0] >> 29 ) in mbedtls_md5_finish()
311 MBEDTLS_PUT_UINT32_LE( high, ctx->buffer, 60 ); in mbedtls_md5_finish()
A Dsha256.c323 uint32_t high, low; in mbedtls_sha256_finish() local
354 high = ( ctx->total[0] >> 29 ) in mbedtls_sha256_finish()
358 MBEDTLS_PUT_UINT32_BE( high, ctx->buffer, 56 ); in mbedtls_sha256_finish()
A Dripemd160.c350 uint32_t high, low; in mbedtls_ripemd160_finish() local
353 high = ( ctx->total[0] >> 29 ) in mbedtls_ripemd160_finish()
358 MBEDTLS_PUT_UINT32_LE( high, msglen, 4 ); in mbedtls_ripemd160_finish()
A Dsha1.c330 uint32_t high, low; in mbedtls_sha1_finish() local
361 high = ( ctx->total[0] >> 29 ) in mbedtls_sha1_finish()
365 MBEDTLS_PUT_UINT32_BE( high, ctx->buffer, 56 ); in mbedtls_sha1_finish()
/mbedtls-development/3rdparty/everest/include/everest/kremlin/internal/
A Dtypes.h55 uint64_t high; member
/mbedtls-development/tests/include/test/
A Dhelpers.h232 void mbedtls_test_err_add_check( int high, int low,
/mbedtls-development/docs/architecture/
A Dpsa-crypto-implementation-structure.md8 This document describes the high level organization of the Mbed TLS PSA Cryptography API implementa…
/mbedtls-development/docs/
A Duse-psa-crypto.md158 This is only a high-level overview, grouped by theme
A D3.0-migration-guide.md137 Please also refer to the section [High-level crypto](#high-level-crypto) for
/mbedtls-development/
A DChangeLog871 high- and low-level error codes, complementing mbedtls_strerror()
1246 codes to always wrap these codes into X.509 high level error codes before
1596 primes with high probability. This does not have an impact on the
/mbedtls-development/docs/proposed/
A Dpsa-driver-interface.md27 The present specification was designed to fulfill the following high-level requirements.

Completed in 30 milliseconds