Lines Matching refs:__u64

57 typedef	unsigned long long	__u64;  typedef
68 __u64 data; /* SENSITIVE Actual random number */
69 __u64 old_data; /* SENSITIVE Previous random number */
70 __u64 prev_time; /* SENSITIVE Previous time stamp */
71 #define DATA_SIZE_BITS ((sizeof(__u64)) * 8)
72 __u64 last_delta; /* SENSITIVE stuck test */
113 void jent_get_nstime(__u64 *out);
114 __u64 jent_rol64(__u64 word, unsigned int shift);
133 static __u64 jent_loop_shuffle(struct rand_data *ec, in jent_loop_shuffle()
136 __u64 time = 0; in jent_loop_shuffle()
137 __u64 shuffle = 0; in jent_loop_shuffle()
202 static __u64 jent_fold_time(struct rand_data *ec, __u64 time, in jent_fold_time()
203 __u64 *folded, __u64 loop_cnt) in jent_fold_time()
206 __u64 j = 0; in jent_fold_time()
207 __u64 new = 0; in jent_fold_time()
210 __u64 fold_loop_cnt = in jent_fold_time()
222 __u64 tmp = time << (DATA_SIZE_BITS - i); in jent_fold_time()
259 static unsigned int jent_memaccess(struct rand_data *ec, __u64 loop_cnt) in jent_memaccess()
263 __u64 i = 0; in jent_memaccess()
266 __u64 acc_loop_cnt = in jent_memaccess()
319 static void jent_stuck(struct rand_data *ec, __u64 current_delta) in jent_stuck()
346 static __u64 jent_measure_jitter(struct rand_data *ec) in jent_measure_jitter()
348 __u64 time = 0; in jent_measure_jitter()
349 __u64 data = 0; in jent_measure_jitter()
350 __u64 current_delta = 0; in jent_measure_jitter()
389 static __u64 jent_unbiased_bit(struct rand_data *entropy_collector) in jent_unbiased_bit()
392 __u64 a = jent_measure_jitter(entropy_collector); in jent_unbiased_bit()
393 __u64 b = jent_measure_jitter(entropy_collector); in jent_unbiased_bit()
428 __u64 u64; in jent_stir_pool()
483 __u64 data = 0; in jent_gen_entropy()
665 __u64 delta_sum = 0; in jent_entropy_init()
666 __u64 old_delta = 0; in jent_entropy_init()
696 __u64 time = 0; in jent_entropy_init()
697 __u64 time2 = 0; in jent_entropy_init()
698 __u64 folded = 0; in jent_entropy_init()
699 __u64 delta = 0; in jent_entropy_init()