Symbol: UINT64
crypto/krb5/src/ccapi/server/win/ccs_os_server.cpp
324
UINT64 h = ccs_win_pipe_getHandle(in_pipe);
crypto/krb5/src/ccapi/server/win/ccs_os_server.cpp
620
UINT64 h = ccs_win_pipe_getHandle(in_pipe);
crypto/krb5/src/ccapi/server/win/ccs_request_proc.c
46
UINT64* p = (UINT64*)(tspHandle);
crypto/krb5/src/ccapi/server/win/ccs_request_proc.c
71
UINT64* p = (UINT64*)(tspHandle);
crypto/krb5/src/ccapi/server/win/ccs_win_pipe.c
154
UINT64 ccs_win_pipe_getHandle (const WIN_PIPE* in_pipe) {
crypto/krb5/src/ccapi/server/win/ccs_win_pipe.c
156
UINT64 result = 0;
crypto/krb5/src/ccapi/server/win/ccs_win_pipe.c
42
struct ccs_win_pipe_t* ccs_win_pipe_new (const char* uuid, const UINT64 h) {
crypto/krb5/src/ccapi/server/win/ccs_win_pipe.h
47
UINT64 clientHandle;
crypto/krb5/src/ccapi/server/win/ccs_win_pipe.h
52
struct ccs_win_pipe_t* ccs_win_pipe_new(const char* uuid, const UINT64 h);
crypto/krb5/src/ccapi/server/win/ccs_win_pipe.h
66
UINT64 ccs_win_pipe_getHandle (const WIN_PIPE* in_pipe);
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),
crypto/openssl/crypto/asn1/asn1_item_list.h
180
ASN1_ITEM_ref(UINT64),
crypto/openssl/crypto/asn1/x_int64.c
261
ASN1_ITEM_start(UINT64) ASN1_ITYPE_PRIMITIVE,
crypto/openssl/crypto/asn1/x_int64.c
262
V_ASN1_INTEGER, NULL, 0, &uint64_pf, 0, "UINT64" ASN1_ITEM_end(UINT64)
crypto/openssl/fuzz/asn1.c
207
ASN1_ITEM_ref(UINT64),
crypto/openssl/include/openssl/asn1t.h
872
DECLARE_ASN1_ITEM(UINT64)
crypto/openssl/include/openssl/e_os2.h
231
typedef UINT64 uint64_t;
crypto/openssl/test/asn1_decode_test.c
142
ASN1_EMBED(ASN1_UINT64_DATA, test_uint64, UINT64),
crypto/openssl/test/asn1_encode_test.c
436
ASN1_EMBED(ASN1_UINT64_DATA, test_uint64, UINT64),
lib/libc/tests/gen/limits_test.c
57
CHECK_UTYPE(uint64_t, UINT64);
lib/libefivar/efivar-dp-format.c
2182
LShiftU64 ((UINT64)RamDisk->StartingAddr[1], 32) | RamDisk->StartingAddr[0],
lib/libefivar/efivar-dp-format.c
2183
LShiftU64 ((UINT64)RamDisk->EndingAddr[1], 32) | RamDisk->EndingAddr[0],
lib/libefivar/efivar-dp-format.c
2190
LShiftU64 ((UINT64)RamDisk->StartingAddr[1], 32) | RamDisk->StartingAddr[0],
lib/libefivar/efivar-dp-format.c
2191
LShiftU64 ((UINT64)RamDisk->EndingAddr[1], 32) | RamDisk->EndingAddr[0],
lib/libefivar/efivar-dp-format.c
2198
LShiftU64 ((UINT64)RamDisk->StartingAddr[1], 32) | RamDisk->StartingAddr[0],
lib/libefivar/efivar-dp-format.c
2199
LShiftU64 ((UINT64)RamDisk->EndingAddr[1], 32) | RamDisk->EndingAddr[0],
lib/libefivar/efivar-dp-format.c
2206
LShiftU64 ((UINT64)RamDisk->StartingAddr[1], 32) | RamDisk->StartingAddr[0],
lib/libefivar/efivar-dp-format.c
2207
LShiftU64 ((UINT64)RamDisk->EndingAddr[1], 32) | RamDisk->EndingAddr[0],
lib/libefivar/efivar-dp-format.c
2214
LShiftU64 ((UINT64)RamDisk->StartingAddr[1], 32) | RamDisk->StartingAddr[0],
lib/libefivar/efivar-dp-format.c
2215
LShiftU64 ((UINT64)RamDisk->EndingAddr[1], 32) | RamDisk->EndingAddr[0],
lib/libefivar/efivar-dp-parse.c
1295
Strtoi64 (WWNStr, (UINT64 *)(&FibreEx->WWN));
lib/libefivar/efivar-dp-parse.c
1296
Strtoi64 (LunStr, (UINT64 *)(&FibreEx->Lun));
lib/libefivar/efivar-dp-parse.c
1298
*(UINT64 *)(&FibreEx->WWN) = SwapBytes64 (*(UINT64 *)(&FibreEx->WWN));
lib/libefivar/efivar-dp-parse.c
1299
*(UINT64 *)(&FibreEx->Lun) = SwapBytes64 (*(UINT64 *)(&FibreEx->Lun));
lib/libefivar/efivar-dp-parse.c
1743
UINT64 SasAddress;
lib/libefivar/efivar-dp-parse.c
1744
UINT64 Lun;
lib/libefivar/efivar-dp-parse.c
1766
WriteUnaligned64 ((UINT64 *)&SasEx->SasAddress, SwapBytes64 (SasAddress));
lib/libefivar/efivar-dp-parse.c
1767
WriteUnaligned64 ((UINT64 *)&SasEx->Lun, SwapBytes64 (Lun));
lib/libefivar/efivar-dp-parse.c
2828
UINT64 Lun;
lib/libefivar/efivar-dp-parse.c
2852
WriteUnaligned64 ((UINT64 *)&ISCSIDevPath->Lun, SwapBytes64 (Lun));
lib/libefivar/efivar-dp-parse.c
3483
UINT64 StartingAddr;
lib/libefivar/efivar-dp-parse.c
3484
UINT64 EndingAddr;
lib/libefivar/efivar-dp-parse.c
3498
WriteUnaligned64 ((UINT64 *)&(RamDisk->StartingAddr[0]), StartingAddr);
lib/libefivar/efivar-dp-parse.c
3500
WriteUnaligned64 ((UINT64 *)&(RamDisk->EndingAddr[0]), EndingAddr);
lib/libefivar/efivar-dp-parse.c
3526
UINT64 StartingAddr;
lib/libefivar/efivar-dp-parse.c
3527
UINT64 EndingAddr;
lib/libefivar/efivar-dp-parse.c
3541
WriteUnaligned64 ((UINT64 *)&(RamDisk->StartingAddr[0]), StartingAddr);
lib/libefivar/efivar-dp-parse.c
3543
WriteUnaligned64 ((UINT64 *)&(RamDisk->EndingAddr[0]), EndingAddr);
lib/libefivar/efivar-dp-parse.c
3569
UINT64 StartingAddr;
lib/libefivar/efivar-dp-parse.c
3570
UINT64 EndingAddr;
lib/libefivar/efivar-dp-parse.c
3584
WriteUnaligned64 ((UINT64 *)&(RamDisk->StartingAddr[0]), StartingAddr);
lib/libefivar/efivar-dp-parse.c
3586
WriteUnaligned64 ((UINT64 *)&(RamDisk->EndingAddr[0]), EndingAddr);
lib/libefivar/efivar-dp-parse.c
3612
UINT64 StartingAddr;
lib/libefivar/efivar-dp-parse.c
3613
UINT64 EndingAddr;
lib/libefivar/efivar-dp-parse.c
3627
WriteUnaligned64 ((UINT64 *)&(RamDisk->StartingAddr[0]), StartingAddr);
lib/libefivar/efivar-dp-parse.c
3629
WriteUnaligned64 ((UINT64 *)&(RamDisk->EndingAddr[0]), EndingAddr);
lib/libefivar/efivar-dp-parse.c
3655
UINT64 StartingAddr;
lib/libefivar/efivar-dp-parse.c
3656
UINT64 EndingAddr;
lib/libefivar/efivar-dp-parse.c
3670
WriteUnaligned64 ((UINT64 *)&(RamDisk->StartingAddr[0]), StartingAddr);
lib/libefivar/efivar-dp-parse.c
3672
WriteUnaligned64 ((UINT64 *)&(RamDisk->EndingAddr[0]), EndingAddr);
lib/libefivar/efivar-dp-parse.c
383
OUT UINT64 *Data
lib/libefivar/efivar-dp-parse.c
734
(UINT64 *)(&BmcDp->BaseAddress),
lib/libefivar/uefi-dplib.h
165
UINT64 Lun;
sbin/hastd/nv.c
417
NV_DEFINE_ADD(uint64, UINT64)
sbin/hastd/nv.c
442
NV_DEFINE_ADD_ARRAY(uint64, UINT64)
sbin/hastd/nv.c
515
NV_DEFINE_GET(uint64, UINT64)
sbin/hastd/nv.c
546
NV_DEFINE_GET_ARRAY(uint64, UINT64)
stand/efi/include/efi_nii.h
41
UINT64 Revision;
stand/efi/include/efi_nii.h
44
UINT64 ID;
stand/efi/include/efi_nii.h
50
UINT64 ImageAddr;
stand/efi/include/efigpt.h
42
UINT64 Attributes;
stand/efi/include/efipciio.h
158
IN UINT64 Offset,
stand/efi/include/efipciio.h
159
IN UINT64 Mask,
stand/efi/include/efipciio.h
160
IN UINT64 Value,
stand/efi/include/efipciio.h
161
IN UINT64 Delay,
stand/efi/include/efipciio.h
162
OUT UINT64 *Result
stand/efi/include/efipciio.h
191
IN UINT64 Offset,
stand/efi/include/efipciio.h
279
IN UINT64 DestOffset,
stand/efi/include/efipciio.h
281
IN UINT64 SrcOffset,
stand/efi/include/efipciio.h
360
IN UINT64 Attributes
stand/efi/include/efipciio.h
447
IN UINT64 Attributes,
stand/efi/include/efipciio.h
448
OUT UINT64 *Result OPTIONAL
stand/efi/include/efipciio.h
478
OUT UINT64 *Supports, OPTIONAL
stand/efi/include/efipciio.h
510
IN UINT64 Attributes,
stand/efi/include/efipciio.h
512
IN OUT UINT64 *Offset,
stand/efi/include/efipciio.h
513
IN OUT UINT64 *Length
stand/efi/include/efipciio.h
543
UINT64 RomSize;
sys/amd64/acpica/acpi_machdep.c
211
sizeof(UINT64);
sys/arm64/acpica/acpi_iort.c
80
UINT64 MemoryProperties;
sys/arm64/acpica/acpi_machdep.c
184
sizeof(UINT64);
sys/compat/linuxkpi/common/include/acpi/acpi.h
73
UINT64 value;
sys/compat/linuxkpi/common/include/acpi/acpi_bus.h
65
UINT64 rev, UINT64 func, union linuxkpi_acpi_object *arg);
sys/compat/linuxkpi/common/src/linux_acpi.c
110
UINT64 rev, UINT64 func, union linuxkpi_acpi_object *pkg)
sys/compat/linuxkpi/common/src/linux_acpi.c
359
UINT64 rev, UINT64 func, union linuxkpi_acpi_object *pkg)
sys/compat/linuxkpi/common/src/linux_acpi.c
78
UINT64 ret;
sys/dev/acpi_support/acpi_ibm.c
1214
UINT64 val_ec;
sys/dev/acpi_support/acpi_ibm.c
1361
UINT64 val_ec;
sys/dev/acpi_support/acpi_ibm.c
1410
UINT64 val_ec;
sys/dev/acpi_support/acpi_ibm.c
1445
UINT64 val_ec;
sys/dev/acpi_support/acpi_ibm.c
751
UINT64 val_ec;
sys/dev/acpi_support/acpi_ibm.c
894
UINT64 val_ec;
sys/dev/acpi_support/acpi_panasonic.c
302
static UINT64
sys/dev/acpi_support/acpi_panasonic.c
303
acpi_panasonic_sinf(ACPI_HANDLE h, UINT64 index)
sys/dev/acpi_support/acpi_panasonic.c
307
UINT64 ret;
sys/dev/acpi_support/acpi_panasonic.c
323
acpi_panasonic_sset(ACPI_HANDLE h, UINT64 index, UINT64 val)
sys/dev/acpi_support/acpi_panasonic.c
431
UINT64 val;
sys/dev/acpi_support/acpi_panasonic.c
86
static UINT64 acpi_panasonic_sinf(ACPI_HANDLE h, UINT64 index);
sys/dev/acpi_support/acpi_panasonic.c
87
static void acpi_panasonic_sset(ACPI_HANDLE h, UINT64 index,
sys/dev/acpi_support/acpi_panasonic.c
88
UINT64 val);
sys/dev/acpi_support/acpi_wmi.c
142
UINT64 *value, void *context,
sys/dev/acpi_support/acpi_wmi.c
695
UINT32 width, UINT64 *value, void *context,
sys/dev/acpi_support/acpi_wmi.c
700
UINT64 ec_data;
sys/dev/acpi_support/acpi_wmi.c
723
*value |= ((UINT64)ec_data) << i;
sys/dev/acpica/Osd/OsdHardware.c
112
AcpiOsReadPciConfiguration(ACPI_PCI_ID *PciId, UINT32 Register, UINT64 *Value,
sys/dev/acpica/Osd/OsdHardware.c
126
*(UINT64 *)Value = pci_cfgregread(PciId->Segment, PciId->Bus, PciId->Device,
sys/dev/acpica/Osd/OsdHardware.c
135
UINT64 Value, UINT32 Width)
sys/dev/acpica/Osd/OsdMemory.c
117
AcpiOsWriteMemory(ACPI_PHYSICAL_ADDRESS Address, UINT64 Value, UINT32 Width)
sys/dev/acpica/Osd/OsdMemory.c
88
AcpiOsReadMemory(ACPI_PHYSICAL_ADDRESS Address, UINT64 *Value, UINT32 Width)
sys/dev/acpica/Osd/OsdSchedule.c
245
AcpiOsSleep(UINT64 Milliseconds)
sys/dev/acpica/Osd/OsdSchedule.c
268
UINT64
sys/dev/acpica/Osd/OsdSchedule.c
272
UINT64 t;
sys/dev/acpica/acpi.c
3106
UINT64
sys/dev/acpica/acpi.c
3119
UINT64 ret = 0;
sys/dev/acpica/acpi.c
3161
UINT64 function, ACPI_OBJECT *package, ACPI_BUFFER *out_buf)
sys/dev/acpica/acpi.c
3169
UINT64 function, ACPI_OBJECT *package, ACPI_BUFFER *out_buf,
sys/dev/acpica/acpi_ec.c
223
UINT32 Width, UINT64 *Value,
sys/dev/acpica/acpi_ec.c
238
UINT64 *val, int width);
sys/dev/acpica/acpi_ec.c
240
UINT64 val, int width);
sys/dev/acpica/acpi_ec.c
582
acpi_ec_read_method(device_t dev, u_int addr, UINT64 *val, int width)
sys/dev/acpica/acpi_ec.c
595
acpi_ec_write_method(device_t dev, u_int addr, UINT64 val, int width)
sys/dev/acpica/acpi_ec.c
773
UINT64 *Value, void *Context, void *RegionContext)
sys/dev/acpica/acpi_package.c
45
acpi_PkgInt(ACPI_OBJECT *res, int idx, UINT64 *dst)
sys/dev/acpica/acpi_package.c
60
UINT64 tmp;
sys/dev/acpica/acpi_package.c
73
UINT64 tmp;
sys/dev/acpica/acpi_pcib_acpi.c
174
UINT64 length, min, max;
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
252
UINT64 min, max, length, gran;
sys/dev/acpica/acpi_smbat.c
193
UINT64 val;
sys/dev/acpica/acpi_smbat.c
260
UINT64 val;
sys/dev/acpica/acpivar.h
382
UINT64 acpi_DSMQuery(ACPI_HANDLE h, const uint8_t *uuid,
sys/dev/acpica/acpivar.h
385
int revision, UINT64 function, ACPI_OBJECT *package,
sys/dev/acpica/acpivar.h
388
const uint8_t *uuid, int revision, UINT64 function,
sys/dev/acpica/acpivar.h
562
int acpi_PkgInt(ACPI_OBJECT *res, int idx, UINT64 *dst);
sys/dev/bhnd/nvram/bhnd_nvram_value_fmts.c
206
BHND_NVRAM_VAL_FMT_NATIVE(uint64, UINT64);
sys/dev/gpio/acpi_gpiobus.c
199
UINT32 length, UINT64 *value, void *context, void *region_context)
sys/dev/hyperv/vmbus/vmbus.c
1174
UINT64 start, end;
sys/dev/iicbus/acpi_iicbus.c
217
UINT32 BitWidth, UINT64 *Value, void *HandlerContext, void *RegionContext)
sys/dev/usb/usb_hub_acpi.c
149
UINT64 porttypenum, conn;
sys/i386/acpica/acpi_machdep.c
230
sizeof(UINT64);
sys/x86/isa/atrtc.c
319
UINT32 bitwidth, UINT64 *value, void *context, void *region_context)
usr.sbin/acpi/acpidb/acpidb.c
188
static UINT64
usr.sbin/acpi/acpidb/acpidb.c
189
aml_simulate_prompt(char *msg, UINT64 def_val)
usr.sbin/acpi/acpidb/acpidb.c
192
UINT64 val;
usr.sbin/acpi/acpidb/acpidb.c
298
UINT64 *Value,
usr.sbin/acpi/acpidb/acpidb.c
303
UINT64 value, i;
usr.sbin/acpi/acpidb/acpidb.c
363
UINT64 *Value) \
usr.sbin/acpi/acpidb/acpidb.c
91
static UINT64 aml_simulate_prompt(char *msg, UINT64 def_val);
usr.sbin/acpi/acpidump/acpi.c
1128
UINT64 i, j;