Searched refs:acc (Results 1 – 6 of 6) sorted by relevance
164 register unsigned long acc; variable190 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);
55 static uint16_t acc; in REGISTER_TIME_SOURCE() local58 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()
115 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 …]
666 unsigned char acc[MBEDTLS_ENTROPY_BLOCK_SIZE] = { 0 }; in mbedtls_entropy_self_test() local702 acc[j] |= buf[j]; in mbedtls_entropy_self_test()707 if( acc[j] == 0 ) in mbedtls_entropy_self_test()
60 int l, acc, bits, a, b; in s_rng_ansic() local64 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()
67 uint32_t acc[5]; /** The accumulator number. */ member
Completed in 10 milliseconds