Symbol: UINT64
crypto/openssh/umac.c
1053
UINT64 result_buf[STREAMS];
crypto/openssh/umac.c
1106
UINT64 result_buf[STREAMS];
crypto/openssh/umac.c
1130
UINT8 nh_result[STREAMS*sizeof(UINT64)];
crypto/openssh/umac.c
131
#define MUL64(a,b) ((UINT64)((UINT64)(UINT32)(a) * (UINT64)(UINT32)(b)))
crypto/openssh/umac.c
272
*((UINT64 *)buf) ^= ((UINT64 *)pc->cache)[ndx];
crypto/openssh/umac.c
274
((UINT64 *)buf)[0] ^= ((UINT64 *)pc->cache)[0];
crypto/openssh/umac.c
277
((UINT64 *)buf)[0] ^= ((UINT64 *)pc->cache)[0];
crypto/openssh/umac.c
278
((UINT64 *)buf)[1] ^= ((UINT64 *)pc->cache)[1];
crypto/openssh/umac.c
326
UINT64 state[STREAMS]; /* on-line state */
crypto/openssh/umac.c
339
UINT64 h;
crypto/openssh/umac.c
346
h = *((UINT64 *)hp);
crypto/openssh/umac.c
362
*((UINT64 *)hp) = h;
crypto/openssh/umac.c
372
UINT64 h1,h2;
crypto/openssh/umac.c
380
h1 = *((UINT64 *)hp);
crypto/openssh/umac.c
381
h2 = *((UINT64 *)hp + 1);
crypto/openssh/umac.c
408
((UINT64 *)hp)[0] = h1;
crypto/openssh/umac.c
409
((UINT64 *)hp)[1] = h2;
crypto/openssh/umac.c
419
UINT64 h1,h2,h3;
crypto/openssh/umac.c
427
h1 = *((UINT64 *)hp);
crypto/openssh/umac.c
428
h2 = *((UINT64 *)hp + 1);
crypto/openssh/umac.c
429
h3 = *((UINT64 *)hp + 2);
crypto/openssh/umac.c
462
((UINT64 *)hp)[0] = h1;
crypto/openssh/umac.c
463
((UINT64 *)hp)[1] = h2;
crypto/openssh/umac.c
464
((UINT64 *)hp)[2] = h3;
crypto/openssh/umac.c
474
UINT64 h1,h2,h3,h4;
crypto/openssh/umac.c
483
h1 = *((UINT64 *)hp);
crypto/openssh/umac.c
484
h2 = *((UINT64 *)hp + 1);
crypto/openssh/umac.c
485
h3 = *((UINT64 *)hp + 2);
crypto/openssh/umac.c
486
h4 = *((UINT64 *)hp + 3);
crypto/openssh/umac.c
525
((UINT64 *)hp)[0] = h1;
crypto/openssh/umac.c
526
((UINT64 *)hp)[1] = h2;
crypto/openssh/umac.c
527
((UINT64 *)hp)[2] = h3;
crypto/openssh/umac.c
528
((UINT64 *)hp)[3] = h4;
crypto/openssh/umac.c
693
((UINT64 *)result)[0] = ((UINT64 *)hc->state)[0] + nbits;
crypto/openssh/umac.c
695
((UINT64 *)result)[1] = ((UINT64 *)hc->state)[1] + nbits;
crypto/openssh/umac.c
698
((UINT64 *)result)[2] = ((UINT64 *)hc->state)[2] + nbits;
crypto/openssh/umac.c
701
((UINT64 *)result)[3] = ((UINT64 *)hc->state)[3] + nbits;
crypto/openssh/umac.c
720
((UINT64 *)result)[0] = nbits;
crypto/openssh/umac.c
722
((UINT64 *)result)[1] = nbits;
crypto/openssh/umac.c
725
((UINT64 *)result)[2] = nbits;
crypto/openssh/umac.c
728
((UINT64 *)result)[3] = nbits;
crypto/openssh/umac.c
769
#define p36 ((UINT64)0x0000000FFFFFFFFBull) /* 2^36 - 5 */
crypto/openssh/umac.c
770
#define p64 ((UINT64)0xFFFFFFFFFFFFFFC5ull) /* 2^64 - 59 */
crypto/openssh/umac.c
771
#define m36 ((UINT64)0x0000000FFFFFFFFFull) /* The low 36 of 64 bits */
crypto/openssh/umac.c
778
UINT64 poly_key_8[STREAMS]; /* p64 poly keys */
crypto/openssh/umac.c
779
UINT64 poly_accum[STREAMS]; /* poly hash result */
crypto/openssh/umac.c
780
UINT64 ip_keys[STREAMS*4]; /* Inner-product keys */
crypto/openssh/umac.c
798
static UINT64 poly64(UINT64 cur, UINT64 key, UINT64 data)
crypto/openssh/umac.c
806
UINT64 X,T,res;
crypto/openssh/umac.c
814
T = ((UINT64)x_lo << 32);
crypto/openssh/umac.c
836
UINT64 *data=(UINT64*)data_in;
crypto/openssh/umac.c
861
static UINT64 ip_aux(UINT64 t, UINT64 *ipkp, UINT64 data)
crypto/openssh/umac.c
863
t = t + ipkp[0] * (UINT64)(UINT16)(data >> 48);
crypto/openssh/umac.c
864
t = t + ipkp[1] * (UINT64)(UINT16)(data >> 32);
crypto/openssh/umac.c
865
t = t + ipkp[2] * (UINT64)(UINT16)(data >> 16);
crypto/openssh/umac.c
866
t = t + ipkp[3] * (UINT64)(UINT16)(data);
crypto/openssh/umac.c
871
static UINT32 ip_reduce_p36(UINT64 t)
crypto/openssh/umac.c
874
UINT64 ret;
crypto/openssh/umac.c
891
UINT64 t;
crypto/openssh/umac.c
892
UINT64 *nhp = (UINT64 *)nh_res;
crypto/openssh/umac.c
917
UINT64 t;
crypto/openssh/umac.c
962
UINT8 buf[(8*STREAMS+4)*sizeof(UINT64)];
crypto/openssh/umac.c
980
ahc->poly_key_8[i] &= ((UINT64)0x01ffffffu << 32) + 0x01ffffffu;
crypto/openssh/umac.c
987
memcpy(ahc->ip_keys+4*i, buf+(8*i+4)*sizeof(UINT64),
crypto/openssh/umac.c
988
4*sizeof(UINT64));
crypto/openssh/umac.c
989
endian_convert_if_le(ahc->ip_keys, sizeof(UINT64),
lib/libefivar/efivar-dp-format.c
2025
LShiftU64 ((UINT64)RamDisk->StartingAddr[1], 32) | RamDisk->StartingAddr[0],
lib/libefivar/efivar-dp-format.c
2026
LShiftU64 ((UINT64)RamDisk->EndingAddr[1], 32) | RamDisk->EndingAddr[0],
lib/libefivar/efivar-dp-format.c
2033
LShiftU64 ((UINT64)RamDisk->StartingAddr[1], 32) | RamDisk->StartingAddr[0],
lib/libefivar/efivar-dp-format.c
2034
LShiftU64 ((UINT64)RamDisk->EndingAddr[1], 32) | RamDisk->EndingAddr[0],
lib/libefivar/efivar-dp-format.c
2041
LShiftU64 ((UINT64)RamDisk->StartingAddr[1], 32) | RamDisk->StartingAddr[0],
lib/libefivar/efivar-dp-format.c
2042
LShiftU64 ((UINT64)RamDisk->EndingAddr[1], 32) | RamDisk->EndingAddr[0],
lib/libefivar/efivar-dp-format.c
2049
LShiftU64 ((UINT64)RamDisk->StartingAddr[1], 32) | RamDisk->StartingAddr[0],
lib/libefivar/efivar-dp-format.c
2050
LShiftU64 ((UINT64)RamDisk->EndingAddr[1], 32) | RamDisk->EndingAddr[0],
lib/libefivar/efivar-dp-format.c
2057
LShiftU64 ((UINT64)RamDisk->StartingAddr[1], 32) | RamDisk->StartingAddr[0],
lib/libefivar/efivar-dp-format.c
2058
LShiftU64 ((UINT64)RamDisk->EndingAddr[1], 32) | RamDisk->EndingAddr[0],
lib/libefivar/efivar-dp-parse.c
1244
Strtoi64 (WWNStr, (UINT64 *) (&FibreEx->WWN));
lib/libefivar/efivar-dp-parse.c
1245
Strtoi64 (LunStr, (UINT64 *) (&FibreEx->Lun));
lib/libefivar/efivar-dp-parse.c
1247
*(UINT64 *) (&FibreEx->WWN) = SwapBytes64 (*(UINT64 *) (&FibreEx->WWN));
lib/libefivar/efivar-dp-parse.c
1248
*(UINT64 *) (&FibreEx->Lun) = SwapBytes64 (*(UINT64 *) (&FibreEx->Lun));
lib/libefivar/efivar-dp-parse.c
1662
UINT64 SasAddress;
lib/libefivar/efivar-dp-parse.c
1663
UINT64 Lun;
lib/libefivar/efivar-dp-parse.c
1681
WriteUnaligned64 ((UINT64 *) &SasEx->SasAddress, SwapBytes64 (SasAddress));
lib/libefivar/efivar-dp-parse.c
1682
WriteUnaligned64 ((UINT64 *) &SasEx->Lun, SwapBytes64 (Lun));
lib/libefivar/efivar-dp-parse.c
3186
UINT64 StartingAddr;
lib/libefivar/efivar-dp-parse.c
3187
UINT64 EndingAddr;
lib/libefivar/efivar-dp-parse.c
3200
WriteUnaligned64 ((UINT64 *) &(RamDisk->StartingAddr[0]), StartingAddr);
lib/libefivar/efivar-dp-parse.c
3202
WriteUnaligned64 ((UINT64 *) &(RamDisk->EndingAddr[0]), EndingAddr);
lib/libefivar/efivar-dp-parse.c
3227
UINT64 StartingAddr;
lib/libefivar/efivar-dp-parse.c
3228
UINT64 EndingAddr;
lib/libefivar/efivar-dp-parse.c
3241
WriteUnaligned64 ((UINT64 *) &(RamDisk->StartingAddr[0]), StartingAddr);
lib/libefivar/efivar-dp-parse.c
3243
WriteUnaligned64 ((UINT64 *) &(RamDisk->EndingAddr[0]), EndingAddr);
lib/libefivar/efivar-dp-parse.c
3268
UINT64 StartingAddr;
lib/libefivar/efivar-dp-parse.c
3269
UINT64 EndingAddr;
lib/libefivar/efivar-dp-parse.c
3282
WriteUnaligned64 ((UINT64 *) &(RamDisk->StartingAddr[0]), StartingAddr);
lib/libefivar/efivar-dp-parse.c
3284
WriteUnaligned64 ((UINT64 *) &(RamDisk->EndingAddr[0]), EndingAddr);
lib/libefivar/efivar-dp-parse.c
3309
UINT64 StartingAddr;
lib/libefivar/efivar-dp-parse.c
3310
UINT64 EndingAddr;
lib/libefivar/efivar-dp-parse.c
3323
WriteUnaligned64 ((UINT64 *) &(RamDisk->StartingAddr[0]), StartingAddr);
lib/libefivar/efivar-dp-parse.c
3325
WriteUnaligned64 ((UINT64 *) &(RamDisk->EndingAddr[0]), EndingAddr);
lib/libefivar/efivar-dp-parse.c
3350
UINT64 StartingAddr;
lib/libefivar/efivar-dp-parse.c
3351
UINT64 EndingAddr;
lib/libefivar/efivar-dp-parse.c
3364
WriteUnaligned64 ((UINT64 *) &(RamDisk->StartingAddr[0]), StartingAddr);
lib/libefivar/efivar-dp-parse.c
3366
WriteUnaligned64 ((UINT64 *) &(RamDisk->EndingAddr[0]), EndingAddr);
lib/libefivar/efivar-dp-parse.c
389
OUT UINT64 *Data
lib/libefivar/efivar-dp-parse.c
723
(UINT64 *) (&BmcDp->BaseAddress),
lib/libefivar/uefi-dplib.h
175
UINT64 Lun;
lib/libefivar/uefi-dplib.h
534
#define Strtoi64(x, y) *(UINT64 *)y = strtoull(x, NULL, 0)
sys/bus/gpio/gpio_acpi/gpio_acpi.c
219
UINT32 BitWidth, UINT64 *Value, void *HandlerContext, void *RegionContext)
sys/bus/gpio/gpio_acpi/gpio_acpi.c
225
UINT64 val;
sys/bus/gpio/gpio_acpi/gpio_acpi.c
90
UINT64 *Value, void *HandlerContext,
sys/bus/smbus/smbacpi/smbacpi.c
122
UINT32 BitWidth, UINT64 *Value, void *HandlerContext, void *RegionContext)
sys/bus/smbus/smbacpi/smbacpi.c
82
UINT64 *Value, void *HandlerContext,
sys/dev/acpica/Osd/OsdHardware.c
114
UINT64 Value, UINT32 Width)
sys/dev/acpica/Osd/OsdHardware.c
93
AcpiOsReadPciConfiguration(ACPI_PCI_ID *PciId, UINT32 Register, UINT64 *Value,
sys/dev/acpica/Osd/OsdMemory.c
229
AcpiOsReadMemory(ACPI_PHYSICAL_ADDRESS Address, UINT64 *Value, UINT32 Width)
sys/dev/acpica/Osd/OsdMemory.c
258
AcpiOsWriteMemory(ACPI_PHYSICAL_ADDRESS Address, UINT64 Value, UINT32 Width)
sys/dev/acpica/Osd/OsdSchedule.c
155
UINT64
sys/dev/acpica/Osd/OsdSchedule.c
164
return (((UINT64) time.tv_sec * 10000000) + ((UINT64) time.tv_usec * 10));
sys/dev/acpica/Osd/OsdSchedule.c
168
AcpiOsSleep(UINT64 Milliseconds)
sys/dev/acpica/acpi_ec.c
269
UINT32 Width, UINT64 *Value,
sys/dev/acpica/acpi_ec.c
284
UINT64 *val, int width);
sys/dev/acpica/acpi_ec.c
286
UINT64 val, int width);
sys/dev/acpica/acpi_ec.c
622
acpi_ec_read_method(device_t dev, u_int addr, UINT64 *val, int width)
sys/dev/acpica/acpi_ec.c
635
acpi_ec_write_method(device_t dev, u_int addr, UINT64 val, int width)
sys/dev/acpica/acpi_ec.c
807
UINT64 *Value, void *Context, void *RegionContext)
sys/dev/acpica/acpi_package.c
44
acpi_PkgInt(ACPI_OBJECT *res, int idx, UINT64 *dst)
sys/dev/acpica/acpi_package.c
59
UINT64 tmp;
sys/dev/acpica/acpi_panasonic/acpi_panasonic.c
266
static UINT64
sys/dev/acpica/acpi_panasonic/acpi_panasonic.c
267
acpi_panasonic_sinf(ACPI_HANDLE h, UINT64 index)
sys/dev/acpica/acpi_panasonic/acpi_panasonic.c
271
UINT64 ret;
sys/dev/acpica/acpi_panasonic/acpi_panasonic.c
287
acpi_panasonic_sset(ACPI_HANDLE h, UINT64 index, UINT64 val)
sys/dev/acpica/acpi_panasonic/acpi_panasonic.c
395
UINT64 val;
sys/dev/acpica/acpi_panasonic/acpi_panasonic.c
83
static UINT64 acpi_panasonic_sinf(ACPI_HANDLE h, UINT64 index);
sys/dev/acpica/acpi_panasonic/acpi_panasonic.c
84
static void acpi_panasonic_sset(ACPI_HANDLE h, UINT64 index, UINT64 val);
sys/dev/acpica/acpi_powerres.c
88
UINT64 ap_systemlevel;
sys/dev/acpica/acpi_powerres.c
89
UINT64 ap_order;
sys/dev/acpica/acpi_resource.c
194
UINT64 min, max, length, gran;
sys/dev/acpica/acpi_smbat.c
194
UINT64 val;
sys/dev/acpica/acpi_smbat.c
261
UINT64 val;
sys/dev/acpica/acpi_thinkpad/acpi_thinkpad.c
1207
UINT64 val_ec;
sys/dev/acpica/acpi_thinkpad/acpi_thinkpad.c
1353
UINT64 val_ec;
sys/dev/acpica/acpi_thinkpad/acpi_thinkpad.c
1402
UINT64 val_ec;
sys/dev/acpica/acpi_thinkpad/acpi_thinkpad.c
1437
UINT64 val_ec;
sys/dev/acpica/acpi_thinkpad/acpi_thinkpad.c
1571
UINT64 speed;
sys/dev/acpica/acpi_thinkpad/acpi_thinkpad.c
754
UINT64 val_ec;
sys/dev/acpica/acpi_thinkpad/acpi_thinkpad.c
894
UINT64 val_ec;
sys/dev/acpica/acpi_wmi/acpi_wmi.c
143
UINT64 *value, void *context,
sys/dev/acpica/acpi_wmi/acpi_wmi.c
661
UINT32 width, UINT64 *value, void *context,
sys/dev/acpica/acpi_wmi/acpi_wmi.c
666
UINT64 ec_data;
sys/dev/acpica/acpivar.h
496
int acpi_PkgInt(ACPI_OBJECT *res, int idx, UINT64 *dst);
sys/dev/acpica/aibs/atk0110.c
337
UINT64 v;
sys/dev/acpica/aibs/atk0110.c
339
const UINT64 l = as[i].l, h = as[i].h;
sys/dev/acpica/aibs/atk0110.c
49
UINT64 i;
sys/dev/acpica/aibs/atk0110.c
50
UINT64 l;
sys/dev/acpica/aibs/atk0110.c
51
UINT64 h;
usr.sbin/acpi/acpicall/acpicall.c
280
printf("%ju", (uintmax_t)*((UINT64 *)buf->Pointer));