Home | History | Annotate | Download | only in kernels

Lines Matching defs:round

73   // Performs a single round of the Threefry2x32 algorithm, with a rotation
75 auto round = [builder](ThreeFry2x32State v, int rotation) {
84 x = round(x, rotations[0]);
85 x = round(x, rotations[1]);
86 x = round(x, rotations[2]);
87 x = round(x, rotations[3]);
91 x = round(x, rotations[4]);
92 x = round(x, rotations[5]);
93 x = round(x, rotations[6]);
94 x = round(x, rotations[7]);
98 x = round(x, rotations[0]);
99 x = round(x, rotations[1]);
100 x = round(x, rotations[2]);
101 x = round(x, rotations[3]);
105 x = round(x, rotations[4]);
106 x = round(x, rotations[5]);
107 x = round(x, rotations[6]);
108 x = round(x, rotations[7]);
112 x = round(x, rotations[0]);
113 x = round(x, rotations[1]);
114 x = round(x, rotations[2]);
115 x = round(x, rotations[3]);