Home
last modified time | relevance | path

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

/optee_os/lib/libutils/compiler-rt/lib/builtins/
H A Dudivmodti4.c116 if (dividend.s.high < divisor.s.low) { in __udivmodti4()
118 quotient.s.low = udiv128by64to64(dividend.s.high, dividend.s.low, in __udivmodti4()
119 divisor.s.low, &remainder.s.low); in __udivmodti4()
124 quotient.s.high = dividend.s.high / divisor.s.low; in __udivmodti4()
125 dividend.s.high = dividend.s.high % divisor.s.low; in __udivmodti4()
126 quotient.s.low = udiv128by64to64(dividend.s.high, dividend.s.low, in __udivmodti4()
127 divisor.s.low, &remainder.s.low); in __udivmodti4()
138 quotient.s.low = 0; in __udivmodti4()
140 quotient.s.low <<= 1; in __udivmodti4()
149 quotient.s.low |= s & 1; in __udivmodti4()
H A Dint_types.h44 su_int low; member
48 su_int low;
57 su_int low; member
61 su_int low;
86 du_int low; member
90 du_int low;
99 du_int low; member
103 du_int low;
111 r.s.low = (du_int)l; in make_ti()
118 r.s.low = l; in make_tu()
[all …]
H A Dashlti3.c27 result.s.low = 0; in __ashlti3()
28 result.s.high = input.s.low << (b - bits_in_dword); in __ashlti3()
32 result.s.low = input.s.low << b; in __ashlti3()
34 ((du_int)input.s.high << b) | (input.s.low >> (bits_in_dword - b)); in __ashlti3()
/optee_os/lib/libmbedtls/mbedtls/include/mbedtls/
H A 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()
/optee_os/core/lib/libtomcrypt/src/pk/ecc/
H A Decc_sizes.c13 void ecc_sizes(int *low, int *high) in ecc_sizes() argument
18 LTC_ARGCHKVD(low != NULL); in ecc_sizes()
21 *low = INT_MAX; in ecc_sizes()
28 if (size < *low) *low = size; in ecc_sizes()
/optee_os/core/lib/zlib/
H A Dinftrees.c52 unsigned low; /* low bits for current root entry */ local
205 low = (unsigned)(-1); /* trigger new sub-table when len > root */
259 if (len > root && (huff & mask) != low) {
284 low = huff & mask;
285 (*table)[low].op = (unsigned char)curr;
286 (*table)[low].bits = (unsigned char)root;
287 (*table)[low].val = (unsigned short)(next - *table);
H A Dinflate.c346 unsigned low, size; in makefixed() local
361 low = 0; in makefixed()
363 if ((low % 7) == 0) printf("\n "); in makefixed()
364 printf("{%u,%u,%d}", (low & 127) == 99 ? 64 : state.lencode[low].op, in makefixed()
365 state.lencode[low].bits, state.lencode[low].val); in makefixed()
366 if (++low == size) break; in makefixed()
372 low = 0; in makefixed()
374 if ((low % 6) == 0) printf("\n "); in makefixed()
375 printf("{%u,%u,%d}", state.distcode[low].op, state.distcode[low].bits, in makefixed()
376 state.distcode[low].val); in makefixed()
[all …]
/optee_os/core/drivers/crypto/caam/
H A Dcaam_desc.c15 uint32_t low; member
17 uint32_t low;
65 caam_write_val32(&ptr_addr->low, ptr); in caam_desc_add_ptr()
/optee_os/core/drivers/scmi-msg/
H A Dclock.h136 uint32_t low; member
/optee_os/core/crypto/
H A Dsm3.c231 uint32_t high, low; in sm3_final() local
235 low = ctx->total[0] << 3; in sm3_final()
238 PUT_UINT32_BE(low, msglen, 4); in sm3_final()
/optee_os/mk/
H A Dcompile.mk47 comp-cflags-warns-low = \
53 comp-cflags-warns-3:= $(comp-cflags-warns-2) $(comp-cflags-warns-low)
/optee_os/lib/libmbedtls/mbedtls/library/
H A Dconstant_time_impl.h391 static inline unsigned char mbedtls_ct_uchar_in_range_if(unsigned char low, in mbedtls_ct_uchar_in_range_if() argument
400 unsigned low_mask = ((unsigned) co - low) >> 8; in mbedtls_ct_uchar_in_range_if()
H A Dconstant_time_internal.h397 static inline unsigned char mbedtls_ct_uchar_in_range_if(unsigned char low,
H A Dmd5.c260 uint32_t high, low; in mbedtls_md5_finish() local
288 low = (ctx->total[0] << 3); in mbedtls_md5_finish()
290 MBEDTLS_PUT_UINT32_LE(low, ctx->buffer, 56); in mbedtls_md5_finish()
H A Dsha1.c296 uint32_t high, low; in mbedtls_sha1_finish() local
324 low = (ctx->total[0] << 3); in mbedtls_sha1_finish()
327 MBEDTLS_PUT_UINT32_BE(low, ctx->buffer, 60); in mbedtls_sha1_finish()
H A Dripemd160.c332 uint32_t high, low; in mbedtls_ripemd160_finish() local
337 low = (ctx->total[0] << 3); in mbedtls_ripemd160_finish()
339 MBEDTLS_PUT_UINT32_LE(low, msglen, 0); in mbedtls_ripemd160_finish()
H A Dsha256.c705 uint32_t high, low; in mbedtls_sha256_finish() local
734 low = (ctx->total[0] << 3); in mbedtls_sha256_finish()
737 MBEDTLS_PUT_UINT32_BE(low, ctx->buffer, 60); in mbedtls_sha256_finish()
H A Dsha512.c819 uint64_t high, low; in mbedtls_sha512_finish() local
848 low = (ctx->total[0] << 3); in mbedtls_sha512_finish()
851 sha512_put_uint64_be(low, ctx->buffer, 120); in mbedtls_sha512_finish()
/optee_os/core/arch/arm/crypto/
H A Dsm4_armv8a_aese_a64.S131 .macro multi_matrix, x, high, low, tmp
134 tbl \x\().16b, {\low\().16b}, \x\().16b
417 .macro inc_le128, vctr, low, high
419 mov \vctr\().d[0], \low
421 adc \low, \low, xzr
H A Dsm4_armv8a_ce_a64.S328 .macro inc_le128, vctr, low, high
330 mov \vctr\().d[0], \low
332 adc \low, \low, xzr
/optee_os/core/lib/libtomcrypt/src/headers/
H A Dtomcrypt_pk.h259 void ecc_sizes(int *low, int *high);
/optee_os/lib/libutils/isoc/
H A Dbget.doc107 low-level memory allocator. Then allocate buffers with bget(), bgetz(),
/optee_os/lib/libmbedtls/mbedtls/
H A DChangeLog255 * The following low-level application interfaces are planned to be removed
317 (feature enabled by MBEDTLS_PSA_CRYPTO_SE_C). In a low memory condition,
361 key through some PSA functions due to low memory conditions.
437 This affects both the low-level modules and the high-level APIs
920 signature can silently return an incorrect result in low memory conditions.
932 enabled, where some low-level modules required by requested PSA crypto
1613 * Fix resource leaks in mbedtls_pk_parse_public_key() in low
2671 * Fix a memory leak in mbedtls_md_setup() when using HMAC under low memory
2710 high- and low-level error codes, complementing mbedtls_strerror()
2879 operation. The overread only happens with cryptographically low
[all …]