Lines Matching refs:le32dec

73 	x0 = y0 = le32dec(c + 0);  in chacha_core_ref()
74 x1 = y1 = le32dec(c + 4); in chacha_core_ref()
75 x2 = y2 = le32dec(c + 8); in chacha_core_ref()
76 x3 = y3 = le32dec(c + 12); in chacha_core_ref()
77 x4 = y4 = le32dec(k + 0); in chacha_core_ref()
78 x5 = y5 = le32dec(k + 4); in chacha_core_ref()
79 x6 = y6 = le32dec(k + 8); in chacha_core_ref()
80 x7 = y7 = le32dec(k + 12); in chacha_core_ref()
81 x8 = y8 = le32dec(k + 16); in chacha_core_ref()
82 x9 = y9 = le32dec(k + 20); in chacha_core_ref()
83 x10 = y10 = le32dec(k + 24); in chacha_core_ref()
84 x11 = y11 = le32dec(k + 28); in chacha_core_ref()
85 x12 = y12 = le32dec(in + 0); in chacha_core_ref()
86 x13 = y13 = le32dec(in + 4); in chacha_core_ref()
87 x14 = y14 = le32dec(in + 8); in chacha_core_ref()
88 x15 = y15 = le32dec(in + 12); in chacha_core_ref()
133 x0 = le32dec(c + 0); in chacha_stream_ref()
134 x1 = le32dec(c + 4); in chacha_stream_ref()
135 x2 = le32dec(c + 8); in chacha_stream_ref()
136 x3 = le32dec(c + 12); in chacha_stream_ref()
137 x4 = le32dec(k + 0); in chacha_stream_ref()
138 x5 = le32dec(k + 4); in chacha_stream_ref()
139 x6 = le32dec(k + 8); in chacha_stream_ref()
140 x7 = le32dec(k + 12); in chacha_stream_ref()
141 x8 = le32dec(k + 16); in chacha_stream_ref()
142 x9 = le32dec(k + 20); in chacha_stream_ref()
143 x10 = le32dec(k + 24); in chacha_stream_ref()
144 x11 = le32dec(k + 28); in chacha_stream_ref()
146 x13 = le32dec(nonce + 0); in chacha_stream_ref()
147 x14 = le32dec(nonce + 4); in chacha_stream_ref()
148 x15 = le32dec(nonce + 8); in chacha_stream_ref()
256 x0 = le32dec(c + 0); in chacha_stream_xor_ref()
257 x1 = le32dec(c + 4); in chacha_stream_xor_ref()
258 x2 = le32dec(c + 8); in chacha_stream_xor_ref()
259 x3 = le32dec(c + 12); in chacha_stream_xor_ref()
260 x4 = le32dec(k + 0); in chacha_stream_xor_ref()
261 x5 = le32dec(k + 4); in chacha_stream_xor_ref()
262 x6 = le32dec(k + 8); in chacha_stream_xor_ref()
263 x7 = le32dec(k + 12); in chacha_stream_xor_ref()
264 x8 = le32dec(k + 16); in chacha_stream_xor_ref()
265 x9 = le32dec(k + 20); in chacha_stream_xor_ref()
266 x10 = le32dec(k + 24); in chacha_stream_xor_ref()
267 x11 = le32dec(k + 28); in chacha_stream_xor_ref()
269 x13 = le32dec(nonce + 0); in chacha_stream_xor_ref()
270 x14 = le32dec(nonce + 4); in chacha_stream_xor_ref()
271 x15 = le32dec(nonce + 8); in chacha_stream_xor_ref()
300 le32enc(s + 0, (x0 + y0) ^ le32dec(p + 0)); in chacha_stream_xor_ref()
301 le32enc(s + 4, (x1 + y1) ^ le32dec(p + 4)); in chacha_stream_xor_ref()
302 le32enc(s + 8, (x2 + y2) ^ le32dec(p + 8)); in chacha_stream_xor_ref()
303 le32enc(s + 12, (x3 + y3) ^ le32dec(p + 12)); in chacha_stream_xor_ref()
304 le32enc(s + 16, (x4 + y4) ^ le32dec(p + 16)); in chacha_stream_xor_ref()
305 le32enc(s + 20, (x5 + y5) ^ le32dec(p + 20)); in chacha_stream_xor_ref()
306 le32enc(s + 24, (x6 + y6) ^ le32dec(p + 24)); in chacha_stream_xor_ref()
307 le32enc(s + 28, (x7 + y7) ^ le32dec(p + 28)); in chacha_stream_xor_ref()
308 le32enc(s + 32, (x8 + y8) ^ le32dec(p + 32)); in chacha_stream_xor_ref()
309 le32enc(s + 36, (x9 + y9) ^ le32dec(p + 36)); in chacha_stream_xor_ref()
310 le32enc(s + 40, (x10 + y10) ^ le32dec(p + 40)); in chacha_stream_xor_ref()
311 le32enc(s + 44, (x11 + y11) ^ le32dec(p + 44)); in chacha_stream_xor_ref()
312 le32enc(s + 48, (x12 + y12) ^ le32dec(p + 48)); in chacha_stream_xor_ref()
313 le32enc(s + 52, (x13 + y13) ^ le32dec(p + 52)); in chacha_stream_xor_ref()
314 le32enc(s + 56, (x14 + y14) ^ le32dec(p + 56)); in chacha_stream_xor_ref()
315 le32enc(s + 60, (x15 + y15) ^ le32dec(p + 60)); in chacha_stream_xor_ref()
364 le32enc(s + i, le32dec(p + i) ^ le32dec(buf + i)); in chacha_stream_xor_ref()
378 y0 = le32dec(c + 0); in hchacha_ref()
379 y1 = le32dec(c + 4); in hchacha_ref()
380 y2 = le32dec(c + 8); in hchacha_ref()
381 y3 = le32dec(c + 12); in hchacha_ref()
382 y4 = le32dec(k + 0); in hchacha_ref()
383 y5 = le32dec(k + 4); in hchacha_ref()
384 y6 = le32dec(k + 8); in hchacha_ref()
385 y7 = le32dec(k + 12); in hchacha_ref()
386 y8 = le32dec(k + 16); in hchacha_ref()
387 y9 = le32dec(k + 20); in hchacha_ref()
388 y10 = le32dec(k + 24); in hchacha_ref()
389 y11 = le32dec(k + 28); in hchacha_ref()
390 y12 = le32dec(in + 0); in hchacha_ref()
391 y13 = le32dec(in + 4); in hchacha_ref()
392 y14 = le32dec(in + 8); in hchacha_ref()
393 y15 = le32dec(in + 12); in hchacha_ref()