Home
last modified time | relevance | path

Searched refs:acc (Results 1 – 6 of 6) sorted by relevance

/optee_os-3.20.0/lib/libutils/isoc/newlib/
A Dstrtoul.c164 register unsigned long acc; variable
190 for (acc = 0, any = 0;; c = *s++) {
199 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
203 acc *= base;
204 acc += c;
208 acc = ULONG_MAX;
210 acc = -acc;
213 return (acc);
/optee_os-3.20.0/core/arch/arm/kernel/
A Dtee_time_arm_cntpct.c55 static uint16_t acc; in REGISTER_TIME_SOURCE() local
58 acc = tsc; in REGISTER_TIME_SOURCE()
62 acc = (acc << 2) | ((acc >> 6) & 3); in REGISTER_TIME_SOURCE()
64 acc ^= (tsc >> n) & 3; in REGISTER_TIME_SOURCE()
72 FMSG("0x%02X", (int)acc & ((1 << (bytes * 8)) - 1)); in REGISTER_TIME_SOURCE()
73 crypto_rng_add_event(sid, pnum, (uint8_t *)&acc, bytes); in REGISTER_TIME_SOURCE()
/optee_os-3.20.0/lib/libmbedtls/mbedtls/library/
A Dpoly1305.c115 acc0 = ctx->acc[0]; in poly1305_process()
116 acc1 = ctx->acc[1]; in poly1305_process()
117 acc2 = ctx->acc[2]; in poly1305_process()
118 acc3 = ctx->acc[3]; in poly1305_process()
119 acc4 = ctx->acc[4]; in poly1305_process()
188 ctx->acc[0] = acc0; in poly1305_process()
292 ctx->acc[0] = 0U; in mbedtls_poly1305_starts()
293 ctx->acc[1] = 0U; in mbedtls_poly1305_starts()
294 ctx->acc[2] = 0U; in mbedtls_poly1305_starts()
295 ctx->acc[3] = 0U; in mbedtls_poly1305_starts()
[all …]
A Dentropy.c666 unsigned char acc[MBEDTLS_ENTROPY_BLOCK_SIZE] = { 0 }; in mbedtls_entropy_self_test() local
702 acc[j] |= buf[j]; in mbedtls_entropy_self_test()
707 if( acc[j] == 0 ) in mbedtls_entropy_self_test()
/optee_os-3.20.0/core/lib/libtomcrypt/src/prngs/
A Drng_get_bytes.c60 int l, acc, bits, a, b; in s_rng_ansic() local
64 acc = a = b = 0; in s_rng_ansic()
72 acc = (acc << 1) | a; in s_rng_ansic()
74 *buf++ = acc; in s_rng_ansic()
75 acc = 0; in s_rng_ansic()
/optee_os-3.20.0/lib/libmbedtls/mbedtls/include/mbedtls/
A Dpoly1305.h67 uint32_t acc[5]; /** The accumulator number. */ member

Completed in 10 milliseconds