Symbol: U64
crypto/openssl/crypto/aes/aes_core.c
241
y = ((x & U64(0xFEFEFEFEFEFEFEFE)) >> 1) | ((x & U64(0x0101010101010101)) << 7);
crypto/openssl/crypto/aes/aes_core.c
242
x &= U64(0xDDDDDDDDDDDDDDDD);
crypto/openssl/crypto/aes/aes_core.c
243
x ^= y & U64(0x5757575757575757);
crypto/openssl/crypto/aes/aes_core.c
244
y = ((y & U64(0xFEFEFEFEFEFEFEFE)) >> 1) | ((y & U64(0x0101010101010101)) << 7);
crypto/openssl/crypto/aes/aes_core.c
245
x ^= y & U64(0x1C1C1C1C1C1C1C1C);
crypto/openssl/crypto/aes/aes_core.c
246
y = ((y & U64(0xFEFEFEFEFEFEFEFE)) >> 1) | ((y & U64(0x0101010101010101)) << 7);
crypto/openssl/crypto/aes/aes_core.c
247
x ^= y & U64(0x4A4A4A4A4A4A4A4A);
crypto/openssl/crypto/aes/aes_core.c
248
y = ((y & U64(0xFEFEFEFEFEFEFEFE)) >> 1) | ((y & U64(0x0101010101010101)) << 7);
crypto/openssl/crypto/aes/aes_core.c
249
x ^= y & U64(0x4242424242424242);
crypto/openssl/crypto/aes/aes_core.c
250
y = ((y & U64(0xFEFEFEFEFEFEFEFE)) >> 1) | ((y & U64(0x0101010101010101)) << 7);
crypto/openssl/crypto/aes/aes_core.c
251
x ^= y & U64(0x6464646464646464);
crypto/openssl/crypto/aes/aes_core.c
252
y = ((y & U64(0xFEFEFEFEFEFEFEFE)) >> 1) | ((y & U64(0x0101010101010101)) << 7);
crypto/openssl/crypto/aes/aes_core.c
253
x ^= y & U64(0xE0E0E0E0E0E0E0E0);
crypto/openssl/crypto/aes/aes_core.c
255
a1 ^= (x & U64(0xF0F0F0F0F0F0F0F0)) >> 4;
crypto/openssl/crypto/aes/aes_core.c
256
a2 = ((x & U64(0xCCCCCCCCCCCCCCCC)) >> 2) | ((x & U64(0x3333333333333333)) << 2);
crypto/openssl/crypto/aes/aes_core.c
258
a3 ^= (a3 & U64(0xAAAAAAAAAAAAAAAA)) >> 1;
crypto/openssl/crypto/aes/aes_core.c
259
a3 ^= (((x << 1) & a1) ^ ((a1 << 1) & x)) & U64(0xAAAAAAAAAAAAAAAA);
crypto/openssl/crypto/aes/aes_core.c
261
a4 ^= (a4 & U64(0xAAAAAAAAAAAAAAAA)) >> 1;
crypto/openssl/crypto/aes/aes_core.c
262
a4 ^= (((a2 << 1) & a1) ^ ((a1 << 1) & a2)) & U64(0xAAAAAAAAAAAAAAAA);
crypto/openssl/crypto/aes/aes_core.c
263
a5 = (a3 & U64(0xCCCCCCCCCCCCCCCC)) >> 2;
crypto/openssl/crypto/aes/aes_core.c
264
a3 ^= ((a4 << 2) ^ a4) & U64(0xCCCCCCCCCCCCCCCC);
crypto/openssl/crypto/aes/aes_core.c
265
a4 = a5 & U64(0x2222222222222222);
crypto/openssl/crypto/aes/aes_core.c
267
a4 ^= (a5 << 1) & U64(0x2222222222222222);
crypto/openssl/crypto/aes/aes_core.c
269
a5 = a3 & U64(0xA0A0A0A0A0A0A0A0);
crypto/openssl/crypto/aes/aes_core.c
271
a5 ^= (a3 << 1) & U64(0xA0A0A0A0A0A0A0A0);
crypto/openssl/crypto/aes/aes_core.c
272
a4 = a5 & U64(0xC0C0C0C0C0C0C0C0);
crypto/openssl/crypto/aes/aes_core.c
274
a4 ^= (a5 << 2) & U64(0xC0C0C0C0C0C0C0C0);
crypto/openssl/crypto/aes/aes_core.c
275
a5 = a6 & U64(0x2020202020202020);
crypto/openssl/crypto/aes/aes_core.c
277
a5 ^= (a6 << 1) & U64(0x2020202020202020);
crypto/openssl/crypto/aes/aes_core.c
280
a3 &= U64(0x0F0F0F0F0F0F0F0F);
crypto/openssl/crypto/aes/aes_core.c
282
a2 ^= (a3 & U64(0x0C0C0C0C0C0C0C0C)) >> 2;
crypto/openssl/crypto/aes/aes_core.c
284
a4 ^= (a4 & U64(0x0A0A0A0A0A0A0A0A)) >> 1;
crypto/openssl/crypto/aes/aes_core.c
285
a4 ^= (((a3 << 1) & a2) ^ ((a2 << 1) & a3)) & U64(0x0A0A0A0A0A0A0A0A);
crypto/openssl/crypto/aes/aes_core.c
286
a5 = a4 & U64(0x0808080808080808);
crypto/openssl/crypto/aes/aes_core.c
288
a5 ^= (a4 << 1) & U64(0x0808080808080808);
crypto/openssl/crypto/aes/aes_core.c
290
a4 &= U64(0x0303030303030303);
crypto/openssl/crypto/aes/aes_core.c
291
a4 ^= (a4 & U64(0x0202020202020202)) >> 1;
crypto/openssl/crypto/aes/aes_core.c
294
a3 ^= (a3 & U64(0x0A0A0A0A0A0A0A0A)) >> 1;
crypto/openssl/crypto/aes/aes_core.c
295
a3 ^= (((a2 << 1) & a4) ^ ((a4 << 1) & a2)) & U64(0x0A0A0A0A0A0A0A0A);
crypto/openssl/crypto/aes/aes_core.c
297
a2 = ((a1 & U64(0xCCCCCCCCCCCCCCCC)) >> 2) | ((a1 & U64(0x3333333333333333)) << 2);
crypto/openssl/crypto/aes/aes_core.c
299
x ^= (x & U64(0xAAAAAAAAAAAAAAAA)) >> 1;
crypto/openssl/crypto/aes/aes_core.c
300
x ^= (((a1 << 1) & a3) ^ ((a3 << 1) & a1)) & U64(0xAAAAAAAAAAAAAAAA);
crypto/openssl/crypto/aes/aes_core.c
302
a4 ^= (a4 & U64(0xAAAAAAAAAAAAAAAA)) >> 1;
crypto/openssl/crypto/aes/aes_core.c
303
a4 ^= (((a2 << 1) & a3) ^ ((a3 << 1) & a2)) & U64(0xAAAAAAAAAAAAAAAA);
crypto/openssl/crypto/aes/aes_core.c
304
a5 = (x & U64(0xCCCCCCCCCCCCCCCC)) >> 2;
crypto/openssl/crypto/aes/aes_core.c
305
x ^= ((a4 << 2) ^ a4) & U64(0xCCCCCCCCCCCCCCCC);
crypto/openssl/crypto/aes/aes_core.c
306
a4 = a5 & U64(0x2222222222222222);
crypto/openssl/crypto/aes/aes_core.c
308
a4 ^= (a5 << 1) & U64(0x2222222222222222);
crypto/openssl/crypto/aes/aes_core.c
310
y = ((x & U64(0xFEFEFEFEFEFEFEFE)) >> 1) | ((x & U64(0x0101010101010101)) << 7);
crypto/openssl/crypto/aes/aes_core.c
311
x &= U64(0x3939393939393939);
crypto/openssl/crypto/aes/aes_core.c
312
x ^= y & U64(0x3F3F3F3F3F3F3F3F);
crypto/openssl/crypto/aes/aes_core.c
313
y = ((y & U64(0xFCFCFCFCFCFCFCFC)) >> 2) | ((y & U64(0x0303030303030303)) << 6);
crypto/openssl/crypto/aes/aes_core.c
314
x ^= y & U64(0x9797979797979797);
crypto/openssl/crypto/aes/aes_core.c
315
y = ((y & U64(0xFEFEFEFEFEFEFEFE)) >> 1) | ((y & U64(0x0101010101010101)) << 7);
crypto/openssl/crypto/aes/aes_core.c
316
x ^= y & U64(0x9B9B9B9B9B9B9B9B);
crypto/openssl/crypto/aes/aes_core.c
317
y = ((y & U64(0xFEFEFEFEFEFEFEFE)) >> 1) | ((y & U64(0x0101010101010101)) << 7);
crypto/openssl/crypto/aes/aes_core.c
318
x ^= y & U64(0x3C3C3C3C3C3C3C3C);
crypto/openssl/crypto/aes/aes_core.c
319
y = ((y & U64(0xFEFEFEFEFEFEFEFE)) >> 1) | ((y & U64(0x0101010101010101)) << 7);
crypto/openssl/crypto/aes/aes_core.c
320
x ^= y & U64(0xDDDDDDDDDDDDDDDD);
crypto/openssl/crypto/aes/aes_core.c
321
y = ((y & U64(0xFEFEFEFEFEFEFEFE)) >> 1) | ((y & U64(0x0101010101010101)) << 7);
crypto/openssl/crypto/aes/aes_core.c
322
x ^= y & U64(0x7272727272727272);
crypto/openssl/crypto/aes/aes_core.c
323
x ^= U64(0x6363636363636363);
crypto/openssl/crypto/aes/aes_core.c
335
x ^= U64(0x6363636363636363);
crypto/openssl/crypto/aes/aes_core.c
336
y = ((x & U64(0xFEFEFEFEFEFEFEFE)) >> 1) | ((x & U64(0x0101010101010101)) << 7);
crypto/openssl/crypto/aes/aes_core.c
337
x &= U64(0xFDFDFDFDFDFDFDFD);
crypto/openssl/crypto/aes/aes_core.c
338
x ^= y & U64(0x5E5E5E5E5E5E5E5E);
crypto/openssl/crypto/aes/aes_core.c
339
y = ((y & U64(0xFEFEFEFEFEFEFEFE)) >> 1) | ((y & U64(0x0101010101010101)) << 7);
crypto/openssl/crypto/aes/aes_core.c
340
x ^= y & U64(0xF3F3F3F3F3F3F3F3);
crypto/openssl/crypto/aes/aes_core.c
341
y = ((y & U64(0xFEFEFEFEFEFEFEFE)) >> 1) | ((y & U64(0x0101010101010101)) << 7);
crypto/openssl/crypto/aes/aes_core.c
342
x ^= y & U64(0xF5F5F5F5F5F5F5F5);
crypto/openssl/crypto/aes/aes_core.c
343
y = ((y & U64(0xFEFEFEFEFEFEFEFE)) >> 1) | ((y & U64(0x0101010101010101)) << 7);
crypto/openssl/crypto/aes/aes_core.c
344
x ^= y & U64(0x7878787878787878);
crypto/openssl/crypto/aes/aes_core.c
345
y = ((y & U64(0xFEFEFEFEFEFEFEFE)) >> 1) | ((y & U64(0x0101010101010101)) << 7);
crypto/openssl/crypto/aes/aes_core.c
346
x ^= y & U64(0x7777777777777777);
crypto/openssl/crypto/aes/aes_core.c
347
y = ((y & U64(0xFEFEFEFEFEFEFEFE)) >> 1) | ((y & U64(0x0101010101010101)) << 7);
crypto/openssl/crypto/aes/aes_core.c
348
x ^= y & U64(0x1515151515151515);
crypto/openssl/crypto/aes/aes_core.c
349
y = ((y & U64(0xFEFEFEFEFEFEFEFE)) >> 1) | ((y & U64(0x0101010101010101)) << 7);
crypto/openssl/crypto/aes/aes_core.c
350
x ^= y & U64(0xA5A5A5A5A5A5A5A5);
crypto/openssl/crypto/aes/aes_core.c
352
a1 ^= (x & U64(0xF0F0F0F0F0F0F0F0)) >> 4;
crypto/openssl/crypto/aes/aes_core.c
353
a2 = ((x & U64(0xCCCCCCCCCCCCCCCC)) >> 2) | ((x & U64(0x3333333333333333)) << 2);
crypto/openssl/crypto/aes/aes_core.c
355
a3 ^= (a3 & U64(0xAAAAAAAAAAAAAAAA)) >> 1;
crypto/openssl/crypto/aes/aes_core.c
356
a3 ^= (((x << 1) & a1) ^ ((a1 << 1) & x)) & U64(0xAAAAAAAAAAAAAAAA);
crypto/openssl/crypto/aes/aes_core.c
358
a4 ^= (a4 & U64(0xAAAAAAAAAAAAAAAA)) >> 1;
crypto/openssl/crypto/aes/aes_core.c
359
a4 ^= (((a2 << 1) & a1) ^ ((a1 << 1) & a2)) & U64(0xAAAAAAAAAAAAAAAA);
crypto/openssl/crypto/aes/aes_core.c
360
a5 = (a3 & U64(0xCCCCCCCCCCCCCCCC)) >> 2;
crypto/openssl/crypto/aes/aes_core.c
361
a3 ^= ((a4 << 2) ^ a4) & U64(0xCCCCCCCCCCCCCCCC);
crypto/openssl/crypto/aes/aes_core.c
362
a4 = a5 & U64(0x2222222222222222);
crypto/openssl/crypto/aes/aes_core.c
364
a4 ^= (a5 << 1) & U64(0x2222222222222222);
crypto/openssl/crypto/aes/aes_core.c
366
a5 = a3 & U64(0xA0A0A0A0A0A0A0A0);
crypto/openssl/crypto/aes/aes_core.c
368
a5 ^= (a3 << 1) & U64(0xA0A0A0A0A0A0A0A0);
crypto/openssl/crypto/aes/aes_core.c
369
a4 = a5 & U64(0xC0C0C0C0C0C0C0C0);
crypto/openssl/crypto/aes/aes_core.c
371
a4 ^= (a5 << 2) & U64(0xC0C0C0C0C0C0C0C0);
crypto/openssl/crypto/aes/aes_core.c
372
a5 = a6 & U64(0x2020202020202020);
crypto/openssl/crypto/aes/aes_core.c
374
a5 ^= (a6 << 1) & U64(0x2020202020202020);
crypto/openssl/crypto/aes/aes_core.c
377
a3 &= U64(0x0F0F0F0F0F0F0F0F);
crypto/openssl/crypto/aes/aes_core.c
379
a2 ^= (a3 & U64(0x0C0C0C0C0C0C0C0C)) >> 2;
crypto/openssl/crypto/aes/aes_core.c
381
a4 ^= (a4 & U64(0x0A0A0A0A0A0A0A0A)) >> 1;
crypto/openssl/crypto/aes/aes_core.c
382
a4 ^= (((a3 << 1) & a2) ^ ((a2 << 1) & a3)) & U64(0x0A0A0A0A0A0A0A0A);
crypto/openssl/crypto/aes/aes_core.c
383
a5 = a4 & U64(0x0808080808080808);
crypto/openssl/crypto/aes/aes_core.c
385
a5 ^= (a4 << 1) & U64(0x0808080808080808);
crypto/openssl/crypto/aes/aes_core.c
387
a4 &= U64(0x0303030303030303);
crypto/openssl/crypto/aes/aes_core.c
388
a4 ^= (a4 & U64(0x0202020202020202)) >> 1;
crypto/openssl/crypto/aes/aes_core.c
391
a3 ^= (a3 & U64(0x0A0A0A0A0A0A0A0A)) >> 1;
crypto/openssl/crypto/aes/aes_core.c
392
a3 ^= (((a2 << 1) & a4) ^ ((a4 << 1) & a2)) & U64(0x0A0A0A0A0A0A0A0A);
crypto/openssl/crypto/aes/aes_core.c
394
a2 = ((a1 & U64(0xCCCCCCCCCCCCCCCC)) >> 2) | ((a1 & U64(0x3333333333333333)) << 2);
crypto/openssl/crypto/aes/aes_core.c
396
x ^= (x & U64(0xAAAAAAAAAAAAAAAA)) >> 1;
crypto/openssl/crypto/aes/aes_core.c
397
x ^= (((a1 << 1) & a3) ^ ((a3 << 1) & a1)) & U64(0xAAAAAAAAAAAAAAAA);
crypto/openssl/crypto/aes/aes_core.c
399
a4 ^= (a4 & U64(0xAAAAAAAAAAAAAAAA)) >> 1;
crypto/openssl/crypto/aes/aes_core.c
400
a4 ^= (((a2 << 1) & a3) ^ ((a3 << 1) & a2)) & U64(0xAAAAAAAAAAAAAAAA);
crypto/openssl/crypto/aes/aes_core.c
401
a5 = (x & U64(0xCCCCCCCCCCCCCCCC)) >> 2;
crypto/openssl/crypto/aes/aes_core.c
402
x ^= ((a4 << 2) ^ a4) & U64(0xCCCCCCCCCCCCCCCC);
crypto/openssl/crypto/aes/aes_core.c
403
a4 = a5 & U64(0x2222222222222222);
crypto/openssl/crypto/aes/aes_core.c
405
a4 ^= (a5 << 1) & U64(0x2222222222222222);
crypto/openssl/crypto/aes/aes_core.c
407
y = ((x & U64(0xFEFEFEFEFEFEFEFE)) >> 1) | ((x & U64(0x0101010101010101)) << 7);
crypto/openssl/crypto/aes/aes_core.c
408
x &= U64(0xB5B5B5B5B5B5B5B5);
crypto/openssl/crypto/aes/aes_core.c
409
x ^= y & U64(0x4040404040404040);
crypto/openssl/crypto/aes/aes_core.c
410
y = ((y & U64(0xFEFEFEFEFEFEFEFE)) >> 1) | ((y & U64(0x0101010101010101)) << 7);
crypto/openssl/crypto/aes/aes_core.c
411
x ^= y & U64(0x8080808080808080);
crypto/openssl/crypto/aes/aes_core.c
412
y = ((y & U64(0xFEFEFEFEFEFEFEFE)) >> 1) | ((y & U64(0x0101010101010101)) << 7);
crypto/openssl/crypto/aes/aes_core.c
413
x ^= y & U64(0x1616161616161616);
crypto/openssl/crypto/aes/aes_core.c
414
y = ((y & U64(0xFEFEFEFEFEFEFEFE)) >> 1) | ((y & U64(0x0101010101010101)) << 7);
crypto/openssl/crypto/aes/aes_core.c
415
x ^= y & U64(0xEBEBEBEBEBEBEBEB);
crypto/openssl/crypto/aes/aes_core.c
416
y = ((y & U64(0xFEFEFEFEFEFEFEFE)) >> 1) | ((y & U64(0x0101010101010101)) << 7);
crypto/openssl/crypto/aes/aes_core.c
417
x ^= y & U64(0x9797979797979797);
crypto/openssl/crypto/aes/aes_core.c
418
y = ((y & U64(0xFEFEFEFEFEFEFEFE)) >> 1) | ((y & U64(0x0101010101010101)) << 7);
crypto/openssl/crypto/aes/aes_core.c
419
x ^= y & U64(0xFBFBFBFBFBFBFBFB);
crypto/openssl/crypto/aes/aes_core.c
420
y = ((y & U64(0xFEFEFEFEFEFEFEFE)) >> 1) | ((y & U64(0x0101010101010101)) << 7);
crypto/openssl/crypto/aes/aes_core.c
421
x ^= y & U64(0x7D7D7D7D7D7D7D7D);
crypto/openssl/crypto/aes/aes_core.c
472
s.d ^= ((s.d & U64(0xFFFF0000FFFF0000)) >> 16)
crypto/openssl/crypto/aes/aes_core.c
473
| ((s.d & U64(0x0000FFFF0000FFFF)) << 16);
crypto/openssl/crypto/aes/aes_core.c
474
s.d ^= ((s.d & U64(0xFF00FF00FF00FF00)) >> 8)
crypto/openssl/crypto/aes/aes_core.c
475
| ((s.d & U64(0x00FF00FF00FF00FF)) << 8);
crypto/openssl/crypto/aes/aes_core.c
500
s.d ^= ((s.d & U64(0xFFFF0000FFFF0000)) >> 16)
crypto/openssl/crypto/aes/aes_core.c
501
| ((s.d & U64(0x0000FFFF0000FFFF)) << 16);
crypto/openssl/crypto/aes/aes_core.c
502
s.d ^= ((s.d & U64(0xFF00FF00FF00FF00)) >> 8)
crypto/openssl/crypto/aes/aes_core.c
503
| ((s.d & U64(0x00FF00FF00FF00FF)) << 8);
crypto/openssl/crypto/aes/aes_core.c
516
s1.d ^= ((s1.d & U64(0xFFFF0000FFFF0000)) >> 16)
crypto/openssl/crypto/aes/aes_core.c
517
| ((s1.d & U64(0x0000FFFF0000FFFF)) << 16);
crypto/openssl/crypto/aes/aes_core.c
520
s1.d ^= ((s1.d & U64(0xFF00FF00FF00FF00)) >> 8)
crypto/openssl/crypto/aes/aes_core.c
521
| ((s1.d & U64(0x00FF00FF00FF00FF)) << 8);
crypto/openssl/crypto/aes/aes_core.c
91
b = a & U64(0x8080808080808080);
crypto/openssl/crypto/aes/aes_core.c
94
b &= U64(0x1B1B1B1B1B1B1B1B);
crypto/openssl/crypto/aes/aes_x86core.c
133
U64(0xa56363c6a56363c6), U64(0x847c7cf8847c7cf8),
crypto/openssl/crypto/aes/aes_x86core.c
134
U64(0x997777ee997777ee), U64(0x8d7b7bf68d7b7bf6),
crypto/openssl/crypto/aes/aes_x86core.c
135
U64(0x0df2f2ff0df2f2ff), U64(0xbd6b6bd6bd6b6bd6),
crypto/openssl/crypto/aes/aes_x86core.c
136
U64(0xb16f6fdeb16f6fde), U64(0x54c5c59154c5c591),
crypto/openssl/crypto/aes/aes_x86core.c
137
U64(0x5030306050303060), U64(0x0301010203010102),
crypto/openssl/crypto/aes/aes_x86core.c
138
U64(0xa96767cea96767ce), U64(0x7d2b2b567d2b2b56),
crypto/openssl/crypto/aes/aes_x86core.c
139
U64(0x19fefee719fefee7), U64(0x62d7d7b562d7d7b5),
crypto/openssl/crypto/aes/aes_x86core.c
140
U64(0xe6abab4de6abab4d), U64(0x9a7676ec9a7676ec),
crypto/openssl/crypto/aes/aes_x86core.c
141
U64(0x45caca8f45caca8f), U64(0x9d82821f9d82821f),
crypto/openssl/crypto/aes/aes_x86core.c
142
U64(0x40c9c98940c9c989), U64(0x877d7dfa877d7dfa),
crypto/openssl/crypto/aes/aes_x86core.c
143
U64(0x15fafaef15fafaef), U64(0xeb5959b2eb5959b2),
crypto/openssl/crypto/aes/aes_x86core.c
144
U64(0xc947478ec947478e), U64(0x0bf0f0fb0bf0f0fb),
crypto/openssl/crypto/aes/aes_x86core.c
145
U64(0xecadad41ecadad41), U64(0x67d4d4b367d4d4b3),
crypto/openssl/crypto/aes/aes_x86core.c
146
U64(0xfda2a25ffda2a25f), U64(0xeaafaf45eaafaf45),
crypto/openssl/crypto/aes/aes_x86core.c
147
U64(0xbf9c9c23bf9c9c23), U64(0xf7a4a453f7a4a453),
crypto/openssl/crypto/aes/aes_x86core.c
148
U64(0x967272e4967272e4), U64(0x5bc0c09b5bc0c09b),
crypto/openssl/crypto/aes/aes_x86core.c
149
U64(0xc2b7b775c2b7b775), U64(0x1cfdfde11cfdfde1),
crypto/openssl/crypto/aes/aes_x86core.c
150
U64(0xae93933dae93933d), U64(0x6a26264c6a26264c),
crypto/openssl/crypto/aes/aes_x86core.c
151
U64(0x5a36366c5a36366c), U64(0x413f3f7e413f3f7e),
crypto/openssl/crypto/aes/aes_x86core.c
152
U64(0x02f7f7f502f7f7f5), U64(0x4fcccc834fcccc83),
crypto/openssl/crypto/aes/aes_x86core.c
153
U64(0x5c3434685c343468), U64(0xf4a5a551f4a5a551),
crypto/openssl/crypto/aes/aes_x86core.c
154
U64(0x34e5e5d134e5e5d1), U64(0x08f1f1f908f1f1f9),
crypto/openssl/crypto/aes/aes_x86core.c
155
U64(0x937171e2937171e2), U64(0x73d8d8ab73d8d8ab),
crypto/openssl/crypto/aes/aes_x86core.c
156
U64(0x5331316253313162), U64(0x3f15152a3f15152a),
crypto/openssl/crypto/aes/aes_x86core.c
157
U64(0x0c0404080c040408), U64(0x52c7c79552c7c795),
crypto/openssl/crypto/aes/aes_x86core.c
158
U64(0x6523234665232346), U64(0x5ec3c39d5ec3c39d),
crypto/openssl/crypto/aes/aes_x86core.c
159
U64(0x2818183028181830), U64(0xa1969637a1969637),
crypto/openssl/crypto/aes/aes_x86core.c
160
U64(0x0f05050a0f05050a), U64(0xb59a9a2fb59a9a2f),
crypto/openssl/crypto/aes/aes_x86core.c
161
U64(0x0907070e0907070e), U64(0x3612122436121224),
crypto/openssl/crypto/aes/aes_x86core.c
162
U64(0x9b80801b9b80801b), U64(0x3de2e2df3de2e2df),
crypto/openssl/crypto/aes/aes_x86core.c
163
U64(0x26ebebcd26ebebcd), U64(0x6927274e6927274e),
crypto/openssl/crypto/aes/aes_x86core.c
164
U64(0xcdb2b27fcdb2b27f), U64(0x9f7575ea9f7575ea),
crypto/openssl/crypto/aes/aes_x86core.c
165
U64(0x1b0909121b090912), U64(0x9e83831d9e83831d),
crypto/openssl/crypto/aes/aes_x86core.c
166
U64(0x742c2c58742c2c58), U64(0x2e1a1a342e1a1a34),
crypto/openssl/crypto/aes/aes_x86core.c
167
U64(0x2d1b1b362d1b1b36), U64(0xb26e6edcb26e6edc),
crypto/openssl/crypto/aes/aes_x86core.c
168
U64(0xee5a5ab4ee5a5ab4), U64(0xfba0a05bfba0a05b),
crypto/openssl/crypto/aes/aes_x86core.c
169
U64(0xf65252a4f65252a4), U64(0x4d3b3b764d3b3b76),
crypto/openssl/crypto/aes/aes_x86core.c
170
U64(0x61d6d6b761d6d6b7), U64(0xceb3b37dceb3b37d),
crypto/openssl/crypto/aes/aes_x86core.c
171
U64(0x7b2929527b292952), U64(0x3ee3e3dd3ee3e3dd),
crypto/openssl/crypto/aes/aes_x86core.c
172
U64(0x712f2f5e712f2f5e), U64(0x9784841397848413),
crypto/openssl/crypto/aes/aes_x86core.c
173
U64(0xf55353a6f55353a6), U64(0x68d1d1b968d1d1b9),
crypto/openssl/crypto/aes/aes_x86core.c
174
U64(0x0000000000000000), U64(0x2cededc12cededc1),
crypto/openssl/crypto/aes/aes_x86core.c
175
U64(0x6020204060202040), U64(0x1ffcfce31ffcfce3),
crypto/openssl/crypto/aes/aes_x86core.c
176
U64(0xc8b1b179c8b1b179), U64(0xed5b5bb6ed5b5bb6),
crypto/openssl/crypto/aes/aes_x86core.c
177
U64(0xbe6a6ad4be6a6ad4), U64(0x46cbcb8d46cbcb8d),
crypto/openssl/crypto/aes/aes_x86core.c
178
U64(0xd9bebe67d9bebe67), U64(0x4b3939724b393972),
crypto/openssl/crypto/aes/aes_x86core.c
179
U64(0xde4a4a94de4a4a94), U64(0xd44c4c98d44c4c98),
crypto/openssl/crypto/aes/aes_x86core.c
180
U64(0xe85858b0e85858b0), U64(0x4acfcf854acfcf85),
crypto/openssl/crypto/aes/aes_x86core.c
181
U64(0x6bd0d0bb6bd0d0bb), U64(0x2aefefc52aefefc5),
crypto/openssl/crypto/aes/aes_x86core.c
182
U64(0xe5aaaa4fe5aaaa4f), U64(0x16fbfbed16fbfbed),
crypto/openssl/crypto/aes/aes_x86core.c
183
U64(0xc5434386c5434386), U64(0xd74d4d9ad74d4d9a),
crypto/openssl/crypto/aes/aes_x86core.c
184
U64(0x5533336655333366), U64(0x9485851194858511),
crypto/openssl/crypto/aes/aes_x86core.c
185
U64(0xcf45458acf45458a), U64(0x10f9f9e910f9f9e9),
crypto/openssl/crypto/aes/aes_x86core.c
186
U64(0x0602020406020204), U64(0x817f7ffe817f7ffe),
crypto/openssl/crypto/aes/aes_x86core.c
187
U64(0xf05050a0f05050a0), U64(0x443c3c78443c3c78),
crypto/openssl/crypto/aes/aes_x86core.c
188
U64(0xba9f9f25ba9f9f25), U64(0xe3a8a84be3a8a84b),
crypto/openssl/crypto/aes/aes_x86core.c
189
U64(0xf35151a2f35151a2), U64(0xfea3a35dfea3a35d),
crypto/openssl/crypto/aes/aes_x86core.c
190
U64(0xc0404080c0404080), U64(0x8a8f8f058a8f8f05),
crypto/openssl/crypto/aes/aes_x86core.c
191
U64(0xad92923fad92923f), U64(0xbc9d9d21bc9d9d21),
crypto/openssl/crypto/aes/aes_x86core.c
192
U64(0x4838387048383870), U64(0x04f5f5f104f5f5f1),
crypto/openssl/crypto/aes/aes_x86core.c
193
U64(0xdfbcbc63dfbcbc63), U64(0xc1b6b677c1b6b677),
crypto/openssl/crypto/aes/aes_x86core.c
194
U64(0x75dadaaf75dadaaf), U64(0x6321214263212142),
crypto/openssl/crypto/aes/aes_x86core.c
195
U64(0x3010102030101020), U64(0x1affffe51affffe5),
crypto/openssl/crypto/aes/aes_x86core.c
196
U64(0x0ef3f3fd0ef3f3fd), U64(0x6dd2d2bf6dd2d2bf),
crypto/openssl/crypto/aes/aes_x86core.c
197
U64(0x4ccdcd814ccdcd81), U64(0x140c0c18140c0c18),
crypto/openssl/crypto/aes/aes_x86core.c
198
U64(0x3513132635131326), U64(0x2fececc32fececc3),
crypto/openssl/crypto/aes/aes_x86core.c
199
U64(0xe15f5fbee15f5fbe), U64(0xa2979735a2979735),
crypto/openssl/crypto/aes/aes_x86core.c
200
U64(0xcc444488cc444488), U64(0x3917172e3917172e),
crypto/openssl/crypto/aes/aes_x86core.c
201
U64(0x57c4c49357c4c493), U64(0xf2a7a755f2a7a755),
crypto/openssl/crypto/aes/aes_x86core.c
202
U64(0x827e7efc827e7efc), U64(0x473d3d7a473d3d7a),
crypto/openssl/crypto/aes/aes_x86core.c
203
U64(0xac6464c8ac6464c8), U64(0xe75d5dbae75d5dba),
crypto/openssl/crypto/aes/aes_x86core.c
204
U64(0x2b1919322b191932), U64(0x957373e6957373e6),
crypto/openssl/crypto/aes/aes_x86core.c
205
U64(0xa06060c0a06060c0), U64(0x9881811998818119),
crypto/openssl/crypto/aes/aes_x86core.c
206
U64(0xd14f4f9ed14f4f9e), U64(0x7fdcdca37fdcdca3),
crypto/openssl/crypto/aes/aes_x86core.c
207
U64(0x6622224466222244), U64(0x7e2a2a547e2a2a54),
crypto/openssl/crypto/aes/aes_x86core.c
208
U64(0xab90903bab90903b), U64(0x8388880b8388880b),
crypto/openssl/crypto/aes/aes_x86core.c
209
U64(0xca46468cca46468c), U64(0x29eeeec729eeeec7),
crypto/openssl/crypto/aes/aes_x86core.c
210
U64(0xd3b8b86bd3b8b86b), U64(0x3c1414283c141428),
crypto/openssl/crypto/aes/aes_x86core.c
211
U64(0x79dedea779dedea7), U64(0xe25e5ebce25e5ebc),
crypto/openssl/crypto/aes/aes_x86core.c
212
U64(0x1d0b0b161d0b0b16), U64(0x76dbdbad76dbdbad),
crypto/openssl/crypto/aes/aes_x86core.c
213
U64(0x3be0e0db3be0e0db), U64(0x5632326456323264),
crypto/openssl/crypto/aes/aes_x86core.c
214
U64(0x4e3a3a744e3a3a74), U64(0x1e0a0a141e0a0a14),
crypto/openssl/crypto/aes/aes_x86core.c
215
U64(0xdb494992db494992), U64(0x0a06060c0a06060c),
crypto/openssl/crypto/aes/aes_x86core.c
216
U64(0x6c2424486c242448), U64(0xe45c5cb8e45c5cb8),
crypto/openssl/crypto/aes/aes_x86core.c
217
U64(0x5dc2c29f5dc2c29f), U64(0x6ed3d3bd6ed3d3bd),
crypto/openssl/crypto/aes/aes_x86core.c
218
U64(0xefacac43efacac43), U64(0xa66262c4a66262c4),
crypto/openssl/crypto/aes/aes_x86core.c
219
U64(0xa8919139a8919139), U64(0xa4959531a4959531),
crypto/openssl/crypto/aes/aes_x86core.c
220
U64(0x37e4e4d337e4e4d3), U64(0x8b7979f28b7979f2),
crypto/openssl/crypto/aes/aes_x86core.c
221
U64(0x32e7e7d532e7e7d5), U64(0x43c8c88b43c8c88b),
crypto/openssl/crypto/aes/aes_x86core.c
222
U64(0x5937376e5937376e), U64(0xb76d6ddab76d6dda),
crypto/openssl/crypto/aes/aes_x86core.c
223
U64(0x8c8d8d018c8d8d01), U64(0x64d5d5b164d5d5b1),
crypto/openssl/crypto/aes/aes_x86core.c
224
U64(0xd24e4e9cd24e4e9c), U64(0xe0a9a949e0a9a949),
crypto/openssl/crypto/aes/aes_x86core.c
225
U64(0xb46c6cd8b46c6cd8), U64(0xfa5656acfa5656ac),
crypto/openssl/crypto/aes/aes_x86core.c
226
U64(0x07f4f4f307f4f4f3), U64(0x25eaeacf25eaeacf),
crypto/openssl/crypto/aes/aes_x86core.c
227
U64(0xaf6565caaf6565ca), U64(0x8e7a7af48e7a7af4),
crypto/openssl/crypto/aes/aes_x86core.c
228
U64(0xe9aeae47e9aeae47), U64(0x1808081018080810),
crypto/openssl/crypto/aes/aes_x86core.c
229
U64(0xd5baba6fd5baba6f), U64(0x887878f0887878f0),
crypto/openssl/crypto/aes/aes_x86core.c
230
U64(0x6f25254a6f25254a), U64(0x722e2e5c722e2e5c),
crypto/openssl/crypto/aes/aes_x86core.c
231
U64(0x241c1c38241c1c38), U64(0xf1a6a657f1a6a657),
crypto/openssl/crypto/aes/aes_x86core.c
232
U64(0xc7b4b473c7b4b473), U64(0x51c6c69751c6c697),
crypto/openssl/crypto/aes/aes_x86core.c
233
U64(0x23e8e8cb23e8e8cb), U64(0x7cdddda17cdddda1),
crypto/openssl/crypto/aes/aes_x86core.c
234
U64(0x9c7474e89c7474e8), U64(0x211f1f3e211f1f3e),
crypto/openssl/crypto/aes/aes_x86core.c
235
U64(0xdd4b4b96dd4b4b96), U64(0xdcbdbd61dcbdbd61),
crypto/openssl/crypto/aes/aes_x86core.c
236
U64(0x868b8b0d868b8b0d), U64(0x858a8a0f858a8a0f),
crypto/openssl/crypto/aes/aes_x86core.c
237
U64(0x907070e0907070e0), U64(0x423e3e7c423e3e7c),
crypto/openssl/crypto/aes/aes_x86core.c
238
U64(0xc4b5b571c4b5b571), U64(0xaa6666ccaa6666cc),
crypto/openssl/crypto/aes/aes_x86core.c
239
U64(0xd8484890d8484890), U64(0x0503030605030306),
crypto/openssl/crypto/aes/aes_x86core.c
240
U64(0x01f6f6f701f6f6f7), U64(0x120e0e1c120e0e1c),
crypto/openssl/crypto/aes/aes_x86core.c
241
U64(0xa36161c2a36161c2), U64(0x5f35356a5f35356a),
crypto/openssl/crypto/aes/aes_x86core.c
242
U64(0xf95757aef95757ae), U64(0xd0b9b969d0b9b969),
crypto/openssl/crypto/aes/aes_x86core.c
243
U64(0x9186861791868617), U64(0x58c1c19958c1c199),
crypto/openssl/crypto/aes/aes_x86core.c
244
U64(0x271d1d3a271d1d3a), U64(0xb99e9e27b99e9e27),
crypto/openssl/crypto/aes/aes_x86core.c
245
U64(0x38e1e1d938e1e1d9), U64(0x13f8f8eb13f8f8eb),
crypto/openssl/crypto/aes/aes_x86core.c
246
U64(0xb398982bb398982b), U64(0x3311112233111122),
crypto/openssl/crypto/aes/aes_x86core.c
247
U64(0xbb6969d2bb6969d2), U64(0x70d9d9a970d9d9a9),
crypto/openssl/crypto/aes/aes_x86core.c
248
U64(0x898e8e07898e8e07), U64(0xa7949433a7949433),
crypto/openssl/crypto/aes/aes_x86core.c
249
U64(0xb69b9b2db69b9b2d), U64(0x221e1e3c221e1e3c),
crypto/openssl/crypto/aes/aes_x86core.c
250
U64(0x9287871592878715), U64(0x20e9e9c920e9e9c9),
crypto/openssl/crypto/aes/aes_x86core.c
251
U64(0x49cece8749cece87), U64(0xff5555aaff5555aa),
crypto/openssl/crypto/aes/aes_x86core.c
252
U64(0x7828285078282850), U64(0x7adfdfa57adfdfa5),
crypto/openssl/crypto/aes/aes_x86core.c
253
U64(0x8f8c8c038f8c8c03), U64(0xf8a1a159f8a1a159),
crypto/openssl/crypto/aes/aes_x86core.c
254
U64(0x8089890980898909), U64(0x170d0d1a170d0d1a),
crypto/openssl/crypto/aes/aes_x86core.c
255
U64(0xdabfbf65dabfbf65), U64(0x31e6e6d731e6e6d7),
crypto/openssl/crypto/aes/aes_x86core.c
256
U64(0xc6424284c6424284), U64(0xb86868d0b86868d0),
crypto/openssl/crypto/aes/aes_x86core.c
257
U64(0xc3414182c3414182), U64(0xb0999929b0999929),
crypto/openssl/crypto/aes/aes_x86core.c
258
U64(0x772d2d5a772d2d5a), U64(0x110f0f1e110f0f1e),
crypto/openssl/crypto/aes/aes_x86core.c
259
U64(0xcbb0b07bcbb0b07b), U64(0xfc5454a8fc5454a8),
crypto/openssl/crypto/aes/aes_x86core.c
260
U64(0xd6bbbb6dd6bbbb6d), U64(0x3a16162c3a16162c)
crypto/openssl/crypto/aes/aes_x86core.c
299
U64(0x50a7f45150a7f451), U64(0x5365417e5365417e),
crypto/openssl/crypto/aes/aes_x86core.c
300
U64(0xc3a4171ac3a4171a), U64(0x965e273a965e273a),
crypto/openssl/crypto/aes/aes_x86core.c
301
U64(0xcb6bab3bcb6bab3b), U64(0xf1459d1ff1459d1f),
crypto/openssl/crypto/aes/aes_x86core.c
302
U64(0xab58faacab58faac), U64(0x9303e34b9303e34b),
crypto/openssl/crypto/aes/aes_x86core.c
303
U64(0x55fa302055fa3020), U64(0xf66d76adf66d76ad),
crypto/openssl/crypto/aes/aes_x86core.c
304
U64(0x9176cc889176cc88), U64(0x254c02f5254c02f5),
crypto/openssl/crypto/aes/aes_x86core.c
305
U64(0xfcd7e54ffcd7e54f), U64(0xd7cb2ac5d7cb2ac5),
crypto/openssl/crypto/aes/aes_x86core.c
306
U64(0x8044352680443526), U64(0x8fa362b58fa362b5),
crypto/openssl/crypto/aes/aes_x86core.c
307
U64(0x495ab1de495ab1de), U64(0x671bba25671bba25),
crypto/openssl/crypto/aes/aes_x86core.c
308
U64(0x980eea45980eea45), U64(0xe1c0fe5de1c0fe5d),
crypto/openssl/crypto/aes/aes_x86core.c
309
U64(0x02752fc302752fc3), U64(0x12f04c8112f04c81),
crypto/openssl/crypto/aes/aes_x86core.c
310
U64(0xa397468da397468d), U64(0xc6f9d36bc6f9d36b),
crypto/openssl/crypto/aes/aes_x86core.c
311
U64(0xe75f8f03e75f8f03), U64(0x959c9215959c9215),
crypto/openssl/crypto/aes/aes_x86core.c
312
U64(0xeb7a6dbfeb7a6dbf), U64(0xda595295da595295),
crypto/openssl/crypto/aes/aes_x86core.c
313
U64(0x2d83bed42d83bed4), U64(0xd3217458d3217458),
crypto/openssl/crypto/aes/aes_x86core.c
314
U64(0x2969e0492969e049), U64(0x44c8c98e44c8c98e),
crypto/openssl/crypto/aes/aes_x86core.c
315
U64(0x6a89c2756a89c275), U64(0x78798ef478798ef4),
crypto/openssl/crypto/aes/aes_x86core.c
316
U64(0x6b3e58996b3e5899), U64(0xdd71b927dd71b927),
crypto/openssl/crypto/aes/aes_x86core.c
317
U64(0xb64fe1beb64fe1be), U64(0x17ad88f017ad88f0),
crypto/openssl/crypto/aes/aes_x86core.c
318
U64(0x66ac20c966ac20c9), U64(0xb43ace7db43ace7d),
crypto/openssl/crypto/aes/aes_x86core.c
319
U64(0x184adf63184adf63), U64(0x82311ae582311ae5),
crypto/openssl/crypto/aes/aes_x86core.c
320
U64(0x6033519760335197), U64(0x457f5362457f5362),
crypto/openssl/crypto/aes/aes_x86core.c
321
U64(0xe07764b1e07764b1), U64(0x84ae6bbb84ae6bbb),
crypto/openssl/crypto/aes/aes_x86core.c
322
U64(0x1ca081fe1ca081fe), U64(0x942b08f9942b08f9),
crypto/openssl/crypto/aes/aes_x86core.c
323
U64(0x5868487058684870), U64(0x19fd458f19fd458f),
crypto/openssl/crypto/aes/aes_x86core.c
324
U64(0x876cde94876cde94), U64(0xb7f87b52b7f87b52),
crypto/openssl/crypto/aes/aes_x86core.c
325
U64(0x23d373ab23d373ab), U64(0xe2024b72e2024b72),
crypto/openssl/crypto/aes/aes_x86core.c
326
U64(0x578f1fe3578f1fe3), U64(0x2aab55662aab5566),
crypto/openssl/crypto/aes/aes_x86core.c
327
U64(0x0728ebb20728ebb2), U64(0x03c2b52f03c2b52f),
crypto/openssl/crypto/aes/aes_x86core.c
328
U64(0x9a7bc5869a7bc586), U64(0xa50837d3a50837d3),
crypto/openssl/crypto/aes/aes_x86core.c
329
U64(0xf2872830f2872830), U64(0xb2a5bf23b2a5bf23),
crypto/openssl/crypto/aes/aes_x86core.c
330
U64(0xba6a0302ba6a0302), U64(0x5c8216ed5c8216ed),
crypto/openssl/crypto/aes/aes_x86core.c
331
U64(0x2b1ccf8a2b1ccf8a), U64(0x92b479a792b479a7),
crypto/openssl/crypto/aes/aes_x86core.c
332
U64(0xf0f207f3f0f207f3), U64(0xa1e2694ea1e2694e),
crypto/openssl/crypto/aes/aes_x86core.c
333
U64(0xcdf4da65cdf4da65), U64(0xd5be0506d5be0506),
crypto/openssl/crypto/aes/aes_x86core.c
334
U64(0x1f6234d11f6234d1), U64(0x8afea6c48afea6c4),
crypto/openssl/crypto/aes/aes_x86core.c
335
U64(0x9d532e349d532e34), U64(0xa055f3a2a055f3a2),
crypto/openssl/crypto/aes/aes_x86core.c
336
U64(0x32e18a0532e18a05), U64(0x75ebf6a475ebf6a4),
crypto/openssl/crypto/aes/aes_x86core.c
337
U64(0x39ec830b39ec830b), U64(0xaaef6040aaef6040),
crypto/openssl/crypto/aes/aes_x86core.c
338
U64(0x069f715e069f715e), U64(0x51106ebd51106ebd),
crypto/openssl/crypto/aes/aes_x86core.c
339
U64(0xf98a213ef98a213e), U64(0x3d06dd963d06dd96),
crypto/openssl/crypto/aes/aes_x86core.c
340
U64(0xae053eddae053edd), U64(0x46bde64d46bde64d),
crypto/openssl/crypto/aes/aes_x86core.c
341
U64(0xb58d5491b58d5491), U64(0x055dc471055dc471),
crypto/openssl/crypto/aes/aes_x86core.c
342
U64(0x6fd406046fd40604), U64(0xff155060ff155060),
crypto/openssl/crypto/aes/aes_x86core.c
343
U64(0x24fb981924fb9819), U64(0x97e9bdd697e9bdd6),
crypto/openssl/crypto/aes/aes_x86core.c
344
U64(0xcc434089cc434089), U64(0x779ed967779ed967),
crypto/openssl/crypto/aes/aes_x86core.c
345
U64(0xbd42e8b0bd42e8b0), U64(0x888b8907888b8907),
crypto/openssl/crypto/aes/aes_x86core.c
346
U64(0x385b19e7385b19e7), U64(0xdbeec879dbeec879),
crypto/openssl/crypto/aes/aes_x86core.c
347
U64(0x470a7ca1470a7ca1), U64(0xe90f427ce90f427c),
crypto/openssl/crypto/aes/aes_x86core.c
348
U64(0xc91e84f8c91e84f8), U64(0x0000000000000000),
crypto/openssl/crypto/aes/aes_x86core.c
349
U64(0x8386800983868009), U64(0x48ed2b3248ed2b32),
crypto/openssl/crypto/aes/aes_x86core.c
350
U64(0xac70111eac70111e), U64(0x4e725a6c4e725a6c),
crypto/openssl/crypto/aes/aes_x86core.c
351
U64(0xfbff0efdfbff0efd), U64(0x5638850f5638850f),
crypto/openssl/crypto/aes/aes_x86core.c
352
U64(0x1ed5ae3d1ed5ae3d), U64(0x27392d3627392d36),
crypto/openssl/crypto/aes/aes_x86core.c
353
U64(0x64d90f0a64d90f0a), U64(0x21a65c6821a65c68),
crypto/openssl/crypto/aes/aes_x86core.c
354
U64(0xd1545b9bd1545b9b), U64(0x3a2e36243a2e3624),
crypto/openssl/crypto/aes/aes_x86core.c
355
U64(0xb1670a0cb1670a0c), U64(0x0fe757930fe75793),
crypto/openssl/crypto/aes/aes_x86core.c
356
U64(0xd296eeb4d296eeb4), U64(0x9e919b1b9e919b1b),
crypto/openssl/crypto/aes/aes_x86core.c
357
U64(0x4fc5c0804fc5c080), U64(0xa220dc61a220dc61),
crypto/openssl/crypto/aes/aes_x86core.c
358
U64(0x694b775a694b775a), U64(0x161a121c161a121c),
crypto/openssl/crypto/aes/aes_x86core.c
359
U64(0x0aba93e20aba93e2), U64(0xe52aa0c0e52aa0c0),
crypto/openssl/crypto/aes/aes_x86core.c
360
U64(0x43e0223c43e0223c), U64(0x1d171b121d171b12),
crypto/openssl/crypto/aes/aes_x86core.c
361
U64(0x0b0d090e0b0d090e), U64(0xadc78bf2adc78bf2),
crypto/openssl/crypto/aes/aes_x86core.c
362
U64(0xb9a8b62db9a8b62d), U64(0xc8a91e14c8a91e14),
crypto/openssl/crypto/aes/aes_x86core.c
363
U64(0x8519f1578519f157), U64(0x4c0775af4c0775af),
crypto/openssl/crypto/aes/aes_x86core.c
364
U64(0xbbdd99eebbdd99ee), U64(0xfd607fa3fd607fa3),
crypto/openssl/crypto/aes/aes_x86core.c
365
U64(0x9f2601f79f2601f7), U64(0xbcf5725cbcf5725c),
crypto/openssl/crypto/aes/aes_x86core.c
366
U64(0xc53b6644c53b6644), U64(0x347efb5b347efb5b),
crypto/openssl/crypto/aes/aes_x86core.c
367
U64(0x7629438b7629438b), U64(0xdcc623cbdcc623cb),
crypto/openssl/crypto/aes/aes_x86core.c
368
U64(0x68fcedb668fcedb6), U64(0x63f1e4b863f1e4b8),
crypto/openssl/crypto/aes/aes_x86core.c
369
U64(0xcadc31d7cadc31d7), U64(0x1085634210856342),
crypto/openssl/crypto/aes/aes_x86core.c
370
U64(0x4022971340229713), U64(0x2011c6842011c684),
crypto/openssl/crypto/aes/aes_x86core.c
371
U64(0x7d244a857d244a85), U64(0xf83dbbd2f83dbbd2),
crypto/openssl/crypto/aes/aes_x86core.c
372
U64(0x1132f9ae1132f9ae), U64(0x6da129c76da129c7),
crypto/openssl/crypto/aes/aes_x86core.c
373
U64(0x4b2f9e1d4b2f9e1d), U64(0xf330b2dcf330b2dc),
crypto/openssl/crypto/aes/aes_x86core.c
374
U64(0xec52860dec52860d), U64(0xd0e3c177d0e3c177),
crypto/openssl/crypto/aes/aes_x86core.c
375
U64(0x6c16b32b6c16b32b), U64(0x99b970a999b970a9),
crypto/openssl/crypto/aes/aes_x86core.c
376
U64(0xfa489411fa489411), U64(0x2264e9472264e947),
crypto/openssl/crypto/aes/aes_x86core.c
377
U64(0xc48cfca8c48cfca8), U64(0x1a3ff0a01a3ff0a0),
crypto/openssl/crypto/aes/aes_x86core.c
378
U64(0xd82c7d56d82c7d56), U64(0xef903322ef903322),
crypto/openssl/crypto/aes/aes_x86core.c
379
U64(0xc74e4987c74e4987), U64(0xc1d138d9c1d138d9),
crypto/openssl/crypto/aes/aes_x86core.c
380
U64(0xfea2ca8cfea2ca8c), U64(0x360bd498360bd498),
crypto/openssl/crypto/aes/aes_x86core.c
381
U64(0xcf81f5a6cf81f5a6), U64(0x28de7aa528de7aa5),
crypto/openssl/crypto/aes/aes_x86core.c
382
U64(0x268eb7da268eb7da), U64(0xa4bfad3fa4bfad3f),
crypto/openssl/crypto/aes/aes_x86core.c
383
U64(0xe49d3a2ce49d3a2c), U64(0x0d9278500d927850),
crypto/openssl/crypto/aes/aes_x86core.c
384
U64(0x9bcc5f6a9bcc5f6a), U64(0x62467e5462467e54),
crypto/openssl/crypto/aes/aes_x86core.c
385
U64(0xc2138df6c2138df6), U64(0xe8b8d890e8b8d890),
crypto/openssl/crypto/aes/aes_x86core.c
386
U64(0x5ef7392e5ef7392e), U64(0xf5afc382f5afc382),
crypto/openssl/crypto/aes/aes_x86core.c
387
U64(0xbe805d9fbe805d9f), U64(0x7c93d0697c93d069),
crypto/openssl/crypto/aes/aes_x86core.c
388
U64(0xa92dd56fa92dd56f), U64(0xb31225cfb31225cf),
crypto/openssl/crypto/aes/aes_x86core.c
389
U64(0x3b99acc83b99acc8), U64(0xa77d1810a77d1810),
crypto/openssl/crypto/aes/aes_x86core.c
390
U64(0x6e639ce86e639ce8), U64(0x7bbb3bdb7bbb3bdb),
crypto/openssl/crypto/aes/aes_x86core.c
391
U64(0x097826cd097826cd), U64(0xf418596ef418596e),
crypto/openssl/crypto/aes/aes_x86core.c
392
U64(0x01b79aec01b79aec), U64(0xa89a4f83a89a4f83),
crypto/openssl/crypto/aes/aes_x86core.c
393
U64(0x656e95e6656e95e6), U64(0x7ee6ffaa7ee6ffaa),
crypto/openssl/crypto/aes/aes_x86core.c
394
U64(0x08cfbc2108cfbc21), U64(0xe6e815efe6e815ef),
crypto/openssl/crypto/aes/aes_x86core.c
395
U64(0xd99be7bad99be7ba), U64(0xce366f4ace366f4a),
crypto/openssl/crypto/aes/aes_x86core.c
396
U64(0xd4099fead4099fea), U64(0xd67cb029d67cb029),
crypto/openssl/crypto/aes/aes_x86core.c
397
U64(0xafb2a431afb2a431), U64(0x31233f2a31233f2a),
crypto/openssl/crypto/aes/aes_x86core.c
398
U64(0x3094a5c63094a5c6), U64(0xc066a235c066a235),
crypto/openssl/crypto/aes/aes_x86core.c
399
U64(0x37bc4e7437bc4e74), U64(0xa6ca82fca6ca82fc),
crypto/openssl/crypto/aes/aes_x86core.c
400
U64(0xb0d090e0b0d090e0), U64(0x15d8a73315d8a733),
crypto/openssl/crypto/aes/aes_x86core.c
401
U64(0x4a9804f14a9804f1), U64(0xf7daec41f7daec41),
crypto/openssl/crypto/aes/aes_x86core.c
402
U64(0x0e50cd7f0e50cd7f), U64(0x2ff691172ff69117),
crypto/openssl/crypto/aes/aes_x86core.c
403
U64(0x8dd64d768dd64d76), U64(0x4db0ef434db0ef43),
crypto/openssl/crypto/aes/aes_x86core.c
404
U64(0x544daacc544daacc), U64(0xdf0496e4df0496e4),
crypto/openssl/crypto/aes/aes_x86core.c
405
U64(0xe3b5d19ee3b5d19e), U64(0x1b886a4c1b886a4c),
crypto/openssl/crypto/aes/aes_x86core.c
406
U64(0xb81f2cc1b81f2cc1), U64(0x7f5165467f516546),
crypto/openssl/crypto/aes/aes_x86core.c
407
U64(0x04ea5e9d04ea5e9d), U64(0x5d358c015d358c01),
crypto/openssl/crypto/aes/aes_x86core.c
408
U64(0x737487fa737487fa), U64(0x2e410bfb2e410bfb),
crypto/openssl/crypto/aes/aes_x86core.c
409
U64(0x5a1d67b35a1d67b3), U64(0x52d2db9252d2db92),
crypto/openssl/crypto/aes/aes_x86core.c
410
U64(0x335610e9335610e9), U64(0x1347d66d1347d66d),
crypto/openssl/crypto/aes/aes_x86core.c
411
U64(0x8c61d79a8c61d79a), U64(0x7a0ca1377a0ca137),
crypto/openssl/crypto/aes/aes_x86core.c
412
U64(0x8e14f8598e14f859), U64(0x893c13eb893c13eb),
crypto/openssl/crypto/aes/aes_x86core.c
413
U64(0xee27a9ceee27a9ce), U64(0x35c961b735c961b7),
crypto/openssl/crypto/aes/aes_x86core.c
414
U64(0xede51ce1ede51ce1), U64(0x3cb1477a3cb1477a),
crypto/openssl/crypto/aes/aes_x86core.c
415
U64(0x59dfd29c59dfd29c), U64(0x3f73f2553f73f255),
crypto/openssl/crypto/aes/aes_x86core.c
416
U64(0x79ce141879ce1418), U64(0xbf37c773bf37c773),
crypto/openssl/crypto/aes/aes_x86core.c
417
U64(0xeacdf753eacdf753), U64(0x5baafd5f5baafd5f),
crypto/openssl/crypto/aes/aes_x86core.c
418
U64(0x146f3ddf146f3ddf), U64(0x86db447886db4478),
crypto/openssl/crypto/aes/aes_x86core.c
419
U64(0x81f3afca81f3afca), U64(0x3ec468b93ec468b9),
crypto/openssl/crypto/aes/aes_x86core.c
420
U64(0x2c3424382c342438), U64(0x5f40a3c25f40a3c2),
crypto/openssl/crypto/aes/aes_x86core.c
421
U64(0x72c31d1672c31d16), U64(0x0c25e2bc0c25e2bc),
crypto/openssl/crypto/aes/aes_x86core.c
422
U64(0x8b493c288b493c28), U64(0x41950dff41950dff),
crypto/openssl/crypto/aes/aes_x86core.c
423
U64(0x7101a8397101a839), U64(0xdeb30c08deb30c08),
crypto/openssl/crypto/aes/aes_x86core.c
424
U64(0x9ce4b4d89ce4b4d8), U64(0x90c1566490c15664),
crypto/openssl/crypto/aes/aes_x86core.c
425
U64(0x6184cb7b6184cb7b), U64(0x70b632d570b632d5),
crypto/openssl/crypto/aes/aes_x86core.c
426
U64(0x745c6c48745c6c48), U64(0x4257b8d04257b8d0)
crypto/openssl/crypto/evp/e_aes.c
1277
if (alen > (U64(1) << 61) || (sizeof(len) == 8 && alen < len))
crypto/openssl/crypto/evp/e_aes.c
1334
if (mlen > ((U64(1) << 36) - 32) || (sizeof(len) == 8 && mlen < len))
crypto/openssl/crypto/modes/ccm128.c
167
if (ctx->blocks > (U64(1) << 61))
crypto/openssl/crypto/modes/ccm128.c
340
if (ctx->blocks > (U64(1) << 61))
crypto/openssl/crypto/modes/gcm128.c
1007
if (mlen > ((U64(1) << 36) - 32) || (sizeof(len) == 8 && mlen < len))
crypto/openssl/crypto/modes/gcm128.c
1242
if (mlen > ((U64(1) << 36) - 32) || (sizeof(len) == 8 && mlen < len))
crypto/openssl/crypto/modes/gcm128.c
1396
if (mlen > ((U64(1) << 36) - 32) || (sizeof(len) == 8 && mlen < len))
crypto/openssl/crypto/modes/gcm128.c
40
u64 T = U64(0xe100000000000000) & (0 - (V.lo & 1)); \
crypto/openssl/crypto/modes/gcm128.c
727
if (alen > (U64(1) << 61) || (sizeof(len) == 8 && alen < len))
crypto/openssl/crypto/modes/gcm128.c
782
if (mlen > ((U64(1) << 36) - 32) || (sizeof(len) == 8 && mlen < len))
crypto/openssl/crypto/sha/sha512.c
100
c->h[6] = U64(0x2b0199fc2c85b8aa);
crypto/openssl/crypto/sha/sha512.c
101
c->h[7] = U64(0x0eb72ddc81c52ca2);
crypto/openssl/crypto/sha/sha512.c
112
c->h[0] = U64(0xcbbb9d5dc1059ed8);
crypto/openssl/crypto/sha/sha512.c
113
c->h[1] = U64(0x629a292a367cd507);
crypto/openssl/crypto/sha/sha512.c
114
c->h[2] = U64(0x9159015a3070dd17);
crypto/openssl/crypto/sha/sha512.c
115
c->h[3] = U64(0x152fecd8f70e5939);
crypto/openssl/crypto/sha/sha512.c
116
c->h[4] = U64(0x67332667ffc00b31);
crypto/openssl/crypto/sha/sha512.c
117
c->h[5] = U64(0x8eb44a8768581511);
crypto/openssl/crypto/sha/sha512.c
118
c->h[6] = U64(0xdb0c2e0d64f98fa7);
crypto/openssl/crypto/sha/sha512.c
119
c->h[7] = U64(0x47b5481dbefa4fa4);
crypto/openssl/crypto/sha/sha512.c
130
c->h[0] = U64(0x6a09e667f3bcc908);
crypto/openssl/crypto/sha/sha512.c
131
c->h[1] = U64(0xbb67ae8584caa73b);
crypto/openssl/crypto/sha/sha512.c
132
c->h[2] = U64(0x3c6ef372fe94f82b);
crypto/openssl/crypto/sha/sha512.c
133
c->h[3] = U64(0xa54ff53a5f1d36f1);
crypto/openssl/crypto/sha/sha512.c
134
c->h[4] = U64(0x510e527fade682d1);
crypto/openssl/crypto/sha/sha512.c
135
c->h[5] = U64(0x9b05688c2b3e6c1f);
crypto/openssl/crypto/sha/sha512.c
136
c->h[6] = U64(0x1f83d9abfb41bd6b);
crypto/openssl/crypto/sha/sha512.c
137
c->h[7] = U64(0x5be0cd19137e2179);
crypto/openssl/crypto/sha/sha512.c
288
l = (c->Nl + (((SHA_LONG64)len) << 3)) & U64(0xffffffffffffffff);
crypto/openssl/crypto/sha/sha512.c
343
U64(0x428a2f98d728ae22), U64(0x7137449123ef65cd),
crypto/openssl/crypto/sha/sha512.c
344
U64(0xb5c0fbcfec4d3b2f), U64(0xe9b5dba58189dbbc),
crypto/openssl/crypto/sha/sha512.c
345
U64(0x3956c25bf348b538), U64(0x59f111f1b605d019),
crypto/openssl/crypto/sha/sha512.c
346
U64(0x923f82a4af194f9b), U64(0xab1c5ed5da6d8118),
crypto/openssl/crypto/sha/sha512.c
347
U64(0xd807aa98a3030242), U64(0x12835b0145706fbe),
crypto/openssl/crypto/sha/sha512.c
348
U64(0x243185be4ee4b28c), U64(0x550c7dc3d5ffb4e2),
crypto/openssl/crypto/sha/sha512.c
349
U64(0x72be5d74f27b896f), U64(0x80deb1fe3b1696b1),
crypto/openssl/crypto/sha/sha512.c
350
U64(0x9bdc06a725c71235), U64(0xc19bf174cf692694),
crypto/openssl/crypto/sha/sha512.c
351
U64(0xe49b69c19ef14ad2), U64(0xefbe4786384f25e3),
crypto/openssl/crypto/sha/sha512.c
352
U64(0x0fc19dc68b8cd5b5), U64(0x240ca1cc77ac9c65),
crypto/openssl/crypto/sha/sha512.c
353
U64(0x2de92c6f592b0275), U64(0x4a7484aa6ea6e483),
crypto/openssl/crypto/sha/sha512.c
354
U64(0x5cb0a9dcbd41fbd4), U64(0x76f988da831153b5),
crypto/openssl/crypto/sha/sha512.c
355
U64(0x983e5152ee66dfab), U64(0xa831c66d2db43210),
crypto/openssl/crypto/sha/sha512.c
356
U64(0xb00327c898fb213f), U64(0xbf597fc7beef0ee4),
crypto/openssl/crypto/sha/sha512.c
357
U64(0xc6e00bf33da88fc2), U64(0xd5a79147930aa725),
crypto/openssl/crypto/sha/sha512.c
358
U64(0x06ca6351e003826f), U64(0x142929670a0e6e70),
crypto/openssl/crypto/sha/sha512.c
359
U64(0x27b70a8546d22ffc), U64(0x2e1b21385c26c926),
crypto/openssl/crypto/sha/sha512.c
360
U64(0x4d2c6dfc5ac42aed), U64(0x53380d139d95b3df),
crypto/openssl/crypto/sha/sha512.c
361
U64(0x650a73548baf63de), U64(0x766a0abb3c77b2a8),
crypto/openssl/crypto/sha/sha512.c
362
U64(0x81c2c92e47edaee6), U64(0x92722c851482353b),
crypto/openssl/crypto/sha/sha512.c
363
U64(0xa2bfe8a14cf10364), U64(0xa81a664bbc423001),
crypto/openssl/crypto/sha/sha512.c
364
U64(0xc24b8b70d0f89791), U64(0xc76c51a30654be30),
crypto/openssl/crypto/sha/sha512.c
365
U64(0xd192e819d6ef5218), U64(0xd69906245565a910),
crypto/openssl/crypto/sha/sha512.c
366
U64(0xf40e35855771202a), U64(0x106aa07032bbd1b8),
crypto/openssl/crypto/sha/sha512.c
367
U64(0x19a4c116b8d2d0c8), U64(0x1e376c085141ab53),
crypto/openssl/crypto/sha/sha512.c
368
U64(0x2748774cdf8eeb99), U64(0x34b0bcb5e19b48a8),
crypto/openssl/crypto/sha/sha512.c
369
U64(0x391c0cb3c5c95a63), U64(0x4ed8aa4ae3418acb),
crypto/openssl/crypto/sha/sha512.c
370
U64(0x5b9cca4f7763e373), U64(0x682e6ff3d6b2b8a3),
crypto/openssl/crypto/sha/sha512.c
371
U64(0x748f82ee5defb2fc), U64(0x78a5636f43172f60),
crypto/openssl/crypto/sha/sha512.c
372
U64(0x84c87814a1f0ab72), U64(0x8cc702081a6439ec),
crypto/openssl/crypto/sha/sha512.c
373
U64(0x90befffa23631e28), U64(0xa4506cebde82bde9),
crypto/openssl/crypto/sha/sha512.c
374
U64(0xbef9a3f7b2c67915), U64(0xc67178f2e372532b),
crypto/openssl/crypto/sha/sha512.c
375
U64(0xca273eceea26619c), U64(0xd186b8c721c0c207),
crypto/openssl/crypto/sha/sha512.c
376
U64(0xeada7dd6cde0eb1e), U64(0xf57d4f7fee6ed178),
crypto/openssl/crypto/sha/sha512.c
377
U64(0x06f067aa72176fba), U64(0x0a637dc5a2c898a6),
crypto/openssl/crypto/sha/sha512.c
378
U64(0x113f9804bef90dae), U64(0x1b710b35131c471b),
crypto/openssl/crypto/sha/sha512.c
379
U64(0x28db77f523047d84), U64(0x32caab7b40c72493),
crypto/openssl/crypto/sha/sha512.c
380
U64(0x3c9ebe0a15c9bebc), U64(0x431d67c49c100d4c),
crypto/openssl/crypto/sha/sha512.c
381
U64(0x4cc5d4becb3e42b6), U64(0x597f299cfc657e2a),
crypto/openssl/crypto/sha/sha512.c
382
U64(0x5fcb6fab3ad6faec), U64(0x6c44198c4a475817)
crypto/openssl/crypto/sha/sha512.c
76
c->h[0] = U64(0x8c3d37c819544da2);
crypto/openssl/crypto/sha/sha512.c
77
c->h[1] = U64(0x73e1996689dcd4d6);
crypto/openssl/crypto/sha/sha512.c
78
c->h[2] = U64(0x1dfab7ae32ff9c82);
crypto/openssl/crypto/sha/sha512.c
79
c->h[3] = U64(0x679dd514582f9fcf);
crypto/openssl/crypto/sha/sha512.c
80
c->h[4] = U64(0x0f6d2b697bd44da8);
crypto/openssl/crypto/sha/sha512.c
81
c->h[5] = U64(0x77e36f7304c48942);
crypto/openssl/crypto/sha/sha512.c
82
c->h[6] = U64(0x3f9d85a86a1d36c8);
crypto/openssl/crypto/sha/sha512.c
83
c->h[7] = U64(0x1112e6ad91d692a1);
crypto/openssl/crypto/sha/sha512.c
94
c->h[0] = U64(0x22312194fc2bf72c);
crypto/openssl/crypto/sha/sha512.c
95
c->h[1] = U64(0x9f555fa3c84c64c2);
crypto/openssl/crypto/sha/sha512.c
96
c->h[2] = U64(0x2393b86b6f53b151);
crypto/openssl/crypto/sha/sha512.c
97
c->h[3] = U64(0x963877195940eabd);
crypto/openssl/crypto/sha/sha512.c
98
c->h[4] = U64(0x96283ee2a88effe3);
crypto/openssl/crypto/sha/sha512.c
99
c->h[5] = U64(0xbe5e1e2553863992);
sys/crypto/openssl/ossl_sha512.c
194
l = (c->Nl + (((SHA_LONG64) len) << 3)) & U64(0xffffffffffffffff);
sys/crypto/openssl/ossl_sha512.c
33
c->h[0] = U64(0xcbbb9d5dc1059ed8);
sys/crypto/openssl/ossl_sha512.c
34
c->h[1] = U64(0x629a292a367cd507);
sys/crypto/openssl/ossl_sha512.c
35
c->h[2] = U64(0x9159015a3070dd17);
sys/crypto/openssl/ossl_sha512.c
36
c->h[3] = U64(0x152fecd8f70e5939);
sys/crypto/openssl/ossl_sha512.c
37
c->h[4] = U64(0x67332667ffc00b31);
sys/crypto/openssl/ossl_sha512.c
38
c->h[5] = U64(0x8eb44a8768581511);
sys/crypto/openssl/ossl_sha512.c
39
c->h[6] = U64(0xdb0c2e0d64f98fa7);
sys/crypto/openssl/ossl_sha512.c
40
c->h[7] = U64(0x47b5481dbefa4fa4);
sys/crypto/openssl/ossl_sha512.c
52
c->h[0] = U64(0x6a09e667f3bcc908);
sys/crypto/openssl/ossl_sha512.c
53
c->h[1] = U64(0xbb67ae8584caa73b);
sys/crypto/openssl/ossl_sha512.c
54
c->h[2] = U64(0x3c6ef372fe94f82b);
sys/crypto/openssl/ossl_sha512.c
55
c->h[3] = U64(0xa54ff53a5f1d36f1);
sys/crypto/openssl/ossl_sha512.c
56
c->h[4] = U64(0x510e527fade682d1);
sys/crypto/openssl/ossl_sha512.c
57
c->h[5] = U64(0x9b05688c2b3e6c1f);
sys/crypto/openssl/ossl_sha512.c
58
c->h[6] = U64(0x1f83d9abfb41bd6b);
sys/crypto/openssl/ossl_sha512.c
59
c->h[7] = U64(0x5be0cd19137e2179);
sys/dev/isci/environment.h
66
typedef U64 SATI_LBA;
sys/dev/isci/environment.h
72
((physical_address) = ((U64)(address_upper))<<32 | (address_lower))
sys/dev/isci/isci_io_request.c
350
U64 virt_addr_offset = (uintptr_t)virtual_address -
sys/dev/isci/isci_io_request.c
351
(U64)isci_controller->uncached_controller_memory.virtual_address;
sys/dev/isci/scil/sati_unmap.h
77
U64 sector_address:48;
sys/dev/isci/scil/sati_unmap.h
78
U64 sector_count:16;
sys/dev/isci/scil/sci_base_memory_descriptor_list_decorator.c
100
U64 physical_address;
sys/dev/isci/scil/sci_base_memory_descriptor_list_decorator.c
103
= ((U64) sci_cb_physical_address_lower(sci_physical_address))
sys/dev/isci/scil/sci_base_memory_descriptor_list_decorator.c
104
| (((U64) sci_cb_physical_address_upper(sci_physical_address)) << 32);
sys/dev/mpi3mr/mpi/mpi30_cnfg.h
1410
U64 BaseEUI64; /* 0x10 */
sys/dev/mpi3mr/mpi/mpi30_cnfg.h
1441
U64 UniqueValue; /* 0x08 */
sys/dev/mpi3mr/mpi/mpi30_cnfg.h
2051
U64 Count; /* 0x08 */
sys/dev/mpi3mr/mpi/mpi30_cnfg.h
2052
U64 Timestamp; /* 0x10 */
sys/dev/mpi3mr/mpi/mpi30_cnfg.h
2059
U64 TotalErrorCount; /* 0x08 */
sys/dev/mpi3mr/mpi/mpi30_cnfg.h
2421
U64 GlobalTrigger; /* 0x08 */
sys/dev/mpi3mr/mpi/mpi30_cnfg.h
2932
U64 SASAddress; /* 0x10 */
sys/dev/mpi3mr/mpi/mpi30_cnfg.h
2945
U64 ActiveZoneManagerSASAddress; /* 0x30 */
sys/dev/mpi3mr/mpi/mpi30_cnfg.h
3084
U64 SASAddress; /* 0x10 */
sys/dev/mpi3mr/mpi/mpi30_cnfg.h
3716
U64 EnclosureLogicalID; /* 0x08 */
sys/dev/mpi3mr/mpi/mpi30_cnfg.h
3772
U64 SASAddress; /* 0x00 */
sys/dev/mpi3mr/mpi/mpi30_cnfg.h
3930
U64 WWID; /* 0x10 */
sys/dev/mpi3mr/mpi/mpi30_cnfg.h
448
U64 IOC_WWID; /* 0x00 */
sys/dev/mpi3mr/mpi/mpi30_cnfg.h
449
U64 DeviceName; /* 0x08 */
sys/dev/mpi3mr/mpi/mpi30_cnfg.h
450
U64 SATA_WWID; /* 0x10 */
sys/dev/mpi3mr/mpi/mpi30_init.h
153
U64 SenseDataBufferAddress; /* 0x30 */
sys/dev/mpi3mr/mpi/mpi30_ioc.h
1005
U64 SASAddress; /* 0x08 */
sys/dev/mpi3mr/mpi/mpi30_ioc.h
1022
U64 SASAddress; /* 0x08 */
sys/dev/mpi3mr/mpi/mpi30_ioc.h
1129
U64 TimeStamp; /* 0x00 */
sys/dev/mpi3mr/mpi/mpi30_ioc.h
1627
U64 Param64[2]; /* 0x10 */
sys/dev/mpi3mr/mpi/mpi30_ioc.h
1646
U64 Value64[2]; /* 0x10 */
sys/dev/mpi3mr/mpi/mpi30_ioc.h
319
U64 BaseAddress; /* 0x18 */
sys/dev/mpi3mr/mpi/mpi30_ioc.h
368
U64 BaseAddress; /* 0x18 */
sys/dev/mpi3mr/mpi/mpi30_ioc.h
621
U64 WWID; /* 0x08 */
sys/dev/mpi3mr/mpi/mpi30_ioc.h
63
U64 TimeStamp; /* 0x10 */
sys/dev/mpi3mr/mpi/mpi30_ioc.h
69
U64 ReplyFreeQueueAddress; /* 0x20 */
sys/dev/mpi3mr/mpi/mpi30_ioc.h
73
U64 SenseBufferFreeQueueAddress; /* 0x30 */
sys/dev/mpi3mr/mpi/mpi30_ioc.h
74
U64 DriverInformationAddress; /* 0x38 */
sys/dev/mpi3mr/mpi/mpi30_ioc.h
811
U64 TimeStamp; /* 0x00 */
sys/dev/mpi3mr/mpi/mpi30_ioc.h
845
U64 SASAddress; /* 0x08 */
sys/dev/mpi3mr/mpi/mpi30_ioc.h
954
U64 Timestamp; /* 0x00 */
sys/dev/mpi3mr/mpi/mpi30_sas.h
75
U64 SASAddress; /* 0x18 */
sys/dev/mpi3mr/mpi/mpi30_targ.h
117
U64 BaseAddress; /* 0x10 */
sys/dev/mpi3mr/mpi/mpi30_tool.h
313
U64 Phys; /* 0x10 */
sys/dev/mpi3mr/mpi/mpi30_tool.h
331
U64 TestedPhys; /* 0x10 */
sys/dev/mpi3mr/mpi/mpi30_tool.h
332
U64 FailedPhys; /* 0x18 */
sys/dev/mpi3mr/mpi/mpi30_tool.h
357
U64 Address; /* 0x10 */
sys/dev/mpi3mr/mpi/mpi30_tool.h
445
U64 Context; /* 0x10 */
sys/dev/mpi3mr/mpi/mpi30_tool.h
474
U64 Context; /* 0x10 */
sys/dev/mpi3mr/mpi/mpi30_transport.h
134
U64 IOCInformation; /* 0x00 */
sys/dev/mpi3mr/mpi/mpi30_transport.h
142
U64 AdminRequestQueueAddress; /* 0x28 */
sys/dev/mpi3mr/mpi/mpi30_transport.h
143
U64 AdminReplyQueueAddress; /* 0x30 */
sys/dev/mpi3mr/mpi/mpi30_transport.h
159
U64 HCBAddress; /* 0x1C30 */
sys/dev/mpi3mr/mpi/mpi30_transport.h
165
U64 DiagRWData; /* 0x1C50 */
sys/dev/mpi3mr/mpi/mpi30_transport.h
166
U64 DiagRWAddress; /* 0x1C58 */
sys/dev/mpi3mr/mpi/mpi30_transport.h
397
U64 ReplyFrameAddress; /* 0x00 */
sys/dev/mpi3mr/mpi/mpi30_transport.h
480
U64 Address; /* 0x00 */
sys/dev/mpi3mr/mpi/mpi30_transport.h
496
U64 Reserved00; /* 0x00 */
sys/dev/mpi3mr/mpi/mpi30_type.h
94
typedef U64 *PU64;
sys/dev/mpi3mr/mpi3mr.c
1226
U64 *start_time)
sys/dev/mpi3mr/mpi3mr.c
266
U64 reply_dma)
sys/dev/mpi3mr/mpi3mr.c
2750
U64 ioc_info, start_ticks = 0;
sys/dev/mpi3mr/mpi3mr.c
282
U64 sense_buf_phys)
sys/dev/mpi3mr/mpi3mr.c
3205
U64 elapsed_time = 0;
sys/dev/mpi3mr/mpi3mr.c
446
sgel->Address = (U64)dma_addr;
sys/dev/mpi3mr/mpi3mr.c
4480
Mpi3DefaultReplyDescriptor_t *reply_desc, U64 *reply_dma)
sys/dev/mpi3mr/mpi3mr.c
4610
U64 reply_dma = 0;
sys/dev/mpi3mr/mpi3mr.c
4687
Mpi3DefaultReplyDescriptor_t *reply_desc, U64 *reply_dma)
sys/dev/mpi3mr/mpi3mr.c
5063
U64 reply_dma = 0;
sys/dev/mpi3mr/mpi3mr.c
658
create_req.BaseAddress = (U64)op_reply_q->q_base_phys;
sys/dev/mpi3mr/mpi3mr.c
80
U64 reply_dma);
sys/dev/mpi3mr/mpi3mr.c
806
create_req.BaseAddress = (U64)op_req_q->q_base_phys;
sys/dev/mpi3mr/mpi3mr.h
638
U64 *reply_free_q;
sys/dev/mpi3mr/mpi3mr.h
652
U64 *sense_buf_q;
sys/dev/mpi3mr/mpi3mr.h
934
Mpi3DefaultReplyDescriptor_t *reply_desc, U64 *reply_dma);
sys/dev/mpi3mr/mpi3mr_app.c
182
U64 sgl_dma;
sys/dev/mpi3mr/mpi3mr_app.c
188
U64 sgemod_mask = ((U64)((sc->facts.sge_mod_mask) <<
sys/dev/mpi3mr/mpi3mr_app.c
190
U64 sgemod_val = ((U64)(sc->facts.sge_mod_value) <<
sys/dev/mpi3mr/mpi3mr_app.c
216
sgl_dma = (U64)sc->ioctl_chain_sge.dma_addr;
sys/dev/mpi3mr/mpi3mr_app.c
266
U64 *prp_entry, *prp1_entry, *prp2_entry;
sys/dev/mpi3mr/mpi3mr_app.c
267
U64 *prp_page;
sys/dev/mpi3mr/mpi3mr_app.c
274
U64 sgemod_mask = ((U64)((sc->facts.sge_mod_mask) <<
sys/dev/mpi3mr/mpi3mr_app.c
276
U64 sgemod_val = ((U64)(sc->facts.sge_mod_value) <<
sys/dev/mpi3mr/mpi3mr_app.c
374
prp1_entry = (U64 *)((U8 *)(nvme_encap_request->Command) + MPI3MR_NVME_CMD_PRP1_OFFSET);
sys/dev/mpi3mr/mpi3mr_app.c
375
prp2_entry = (U64 *)((U8 *)(nvme_encap_request->Command) + MPI3MR_NVME_CMD_PRP2_OFFSET);
sys/dev/mpi3mr/mpi3mr_app.h
248
U64 base_addr;
sys/dev/mpi3mr/mpi3mr_cam.h
58
U64 sas_address;
sys/dev/mpr/mpi/mpi2.h
1157
U64 Address;
sys/dev/mpr/mpi/mpi2.h
1192
U64 Address;
sys/dev/mpr/mpi/mpi2.h
503
U64 Words;
sys/dev/mpr/mpi/mpi2.h
653
U64 Words;
sys/dev/mpr/mpi/mpi2.h
904
U64 Address;
sys/dev/mpr/mpi/mpi2.h
914
U64 Address64;
sys/dev/mpr/mpi/mpi2.h
937
U64 Address;
sys/dev/mpr/mpi/mpi2.h
949
U64 Address64;
sys/dev/mpr/mpi/mpi2_cnfg.h
1018
U64 RaidAcceleratorBufferBaseAddress; /* 0x04 */
sys/dev/mpr/mpi/mpi2_cnfg.h
1019
U64 RaidAcceleratorBufferSize; /* 0x0C */
sys/dev/mpr/mpi/mpi2_cnfg.h
1020
U64 RaidAcceleratorControlBaseAddress; /* 0x14 */
sys/dev/mpr/mpi/mpi2_cnfg.h
1051
U64 RaidAcceleratorHostControlBaseAddress; /* 0x08 */
sys/dev/mpr/mpi/mpi2_cnfg.h
1586
U64 SASAddress; /* 0x00 */
sys/dev/mpr/mpi/mpi2_cnfg.h
1595
U64 EnclosureLogicalID; /* 0x00 */
sys/dev/mpr/mpi/mpi2_cnfg.h
1607
U64 DeviceName; /* 0x00 */
sys/dev/mpr/mpi/mpi2_cnfg.h
1673
U64 WWID; /* 0x00 */
sys/dev/mpr/mpi/mpi2_cnfg.h
1714
U64 ReassignmentWWID; /* 0x00 */
sys/dev/mpr/mpi/mpi2_cnfg.h
1715
U64 ReassignmentDeviceName; /* 0x08 */
sys/dev/mpr/mpi/mpi2_cnfg.h
1793
U64 MaxLBA; /* 0x10 */
sys/dev/mpr/mpi/mpi2_cnfg.h
1870
U64 WWID; /* 0x30 */
sys/dev/mpr/mpi/mpi2_cnfg.h
1919
U64 DeviceMaxLBA; /* 0x58 */
sys/dev/mpr/mpi/mpi2_cnfg.h
1920
U64 HostMaxLBA; /* 0x60 */
sys/dev/mpr/mpi/mpi2_cnfg.h
1921
U64 CoercedMaxLBA; /* 0x68 */
sys/dev/mpr/mpi/mpi2_cnfg.h
1993
U64 WWID; /* 0x04 */
sys/dev/mpr/mpi/mpi2_cnfg.h
1994
U64 OwnerWWID; /* 0x0C */
sys/dev/mpr/mpi/mpi2_cnfg.h
2564
U64 TimeStamp; /* 0x08 */
sys/dev/mpr/mpi/mpi2_cnfg.h
2593
U64 SASAddress; /* 0x0C */
sys/dev/mpr/mpi/mpi2_cnfg.h
2606
U64 ActiveZoneManagerSASAddress;/* 0x2C */
sys/dev/mpr/mpi/mpi2_cnfg.h
2713
U64 SASAddress; /* 0x0C */
sys/dev/mpr/mpi/mpi2_cnfg.h
2724
U64 DeviceName; /* 0x24 */
sys/dev/mpr/mpi/mpi2_cnfg.h
2784
U64 SASAddress; /* 0x0C */
sys/dev/mpr/mpi/mpi2_cnfg.h
3021
U64 SASAddress; /* 0x10 */
sys/dev/mpr/mpi/mpi2_cnfg.h
3042
U64 EnclosureLogicalID; /* 0x0C */
sys/dev/mpr/mpi/mpi2_cnfg.h
3109
U64 TimeStamp; /* 0x00 */
sys/dev/mpr/mpi/mpi2_cnfg.h
3203
U64 PhysicalIdentifier; /* 0x00 */
sys/dev/mpr/mpi/mpi2_cnfg.h
3560
U64 WWID; /* 0x0C */
sys/dev/mpr/mpi/mpi2_cnfg.h
778
U64 WWID; /* 0x00 */
sys/dev/mpr/mpi/mpi2_cnfg.h
779
U64 DeviceName; /* 0x08 */
sys/dev/mpr/mpi/mpi2_cnfg.h
939
U64 UniqueValue; /* 0x04 */
sys/dev/mpr/mpi/mpi2_hbd.h
81
U64 SASAddress; /* 0x10 */
sys/dev/mpr/mpi/mpi2_ioc.h
1008
U64 SASAddress; /* 0x04 */
sys/dev/mpr/mpi/mpi2_ioc.h
1093
U64 EnclosureLogicalID; /* 0x04 */
sys/dev/mpr/mpi/mpi2_ioc.h
1118
U64 TimeStamp; /* 0x00 */
sys/dev/mpr/mpi/mpi2_ioc.h
1165
U64 SASAddress; /* 0x0C */
sys/dev/mpr/mpi/mpi2_ioc.h
1225
U64 WWID; /* 0x0C */
sys/dev/mpr/mpi/mpi2_ioc.h
1348
U64 TimeStamp; /* 0x00 */
sys/dev/mpr/mpi/mpi2_ioc.h
1789
U64 LookupAddress; /* 0x18 */
sys/dev/mpr/mpi/mpi2_ioc.h
250
U64 SystemRequestFrameBaseAddress; /* 0x28 */
sys/dev/mpr/mpi/mpi2_ioc.h
251
U64 ReplyDescriptorPostQueueAddress;/* 0x30 */
sys/dev/mpr/mpi/mpi2_ioc.h
252
U64 ReplyFreeQueueAddress; /* 0x38 */
sys/dev/mpr/mpi/mpi2_ioc.h
253
U64 TimeStamp; /* 0x40 */
sys/dev/mpr/mpi/mpi2_ioc.h
289
U64 RDPQBaseAddress; /* 0x00 */
sys/dev/mpr/mpi/mpi2_ioc.h
623
U64 TimeStamp; /* 0x00 */
sys/dev/mpr/mpi/mpi2_ioc.h
764
U64 SASAddress; /* 0x0C */
sys/dev/mpr/mpi/mpi2_ioc.h
992
U64 SASAddress; /* 0x04 */
sys/dev/mpr/mpi/mpi2_pci.h
91
U64 ErrorResponseBaseAddress; /* 0x10 */
sys/dev/mpr/mpi/mpi2_ra.h
82
U64 RaidAcceleratorControlBlockAddress; /* 0x0C */
sys/dev/mpr/mpi/mpi2_raid.h
256
U64 VolumeMaxLBA; /* 0x10 */
sys/dev/mpr/mpi/mpi2_raid.h
312
U64 TotalBlocks; /* 0x00 */
sys/dev/mpr/mpi/mpi2_raid.h
313
U64 BlocksRemaining; /* 0x08 */
sys/dev/mpr/mpi/mpi2_sas.h
146
U64 SASAddress; /* 0x10 */
sys/dev/mpr/mpi/mpi2_sas.h
281
U64 LookupAddress; /* 0x18 */
sys/dev/mpr/mpi/mpi2_tool.h
513
U64 BufferAddress; /* 0x0C */
sys/dev/mpr/mpi/mpi2_type.h
122
typedef U64 *PU64;
sys/dev/mpr/mprvar.h
116
U64 Reserve3[3]; /* 0x14 */
sys/dev/mpr/mprvar.h
120
U64 opDebugEnable; /* 0x30 */
sys/dev/mpr/mprvar.h
121
U64 PlDebugEnable; /* 0x38 */
sys/dev/mpr/mprvar.h
122
U64 IrDebugEnable; /* 0x40 */
sys/dev/mpr/mprvar.h
780
mpr_from_u64(uint64_t data, U64 *mpr)
sys/dev/mpr/mprvar.h
787
mpr_to_u64(U64 *data)
sys/dev/mps/mpi/mpi2.h
388
U64 Words;
sys/dev/mps/mpi/mpi2.h
494
U64 Words;
sys/dev/mps/mpi/mpi2.h
741
U64 Address;
sys/dev/mps/mpi/mpi2.h
751
U64 Address64;
sys/dev/mps/mpi/mpi2.h
774
U64 Address;
sys/dev/mps/mpi/mpi2.h
786
U64 Address64;
sys/dev/mps/mpi/mpi2.h
993
U64 Address;
sys/dev/mps/mpi/mpi2_cnfg.h
1131
U64 SASAddress; /* 0x00 */
sys/dev/mps/mpi/mpi2_cnfg.h
1140
U64 EnclosureLogicalID; /* 0x00 */
sys/dev/mps/mpi/mpi2_cnfg.h
1152
U64 DeviceName; /* 0x00 */
sys/dev/mps/mpi/mpi2_cnfg.h
1248
U64 ReassignmentWWID; /* 0x00 */
sys/dev/mps/mpi/mpi2_cnfg.h
1249
U64 ReassignmentDeviceName; /* 0x08 */
sys/dev/mps/mpi/mpi2_cnfg.h
1327
U64 MaxLBA; /* 0x10 */
sys/dev/mps/mpi/mpi2_cnfg.h
1404
U64 WWID; /* 0x30 */
sys/dev/mps/mpi/mpi2_cnfg.h
1453
U64 DeviceMaxLBA; /* 0x58 */
sys/dev/mps/mpi/mpi2_cnfg.h
1454
U64 HostMaxLBA; /* 0x60 */
sys/dev/mps/mpi/mpi2_cnfg.h
1455
U64 CoercedMaxLBA; /* 0x68 */
sys/dev/mps/mpi/mpi2_cnfg.h
1527
U64 WWID; /* 0x04 */
sys/dev/mps/mpi/mpi2_cnfg.h
1528
U64 OwnerWWID; /* 0x0C */
sys/dev/mps/mpi/mpi2_cnfg.h
2074
U64 SASAddress; /* 0x0C */
sys/dev/mps/mpi/mpi2_cnfg.h
2087
U64 ActiveZoneManagerSASAddress;/* 0x2C */
sys/dev/mps/mpi/mpi2_cnfg.h
2194
U64 SASAddress; /* 0x0C */
sys/dev/mps/mpi/mpi2_cnfg.h
2205
U64 DeviceName; /* 0x24 */
sys/dev/mps/mpi/mpi2_cnfg.h
2260
U64 SASAddress; /* 0x0C */
sys/dev/mps/mpi/mpi2_cnfg.h
2486
U64 SASAddress; /* 0x10 */
sys/dev/mps/mpi/mpi2_cnfg.h
2507
U64 EnclosureLogicalID; /* 0x0C */
sys/dev/mps/mpi/mpi2_cnfg.h
2549
U64 TimeStamp; /* 0x00 */
sys/dev/mps/mpi/mpi2_cnfg.h
2643
U64 PhysicalIdentifier; /* 0x00 */
sys/dev/mps/mpi/mpi2_cnfg.h
588
U64 WWID; /* 0x00 */
sys/dev/mps/mpi/mpi2_cnfg.h
589
U64 DeviceName; /* 0x08 */
sys/dev/mps/mpi/mpi2_cnfg.h
737
U64 UniqueValue; /* 0x04 */
sys/dev/mps/mpi/mpi2_cnfg.h
809
U64 RaidAcceleratorBufferBaseAddress; /* 0x04 */
sys/dev/mps/mpi/mpi2_cnfg.h
810
U64 RaidAcceleratorBufferSize; /* 0x0C */
sys/dev/mps/mpi/mpi2_cnfg.h
811
U64 RaidAcceleratorControlBaseAddress; /* 0x14 */
sys/dev/mps/mpi/mpi2_cnfg.h
842
U64 RaidAcceleratorHostControlBaseAddress; /* 0x08 */
sys/dev/mps/mpi/mpi2_hbd.h
75
U64 SASAddress; /* 0x10 */
sys/dev/mps/mpi/mpi2_ioc.h
180
U64 SystemRequestFrameBaseAddress; /* 0x28 */
sys/dev/mps/mpi/mpi2_ioc.h
181
U64 ReplyDescriptorPostQueueAddress;/* 0x30 */
sys/dev/mps/mpi/mpi2_ioc.h
182
U64 ReplyFreeQueueAddress; /* 0x38 */
sys/dev/mps/mpi/mpi2_ioc.h
183
U64 TimeStamp; /* 0x40 */
sys/dev/mps/mpi/mpi2_ioc.h
511
U64 TimeStamp; /* 0x00 */
sys/dev/mps/mpi/mpi2_ioc.h
567
U64 SASAddress; /* 0x0C */
sys/dev/mps/mpi/mpi2_ioc.h
776
U64 SASAddress; /* 0x04 */
sys/dev/mps/mpi/mpi2_ioc.h
792
U64 SASAddress; /* 0x04 */
sys/dev/mps/mpi/mpi2_ioc.h
875
U64 EnclosureLogicalID; /* 0x04 */
sys/dev/mps/mpi/mpi2_ioc.h
892
U64 TimeStamp; /* 0x00 */
sys/dev/mps/mpi/mpi2_ra.h
83
U64 RaidAcceleratorControlBlockAddress; /* 0x0C */
sys/dev/mps/mpi/mpi2_raid.h
242
U64 VolumeMaxLBA; /* 0x10 */
sys/dev/mps/mpi/mpi2_raid.h
280
U64 TotalBlocks; /* 0x00 */
sys/dev/mps/mpi/mpi2_raid.h
281
U64 BlocksRemaining; /* 0x08 */
sys/dev/mps/mpi/mpi2_sas.h
135
U64 SASAddress; /* 0x10 */
sys/dev/mps/mpi/mpi2_sas.h
257
U64 LookupAddress; /* 0x18 */
sys/dev/mps/mpi/mpi2_tool.h
366
U64 BufferAddress; /* 0x0C */
sys/dev/mps/mpi/mpi2_type.h
123
typedef U64 *PU64;
sys/dev/mps/mpsvar.h
701
mps_from_u64(uint64_t data, U64 *mps)
sys/dev/mps/mpsvar.h
708
mps_to_u64(U64 *data)
sys/dev/mpt/mpilib/mpi.h
386
U64 Address;
sys/dev/mpt/mpilib/mpi.h
396
U64 Address64;
sys/dev/mpt/mpilib/mpi.h
419
U64 Address;
sys/dev/mpt/mpilib/mpi.h
431
U64 Address64;
sys/dev/mpt/mpilib/mpi_cnfg.h
1368
U64 WWPN; /* 00h */
sys/dev/mpt/mpilib/mpi_cnfg.h
1387
U64 SASAddress; /* 00h */
sys/dev/mpt/mpilib/mpi_cnfg.h
1406
U64 EnclosureLogicalID; /* 00h */
sys/dev/mpt/mpilib/mpi_cnfg.h
1466
U64 ReassignmentBaseWWID; /* 04h */
sys/dev/mpt/mpilib/mpi_cnfg.h
1736
U64 WWNN; /* 10h */
sys/dev/mpt/mpilib/mpi_cnfg.h
1737
U64 WWPN; /* 18h */
sys/dev/mpt/mpilib/mpi_cnfg.h
1742
U64 FabricWWNN; /* 30h */
sys/dev/mpt/mpilib/mpi_cnfg.h
1743
U64 FabricWWPN; /* 38h */
sys/dev/mpt/mpilib/mpi_cnfg.h
1819
U64 NoSEEPROMWWNN; /* 08h */
sys/dev/mpt/mpilib/mpi_cnfg.h
1820
U64 NoSEEPROMWWPN; /* 10h */
sys/dev/mpt/mpilib/mpi_cnfg.h
1892
U64 WWNN; /* 00h */
sys/dev/mpt/mpilib/mpi_cnfg.h
1893
U64 WWPN; /* 08h */
sys/dev/mpt/mpilib/mpi_cnfg.h
1962
U64 AliasWWNN; /* 04h */
sys/dev/mpt/mpilib/mpi_cnfg.h
1963
U64 AliasWWPN; /* 0Ch */
sys/dev/mpt/mpilib/mpi_cnfg.h
1987
U64 TimeSinceReset; /* 08h */
sys/dev/mpt/mpilib/mpi_cnfg.h
1988
U64 TxFrames; /* 10h */
sys/dev/mpt/mpilib/mpi_cnfg.h
1989
U64 RxFrames; /* 18h */
sys/dev/mpt/mpilib/mpi_cnfg.h
1990
U64 TxWords; /* 20h */
sys/dev/mpt/mpilib/mpi_cnfg.h
1991
U64 RxWords; /* 28h */
sys/dev/mpt/mpilib/mpi_cnfg.h
1992
U64 LipCount; /* 30h */
sys/dev/mpt/mpilib/mpi_cnfg.h
1993
U64 NosCount; /* 38h */
sys/dev/mpt/mpilib/mpi_cnfg.h
1994
U64 ErrorFrames; /* 40h */
sys/dev/mpt/mpilib/mpi_cnfg.h
1995
U64 DumpedFrames; /* 48h */
sys/dev/mpt/mpilib/mpi_cnfg.h
1996
U64 LinkFailureCount; /* 50h */
sys/dev/mpt/mpilib/mpi_cnfg.h
1997
U64 LossOfSyncCount; /* 58h */
sys/dev/mpt/mpilib/mpi_cnfg.h
1998
U64 LossOfSignalCount; /* 60h */
sys/dev/mpt/mpilib/mpi_cnfg.h
1999
U64 PrimativeSeqErrCount; /* 68h */
sys/dev/mpt/mpilib/mpi_cnfg.h
2000
U64 InvalidTxWordCount; /* 70h */
sys/dev/mpt/mpilib/mpi_cnfg.h
2001
U64 InvalidCrcCount; /* 78h */
sys/dev/mpt/mpilib/mpi_cnfg.h
2002
U64 FcpInitiatorIoCount; /* 80h */
sys/dev/mpt/mpilib/mpi_cnfg.h
2031
U64 GlobalWWPN; /* 08h */
sys/dev/mpt/mpilib/mpi_cnfg.h
2032
U64 GlobalWWNN; /* 10h */
sys/dev/mpt/mpilib/mpi_cnfg.h
2178
U64 WWNN; /* 04h */
sys/dev/mpt/mpilib/mpi_cnfg.h
2179
U64 WWPN; /* 0Ch */
sys/dev/mpt/mpilib/mpi_cnfg.h
2333
U64 WWID; /* 40h */
sys/dev/mpt/mpilib/mpi_cnfg.h
2427
U64 WWID; /* 04h */
sys/dev/mpt/mpilib/mpi_cnfg.h
2428
U64 OwnerWWID; /* 0Ch */
sys/dev/mpt/mpilib/mpi_cnfg.h
2751
U64 SASAddress; /* 0Ch */
sys/dev/mpt/mpilib/mpi_cnfg.h
2842
U64 SASAddress; /* 0Ch */
sys/dev/mpt/mpilib/mpi_cnfg.h
2896
U64 SASAddress; /* 0Ch */
sys/dev/mpt/mpilib/mpi_cnfg.h
2910
U64 PhysicalIdentifier; /* 08h */
sys/dev/mpt/mpilib/mpi_cnfg.h
2934
U64 SASAddress; /* 0Ch */
sys/dev/mpt/mpilib/mpi_cnfg.h
3013
U64 EnclosureLogicalID; /* 0Ch */
sys/dev/mpt/mpilib/mpi_cnfg.h
744
U64 BaseWWID; /* 04h */
sys/dev/mpt/mpilib/mpi_cnfg.h
750
U64 ForceWWID[MPI_MANPAGE5_NUM_FORCEWWID]; /* 18h */
sys/dev/mpt/mpilib/mpi_cnfg.h
861
U64 UniqueValue; /* 04h */
sys/dev/mpt/mpilib/mpi_init.h
281
U64 WWID;
sys/dev/mpt/mpilib/mpi_ioc.h
624
U64 SASAddress; /* 10h */
sys/dev/mpt/mpilib/mpi_ioc.h
847
U64 SASAddress; /* 04h */
sys/dev/mpt/mpilib/mpi_ioc.h
913
U64 SASAddress; /* 04h */
sys/dev/mpt/mpilib/mpi_ioc.h
931
U64 SASAddress; /* 04h */
sys/dev/mpt/mpilib/mpi_ioc.h
949
U64 SASAddress; /* 04h */
sys/dev/mpt/mpilib/mpi_ioc.h
965
U64 SASAddress; /* 08h */
sys/dev/mpt/mpilib/mpi_raid.h
186
U64 TotalBlocks; /* 00h */
sys/dev/mpt/mpilib/mpi_raid.h
187
U64 BlocksRemaining; /* 08h */
sys/dev/mpt/mpilib/mpi_sas.h
135
U64 SASAddress; /* 10h */
sys/dev/mpt/mpilib/mpi_sas.h
251
U64 SASAddress; /* 14h */
sys/dev/mpt/mpilib/mpi_targ.h
105
U64 PhysicalAddress64;
sys/dev/mpt/mpilib/mpi_tool.h
305
U64 BufferAddress; /* 28h */
sys/dev/mpt/mpilib/mpi_type.h
122
typedef U64 *PU64;
sys/dev/pms/freebsd/driver/common/lxosapi.c
713
U64 ostiTimeStamp64( tiRoot_t *ptiRoot )
sys/dev/pms/freebsd/driver/common/lxosapi.c
715
U64 retVal;
sys/dev/pms/freebsd/driver/common/lxutil.c
647
*VirtAlloc = (void*)( (U64)pmsc->typh_mem + pmsc->typhIdx );
sys/dev/pms/freebsd/driver/common/lxutil.c
650
residAlign = (U64)*VirtAddr - (U64)*VirtAlloc; // find alignment needed
sys/dev/pms/freebsd/driver/common/lxutil.c
654
pDmaAddr = (vm_paddr_t*)( (U64)pmsc->typh_busaddr + pmsc->tyPhsIx );
sys/dev/pms/freebsd/driver/common/lxutil.c
656
(vm_paddr_t*)( ( (U64)pDmaAddr + alignOffset ) & ~alignOffset );
sys/dev/pms/freebsd/driver/common/lxutil.c
658
residAlign = (U64)lPhysAligned - (U64)pDmaAddr; // find alignment needed
sys/dev/pms/freebsd/driver/common/lxutil.c
660
*pPhysAddrUp = HIGH_32_BITS( (U64)lPhysAligned );
sys/dev/pms/freebsd/driver/common/lxutil.c
661
*pPhysAddrLow = LOW_32_BITS( (U64)lPhysAligned );
sys/dev/pms/freebsd/driver/ini/src/agtiapi.c
1742
pMem->nocache_mem = (void*)((U64)pmcsc->osti_mem + ( idx * nomsize ));
sys/dev/pms/freebsd/driver/ini/src/agtiapi.c
5087
pccb->sgList = (void*)((U64)pCard->tisgl_mem + ((i + offset) * sgl_sz));
usr.sbin/mpsutil/mpsutil.h
148
mps_to_u64(U64 *data)