Lines Matching defs:__u64
57 typedef unsigned long long __u64;
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 */
242 static inline __u64 jent_delta(__u64 prev, __u64 next)
244 #define JENT_UINT64_MAX (__u64)(~((__u64) 0))
264 static int jent_stuck(struct rand_data *ec, __u64 current_delta)
266 __u64 delta2 = jent_delta(ec->last_delta, current_delta);
267 __u64 delta3 = jent_delta(ec->last_delta2, delta2);
324 static __u64 jent_loop_shuffle(struct rand_data *ec,
327 __u64 time = 0;
328 __u64 shuffle = 0;
380 static void jent_lfsr_time(struct rand_data *ec, __u64 time, __u64 loop_cnt,
384 __u64 j = 0;
385 __u64 new = 0;
388 __u64 fold_loop_cnt =
400 __u64 tmp = time << (DATA_SIZE_BITS - i);
461 static void jent_memaccess(struct rand_data *ec, __u64 loop_cnt)
464 __u64 i = 0;
467 __u64 acc_loop_cnt =
517 __u64 time = 0;
518 __u64 current_delta = 0;
700 __u64 delta_sum = 0;
701 __u64 old_delta = 0;
738 __u64 time = 0;
739 __u64 time2 = 0;
740 __u64 delta = 0;