Lines Matching refs:c
41 u32 c; in poly1305_core_blocks() local
91 c = (u32)(d0 >> 26); in poly1305_core_blocks()
93 d1 += c; in poly1305_core_blocks()
94 c = (u32)(d1 >> 26); in poly1305_core_blocks()
96 d2 += c; in poly1305_core_blocks()
97 c = (u32)(d2 >> 26); in poly1305_core_blocks()
99 d3 += c; in poly1305_core_blocks()
100 c = (u32)(d3 >> 26); in poly1305_core_blocks()
102 d4 += c; in poly1305_core_blocks()
103 c = (u32)(d4 >> 26); in poly1305_core_blocks()
105 h0 += c * 5; in poly1305_core_blocks()
106 c = (h0 >> 26); in poly1305_core_blocks()
108 h1 += c; in poly1305_core_blocks()
125 u32 h0, h1, h2, h3, h4, c; in poly1305_core_emit() local
137 c = h1 >> 26; in poly1305_core_emit()
139 h2 += c; in poly1305_core_emit()
140 c = h2 >> 26; in poly1305_core_emit()
142 h3 += c; in poly1305_core_emit()
143 c = h3 >> 26; in poly1305_core_emit()
145 h4 += c; in poly1305_core_emit()
146 c = h4 >> 26; in poly1305_core_emit()
148 h0 += c * 5; in poly1305_core_emit()
149 c = h0 >> 26; in poly1305_core_emit()
151 h1 += c; in poly1305_core_emit()
155 c = g0 >> 26; in poly1305_core_emit()
157 g1 = h1 + c; in poly1305_core_emit()
158 c = g1 >> 26; in poly1305_core_emit()
160 g2 = h2 + c; in poly1305_core_emit()
161 c = g2 >> 26; in poly1305_core_emit()
163 g3 = h3 + c; in poly1305_core_emit()
164 c = g3 >> 26; in poly1305_core_emit()
166 g4 = h4 + c - (1UL << 26); in poly1305_core_emit()