Home
last modified time | relevance | path

Searched refs:hi (Results 1 – 2 of 2) sorted by relevance

/net-tools-3.6.0/mbedtls-2.4.0/library/
Dtiming.c99 unsigned long lo, hi; in mbedtls_timing_hardclock() local
100 asm volatile( "rdtsc" : "=a" (lo), "=d" (hi) ); in mbedtls_timing_hardclock()
113 unsigned long lo, hi; in mbedtls_timing_hardclock() local
114 asm volatile( "rdtsc" : "=a" (lo), "=d" (hi) ); in mbedtls_timing_hardclock()
115 return( lo | ( hi << 32 ) ); in mbedtls_timing_hardclock()
Dgcm.c104 uint64_t hi, lo; in gcm_gen_table() local
114 GET_UINT32_BE( hi, h, 0 ); in gcm_gen_table()
116 vh = (uint64_t) hi << 32 | lo; in gcm_gen_table()
118 GET_UINT32_BE( hi, h, 8 ); in gcm_gen_table()
120 vl = (uint64_t) hi << 32 | lo; in gcm_gen_table()
214 unsigned char lo, hi, rem; in gcm_mult() local
239 hi = x[i] >> 4; in gcm_mult()
256 zh ^= ctx->HH[hi]; in gcm_mult()
257 zl ^= ctx->HL[hi]; in gcm_mult()