Symbol: UINT32
crypto/openssh/umac.c
1075
poly_hash(ctx,(UINT32 *)nh_result);
crypto/openssh/umac.c
1087
poly_hash(ctx,(UINT32 *)nh_result);
crypto/openssh/umac.c
1112
poly_hash(ctx,(UINT32 *)nh_result);
crypto/openssh/umac.c
1131
UINT32 nh_len;
crypto/openssh/umac.c
1152
poly_hash(ahc,(UINT32 *)nh_result);
crypto/openssh/umac.c
1161
poly_hash(ahc,(UINT32 *)nh_result);
crypto/openssh/umac.c
131
#define MUL64(a,b) ((UINT64)((UINT64)(UINT32)(a) * (UINT64)(UINT32)(b)))
crypto/openssh/umac.c
253
UINT32 align;
crypto/openssh/umac.c
258
*(UINT32 *)t.tmp_nonce_lo = ((const UINT32 *)nonce)[1];
crypto/openssh/umac.c
261
if ( (((UINT32 *)t.tmp_nonce_lo)[0] != ((UINT32 *)pc->nonce)[1]) ||
crypto/openssh/umac.c
262
(((const UINT32 *)nonce)[0] != ((UINT32 *)pc->nonce)[0]) )
crypto/openssh/umac.c
264
((UINT32 *)pc->nonce)[0] = ((const UINT32 *)nonce)[0];
crypto/openssh/umac.c
265
((UINT32 *)pc->nonce)[1] = ((UINT32 *)t.tmp_nonce_lo)[0];
crypto/openssh/umac.c
270
*((UINT32 *)buf) ^= ((UINT32 *)pc->cache)[ndx];
crypto/openssh/umac.c
275
((UINT32 *)buf)[2] ^= ((UINT32 *)pc->cache)[2];
crypto/openssh/umac.c
332
static void nh_aux(void *kp, const void *dp, void *hp, UINT32 dlen)
crypto/openssh/umac.c
341
UINT32 *k = (UINT32 *)kp;
crypto/openssh/umac.c
342
const UINT32 *d = (const UINT32 *)dp;
crypto/openssh/umac.c
343
UINT32 d0,d1,d2,d3,d4,d5,d6,d7;
crypto/openssh/umac.c
344
UINT32 k0,k1,k2,k3,k4,k5,k6,k7;
crypto/openssh/umac.c
367
static void nh_aux(void *kp, const void *dp, void *hp, UINT32 dlen)
crypto/openssh/umac.c
374
UINT32 *k = (UINT32 *)kp;
crypto/openssh/umac.c
375
const UINT32 *d = (const UINT32 *)dp;
crypto/openssh/umac.c
376
UINT32 d0,d1,d2,d3,d4,d5,d6,d7;
crypto/openssh/umac.c
377
UINT32 k0,k1,k2,k3,k4,k5,k6,k7,
crypto/openssh/umac.c
414
static void nh_aux(void *kp, const void *dp, void *hp, UINT32 dlen)
crypto/openssh/umac.c
421
UINT32 *k = (UINT32 *)kp;
crypto/openssh/umac.c
422
const UINT32 *d = (const UINT32 *)dp;
crypto/openssh/umac.c
423
UINT32 d0,d1,d2,d3,d4,d5,d6,d7;
crypto/openssh/umac.c
424
UINT32 k0,k1,k2,k3,k4,k5,k6,k7,
crypto/openssh/umac.c
469
static void nh_aux(void *kp, const void *dp, void *hp, UINT32 dlen)
crypto/openssh/umac.c
476
UINT32 *k = (UINT32 *)kp;
crypto/openssh/umac.c
477
const UINT32 *d = (const UINT32 *)dp;
crypto/openssh/umac.c
478
UINT32 d0,d1,d2,d3,d4,d5,d6,d7;
crypto/openssh/umac.c
479
UINT32 k0,k1,k2,k3,k4,k5,k6,k7,
crypto/openssh/umac.c
538
static void nh_transform(nh_ctx *hc, const UINT8 *buf, UINT32 nbytes)
crypto/openssh/umac.c
554
static void endian_convert(void *buf, UWORD bpw, UINT32 num_bytes)
crypto/openssh/umac.c
560
UINT32 *p = (UINT32 *)buf;
crypto/openssh/umac.c
566
UINT32 *p = (UINT32 *)buf;
crypto/openssh/umac.c
567
UINT32 t;
crypto/openssh/umac.c
613
static void nh_update(nh_ctx *hc, const UINT8 *buf, UINT32 nbytes)
crypto/openssh/umac.c
617
UINT32 i,j;
crypto/openssh/umac.c
708
static void nh(nh_ctx *hc, const UINT8 *buf, UINT32 padded_len,
crypto/openssh/umac.c
709
UINT32 unpadded_len, UINT8 *result)
crypto/openssh/umac.c
715
UINT32 nbits;
crypto/openssh/umac.c
781
UINT32 ip_trans[STREAMS]; /* Inner-product translation */
crypto/openssh/umac.c
782
UINT32 msg_len; /* Total length of data passed */
crypto/openssh/umac.c
800
UINT32 key_hi = (UINT32)(key >> 32),
crypto/openssh/umac.c
801
key_lo = (UINT32)key,
crypto/openssh/umac.c
802
cur_hi = (UINT32)(cur >> 32),
crypto/openssh/umac.c
803
cur_lo = (UINT32)cur,
crypto/openssh/umac.c
809
x_lo = (UINT32)X;
crypto/openssh/umac.c
810
x_hi = (UINT32)(X >> 32);
crypto/openssh/umac.c
833
static void poly_hash(uhash_ctx_t hc, UINT32 data_in[])
crypto/openssh/umac.c
839
if ((UINT32)(data[i] >> 32) == 0xfffffffful) {
crypto/openssh/umac.c
871
static UINT32 ip_reduce_p36(UINT64 t)
crypto/openssh/umac.c
881
return (UINT32)(ret);
crypto/openssh/umac.c
895
STORE_UINT32_BIG((UINT32 *)res+0, ip_reduce_p36(t) ^ ahc->ip_trans[0]);
crypto/openssh/umac.c
898
STORE_UINT32_BIG((UINT32 *)res+1, ip_reduce_p36(t) ^ ahc->ip_trans[1]);
crypto/openssh/umac.c
902
STORE_UINT32_BIG((UINT32 *)res+2, ip_reduce_p36(t) ^ ahc->ip_trans[2]);
crypto/openssh/umac.c
906
STORE_UINT32_BIG((UINT32 *)res+3, ip_reduce_p36(t) ^ ahc->ip_trans[3]);
crypto/openssh/umac.c
924
STORE_UINT32_BIG((UINT32 *)res+i,
crypto/openssh/umac.c
996
kdf(ahc->ip_trans, prf_key, 4, STREAMS * sizeof(UINT32));
crypto/openssh/umac.c
997
endian_convert_if_le(ahc->ip_trans, sizeof(UINT32),
crypto/openssh/umac.c
998
STREAMS * sizeof(UINT32));
lib/libefivar/efivar-dp-format.c
235
UINT32 FlowControlMap;
lib/libefivar/efivar-dp-format.c
587
UINT32 *Addr;
lib/libefivar/efivar-dp-parse.c
1073
Length + sizeof (UINT32),
lib/libefivar/efivar-dp-parse.c
1077
SetDevicePathNodeLength (AcpiAdr, Length + sizeof (UINT32));
lib/libefivar/efivar-dp-parse.c
1080
(&AcpiAdr->ADR)[Index] = (UINT32) Strtoi (DisplayDeviceStr);
lib/libefivar/efivar-dp-parse.c
1339
I2ODevPath->Tid = (UINT32) Strtoi (TIDStr);
lib/libefivar/efivar-dp-parse.c
1376
InfiniBand->ResourceFlags = (UINT32) Strtoi (FlagsStr);
lib/libefivar/efivar-dp-parse.c
1634
Sas->Reserved = (UINT32) Strtoi (ReservedStr);
lib/libefivar/efivar-dp-parse.c
1764
Nvme->NamespaceId = (UINT32) Strtoi (NamespaceIdStr);
lib/libefivar/efivar-dp-parse.c
2913
UINT32 Signature32;
lib/libefivar/efivar-dp-parse.c
2927
Hd->PartitionNumber = (UINT32) Strtoi (PartitionStr);
lib/libefivar/efivar-dp-parse.c
2936
Signature32 = (UINT32) Strtoi (SignatureStr);
lib/libefivar/efivar-dp-parse.c
2937
CopyMem (Hd->Signature, &Signature32, sizeof (UINT32));
lib/libefivar/efivar-dp-parse.c
2981
CDROMDevPath->BootEntry = (UINT32) Strtoi (EntryStr);
lib/libefivar/efivar-dp-parse.c
594
MemMap->MemoryType = (UINT32) Strtoi (MemoryTypeStr);
lib/libefivar/efivar-dp-parse.c
690
Controller->ControllerNumber = (UINT32) Strtoi (ControllerStr);
lib/libefivar/efivar-dp-parse.c
755
UINT32
lib/libefivar/efivar-dp-parse.c
763
+ (UINT32) (StrHexToUintn (&Text[3]) << 16)
lib/libefivar/efivar-dp-parse.c
794
Acpi->UID = (UINT32) Strtoi (UIDStr);
lib/libefivar/efivar-dp-parse.c
812
IN UINT32 PnPId
lib/libefivar/efivar-dp-parse.c
826
Acpi->UID = (UINT32) Strtoi (UIDStr);
lib/libefivar/efivar-dp-parse.c
975
AcpiEx->UID = (UINT32) Strtoi (UIDStr);
lib/libefivar/uefi-dplib.h
165
UINT32 Hid;
lib/libefivar/uefi-dplib.h
166
UINT32 Uid;
lib/libefivar/uefi-dplib.h
167
UINT32 Cid;
stand/boot/efi/libefi/efinet.c
220
UINT32 mask = EFI_SIMPLE_NETWORK_RECEIVE_UNICAST |
stand/boot/efi/loader/bootinfo.c
242
UINT32 mmver;
stand/boot/efi/loader/main.c
487
UINT32 dver;
stand/boot/efi/loader/main.c
692
UINT32 attr;
sys/bus/gpio/gpio_acpi/gpio_acpi.c
218
gpio_acpi_space_handler(UINT32 Function, ACPI_PHYSICAL_ADDRESS Address,
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
88
static ACPI_STATUS gpio_acpi_space_handler(UINT32 Function,
sys/bus/gpio/gpio_acpi/gpio_acpi.c
89
ACPI_PHYSICAL_ADDRESS Address, UINT32 BitWidth,
sys/bus/smbus/smbacpi/smbacpi.c
121
smbus_acpi_space_handler(UINT32 Function, ACPI_PHYSICAL_ADDRESS Address,
sys/bus/smbus/smbacpi/smbacpi.c
122
UINT32 BitWidth, UINT64 *Value, void *HandlerContext, void *RegionContext)
sys/bus/smbus/smbacpi/smbacpi.c
130
UINT32 accessor_type = Function >> 16;
sys/bus/smbus/smbacpi/smbacpi.c
80
static ACPI_STATUS smbus_acpi_space_handler(UINT32 Function,
sys/bus/smbus/smbacpi/smbacpi.c
81
ACPI_PHYSICAL_ADDRESS Address, UINT32 BitWidth,
sys/dev/acpica/Osd/OsdDebug.c
50
AcpiOsGetLine(char *Buffer, UINT32 BufferLength, UINT32 *BytesRead)
sys/dev/acpica/Osd/OsdDebug.c
70
AcpiOsSignal(UINT32 Function, void *Info)
sys/dev/acpica/Osd/OsdHardware.c
113
AcpiOsWritePciConfiguration(ACPI_PCI_ID *PciId, UINT32 Register,
sys/dev/acpica/Osd/OsdHardware.c
114
UINT64 Value, UINT32 Width)
sys/dev/acpica/Osd/OsdHardware.c
131
UINT32 RegaValue,
sys/dev/acpica/Osd/OsdHardware.c
132
UINT32 RegbValue)
sys/dev/acpica/Osd/OsdHardware.c
57
AcpiOsReadPort(ACPI_IO_ADDRESS InPort, UINT32 *Value, UINT32 Width)
sys/dev/acpica/Osd/OsdHardware.c
75
AcpiOsWritePort(ACPI_IO_ADDRESS OutPort, UINT32 Value, UINT32 Width)
sys/dev/acpica/Osd/OsdHardware.c
93
AcpiOsReadPciConfiguration(ACPI_PCI_ID *PciId, UINT32 Register, UINT64 *Value,
sys/dev/acpica/Osd/OsdHardware.c
94
UINT32 Width)
sys/dev/acpica/Osd/OsdInterrupt.c
125
AcpiOsRemoveInterruptHandler(UINT32 InterruptNumber, ACPI_OSD_HANDLER ServiceRoutine)
sys/dev/acpica/Osd/OsdInterrupt.c
53
AcpiOsInstallInterruptHandler(UINT32 InterruptNumber,
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
198
AcpiOsStall(UINT32 Microseconds)
sys/dev/acpica/Osd/OsdSynch.c
124
AcpiOsWaitSemaphore(ACPI_HANDLE Handle, UINT32 Units, UINT16 Timeout)
sys/dev/acpica/Osd/OsdSynch.c
285
AcpiOsSignalSemaphore(ACPI_HANDLE Handle, UINT32 Units)
sys/dev/acpica/Osd/OsdSynch.c
65
UINT32 as_units;
sys/dev/acpica/Osd/OsdSynch.c
66
UINT32 as_maxunits;
sys/dev/acpica/Osd/OsdSynch.c
67
UINT32 as_pendings;
sys/dev/acpica/Osd/OsdSynch.c
68
UINT32 as_resetting;
sys/dev/acpica/Osd/OsdSynch.c
69
UINT32 as_timeouts;
sys/dev/acpica/Osd/OsdSynch.c
81
AcpiOsCreateSemaphore(UINT32 MaxUnits, UINT32 InitialUnits,
sys/dev/acpica/Osd/OsdTable.c
88
UINT32 *NewTableLength)
sys/dev/acpica/acpi.c
134
static ACPI_STATUS acpi_device_scan_cb(ACPI_HANDLE h, UINT32 level,
sys/dev/acpica/acpi.c
147
static ACPI_STATUS acpi_probe_child(ACPI_HANDLE handle, UINT32 level,
sys/dev/acpica/acpi.c
1515
acpi_device_scan_cb(ACPI_HANDLE h, UINT32 level, void *arg, void **retval)
sys/dev/acpica/acpi.c
1818
acpi_probe_child(ACPI_HANDLE handle, UINT32 level, void *context, void **status)
sys/dev/acpica/acpi.c
2008
UINT32 s;
sys/dev/acpica/acpi.c
2033
UINT32 s;
sys/dev/acpica/acpi.c
2145
acpi_SetInteger(ACPI_HANDLE handle, char *path, UINT32 number)
sys/dev/acpica/acpi.c
2162
acpi_GetInteger(ACPI_HANDLE handle, char *path, UINT32 *number)
sys/dev/acpica/acpi.c
2207
acpi_ConvertBufferToInteger(ACPI_BUFFER *bufp, UINT32 *number)
sys/dev/acpica/acpi.c
2800
acpi_wake_prep(ACPI_HANDLE handle, UINT32 level, void *context, void **status)
sys/dev/acpica/acpi.c
3021
UINT32
sys/dev/acpica/acpi.c
3033
UINT32
sys/dev/acpica/acpi.c
3045
UINT32
sys/dev/acpica/acpi.c
3057
UINT32
sys/dev/acpica/acpi.c
3555
UINT32 value;
sys/dev/acpica/acpi.c
3636
acpi_parse_debug(char *cp, struct debugtag *tag, UINT32 *flag)
sys/dev/acpica/acpi.c
494
UINT32 flags;
sys/dev/acpica/acpi_acad.c
129
acpi_acad_notify_handler(ACPI_HANDLE h, UINT32 notify, void *context)
sys/dev/acpica/acpi_acad.c
68
static void acpi_acad_notify_handler(ACPI_HANDLE, UINT32, void *);
sys/dev/acpica/acpi_asus/acpi_asus.c
1196
acpi_asus_notify(ACPI_HANDLE h, UINT32 notify, void *context)
sys/dev/acpica/acpi_asus/acpi_asus.c
1233
acpi_asus_lcdd_notify(ACPI_HANDLE h, UINT32 notify, void *context)
sys/dev/acpica/acpi_asus/acpi_asus.c
1261
acpi_asus_eeepc_notify(ACPI_HANDLE h, UINT32 notify, void *context)
sys/dev/acpica/acpi_asus/acpi_asus.c
139
static void acpi_asus_lcdd_notify(ACPI_HANDLE h, UINT32 notify,
sys/dev/acpica/acpi_asus/acpi_asus.c
438
static void acpi_asus_eeepc_notify(ACPI_HANDLE h, UINT32 notify, void *context);
sys/dev/acpica/acpi_asus/acpi_asus.c
522
static void acpi_asus_notify(ACPI_HANDLE h, UINT32 notify, void *context);
sys/dev/acpica/acpi_asus/acpi_asus.c
95
void (*n_func)(ACPI_HANDLE, UINT32, void *);
sys/dev/acpica/acpi_asus/acpi_asus.c
98
void (*lcdd_n_func)(ACPI_HANDLE, UINT32, void *);
sys/dev/acpica/acpi_button.c
246
acpi_button_notify_handler(ACPI_HANDLE h, UINT32 notify, void *context)
sys/dev/acpica/acpi_button.c
62
static void acpi_button_notify_handler(ACPI_HANDLE h, UINT32 notify,
sys/dev/acpica/acpi_cmbat.c
179
acpi_cmbat_notify_handler(ACPI_HANDLE h, UINT32 notify, void *context)
sys/dev/acpica/acpi_cmbat.c
73
static void acpi_cmbat_notify_handler(ACPI_HANDLE h, UINT32 notify,
sys/dev/acpica/acpi_cpu.c
325
acpi_cpu_notify(ACPI_HANDLE handle __unused, UINT32 notify, void *xsc)
sys/dev/acpica/acpi_cpu.c
61
static void acpi_cpu_notify(ACPI_HANDLE, UINT32, void *);
sys/dev/acpica/acpi_dock/acpi_dock.c
200
acpi_dock_insert_child(ACPI_HANDLE handle, UINT32 level, void *context,
sys/dev/acpica/acpi_dock/acpi_dock.c
284
acpi_dock_eject_child(ACPI_HANDLE handle, UINT32 level, void *context,
sys/dev/acpica/acpi_dock/acpi_dock.c
384
acpi_dock_notify_handler(ACPI_HANDLE h, UINT32 notify, void *context)
sys/dev/acpica/acpi_ec.c
263
static UINT32 EcGpeHandler(ACPI_HANDLE GpeDevice,
sys/dev/acpica/acpi_ec.c
264
UINT32 GpeNumber, void *Context);
sys/dev/acpica/acpi_ec.c
265
static ACPI_STATUS EcSpaceSetup(ACPI_HANDLE Region, UINT32 Function,
sys/dev/acpica/acpi_ec.c
267
static ACPI_STATUS EcSpaceHandler(UINT32 Function,
sys/dev/acpica/acpi_ec.c
269
UINT32 Width, UINT64 *Value,
sys/dev/acpica/acpi_ec.c
750
static UINT32
sys/dev/acpica/acpi_ec.c
751
EcGpeHandler(ACPI_HANDLE GpeDevice, UINT32 GpeNumber, void *Context)
sys/dev/acpica/acpi_ec.c
787
EcSpaceSetup(ACPI_HANDLE Region, UINT32 Function, void *Context,
sys/dev/acpica/acpi_ec.c
806
EcSpaceHandler(UINT32 Function, ACPI_PHYSICAL_ADDRESS Address, UINT32 Width,
sys/dev/acpica/acpi_ec.c
814
ACPI_FUNCTION_TRACE_U32((char *)(uintptr_t)__func__, (UINT32)Address);
sys/dev/acpica/acpi_hp/acpi_hp.c
113
UINT32 sequence; /* sequence number as suggested by cmi bios */
sys/dev/acpica/acpi_hp/acpi_hp.c
1147
UINT32 sequence;
sys/dev/acpica/acpi_hp/acpi_hp.c
303
static void acpi_hp_notify(ACPI_HANDLE h, UINT32 notify, void *context);
sys/dev/acpica/acpi_hp/acpi_hp.c
306
UINT32* sequence, int detail);
sys/dev/acpica/acpi_hp/acpi_hp.c
810
acpi_hp_notify(ACPI_HANDLE h, UINT32 notify, void *context)
sys/dev/acpica/acpi_hp/acpi_hp.c
831
UINT32 params[5] = { 0x55434553,
sys/dev/acpica/acpi_hp/acpi_hp.c
836
UINT32* result;
sys/dev/acpica/acpi_hp/acpi_hp.c
852
result = (UINT32*) obj->Buffer.Pointer;
sys/dev/acpica/acpi_hp/acpi_hp.c
900
char* outbuf, size_t outsize, UINT32* sequence, int detail)
sys/dev/acpica/acpi_hp/acpi_hp.c
998
*sequence = (UINT32) obj->Package.Elements[6].Integer.Value;
sys/dev/acpica/acpi_lid.c
185
acpi_lid_notify_handler(ACPI_HANDLE h, UINT32 notify, void *context)
sys/dev/acpica/acpi_lid.c
63
static void acpi_lid_notify_handler(ACPI_HANDLE h, UINT32 notify,
sys/dev/acpica/acpi_panasonic/acpi_panasonic.c
239
UINT32 arg;
sys/dev/acpica/acpi_panasonic/acpi_panasonic.c
303
hkey_lcd_brightness_max(ACPI_HANDLE h, int op, UINT32 *val)
sys/dev/acpica/acpi_panasonic/acpi_panasonic.c
324
hkey_lcd_brightness_min(ACPI_HANDLE h, int op, UINT32 *val)
sys/dev/acpica/acpi_panasonic/acpi_panasonic.c
345
hkey_lcd_brightness(ACPI_HANDLE h, int op, UINT32 *val)
sys/dev/acpica/acpi_panasonic/acpi_panasonic.c
348
UINT32 max, min;
sys/dev/acpica/acpi_panasonic/acpi_panasonic.c
371
hkey_sound_mute(ACPI_HANDLE h, int op, UINT32 *val)
sys/dev/acpica/acpi_panasonic/acpi_panasonic.c
391
UINT32 *arg)
sys/dev/acpica/acpi_panasonic/acpi_panasonic.c
428
UINT32 key)
sys/dev/acpica/acpi_panasonic/acpi_panasonic.c
478
acpi_panasonic_notify(ACPI_HANDLE h, UINT32 notify, void *context)
sys/dev/acpica/acpi_panasonic/acpi_panasonic.c
481
UINT32 key = 0;
sys/dev/acpica/acpi_panasonic/acpi_panasonic.c
504
UINT32 brightness;
sys/dev/acpica/acpi_panasonic/acpi_panasonic.c
76
typedef int hkey_fn_t(ACPI_HANDLE, int, UINT32 *);
sys/dev/acpica/acpi_panasonic/acpi_panasonic.c
86
ACPI_HANDLE h, UINT32 *arg);
sys/dev/acpica/acpi_panasonic/acpi_panasonic.c
88
ACPI_HANDLE h, UINT32 key);
sys/dev/acpica/acpi_panasonic/acpi_panasonic.c
89
static void acpi_panasonic_notify(ACPI_HANDLE h, UINT32 notify,
sys/dev/acpica/acpi_pci.c
246
acpi_pci_save_handle(ACPI_HANDLE handle, UINT32 level, void *context,
sys/dev/acpica/acpi_pci.c
252
UINT32 address;
sys/dev/acpica/acpi_pci.c
74
static ACPI_STATUS acpi_pci_save_handle(ACPI_HANDLE handle, UINT32 level,
sys/dev/acpica/acpi_pci_link.c
101
UINT32 l_crs_type;
sys/dev/acpica/acpi_pci_link.c
276
UINT32 *ext_irqs = NULL;
sys/dev/acpica/acpi_thermal.c
149
static void acpi_tz_notify_handler(ACPI_HANDLE h, UINT32 notify,
sys/dev/acpica/acpi_thermal.c
902
acpi_tz_notify_handler(ACPI_HANDLE h, UINT32 notify, void *context)
sys/dev/acpica/acpi_thinkpad/acpi_thinkpad.c
1499
acpi_thinkpad_notify(ACPI_HANDLE h, UINT32 notify, void *context)
sys/dev/acpica/acpi_thinkpad/acpi_thinkpad.c
340
static void acpi_thinkpad_notify(ACPI_HANDLE h, UINT32 notify, void *context);
sys/dev/acpica/acpi_toshiba/acpi_toshiba.c
133
typedef int hci_fn_t(ACPI_HANDLE, int, UINT32 *);
sys/dev/acpica/acpi_toshiba/acpi_toshiba.c
144
static int hci_call(ACPI_HANDLE h, int op, int function, UINT32 *arg);
sys/dev/acpica/acpi_toshiba/acpi_toshiba.c
146
UINT32 key);
sys/dev/acpica/acpi_toshiba/acpi_toshiba.c
147
static void acpi_toshiba_notify(ACPI_HANDLE h, UINT32 notify,
sys/dev/acpica/acpi_toshiba/acpi_toshiba.c
292
UINT32 arg;
sys/dev/acpica/acpi_toshiba/acpi_toshiba.c
320
hci_force_fan(ACPI_HANDLE h, int op, UINT32 *state)
sys/dev/acpica/acpi_toshiba/acpi_toshiba.c
337
hci_video_output(ACPI_HANDLE h, int op, UINT32 *video_output)
sys/dev/acpica/acpi_toshiba/acpi_toshiba.c
364
hci_lcd_brightness(ACPI_HANDLE h, int op, UINT32 *brightness)
sys/dev/acpica/acpi_toshiba/acpi_toshiba.c
381
hci_lcd_backlight(ACPI_HANDLE h, int op, UINT32 *backlight)
sys/dev/acpica/acpi_toshiba/acpi_toshiba.c
393
hci_cpu_speed(ACPI_HANDLE h, int op, UINT32 *speed)
sys/dev/acpica/acpi_toshiba/acpi_toshiba.c
410
hci_call(ACPI_HANDLE h, int op, int function, UINT32 *arg)
sys/dev/acpica/acpi_toshiba/acpi_toshiba.c
472
hci_key_action(struct acpi_toshiba_softc *sc, ACPI_HANDLE h, UINT32 key)
sys/dev/acpica/acpi_toshiba/acpi_toshiba.c
474
UINT32 arg;
sys/dev/acpica/acpi_toshiba/acpi_toshiba.c
516
acpi_toshiba_notify(ACPI_HANDLE h, UINT32 notify, void *context)
sys/dev/acpica/acpi_toshiba/acpi_toshiba.c
519
UINT32 key;
sys/dev/acpica/acpi_video/acpi_video.c
1014
UINT32 level;
sys/dev/acpica/acpi_video/acpi_video.c
1042
static UINT32
sys/dev/acpica/acpi_video/acpi_video.c
1045
UINT32 dcs;
sys/dev/acpica/acpi_video/acpi_video.c
1058
static UINT32
sys/dev/acpica/acpi_video/acpi_video.c
1061
UINT32 dgs;
sys/dev/acpica/acpi_video/acpi_video.c
1074
vo_set_device_state(ACPI_HANDLE handle, UINT32 state)
sys/dev/acpica/acpi_video/acpi_video.c
351
acpi_video_notify_handler(ACPI_HANDLE handle, UINT32 notify, void *context)
sys/dev/acpica/acpi_video/acpi_video.c
356
UINT32 dcs, dss, dss_p;
sys/dev/acpica/acpi_video/acpi_video.c
429
acpi_video_bind_outputs_subr(ACPI_HANDLE handle, UINT32 adr, void *context)
sys/dev/acpica/acpi_video/acpi_video.c
45
UINT32 adr;
sys/dev/acpica/acpi_video/acpi_video.c
458
acpi_video_vo_init(UINT32 adr)
sys/dev/acpica/acpi_video/acpi_video.c
672
acpi_video_vo_notify_handler(ACPI_HANDLE handle, UINT32 notify, void *context)
sys/dev/acpica/acpi_video/acpi_video.c
77
static void acpi_video_notify_handler(ACPI_HANDLE, UINT32, void *);
sys/dev/acpica/acpi_video/acpi_video.c
80
static struct acpi_video_output *acpi_video_vo_init(UINT32);
sys/dev/acpica/acpi_video/acpi_video.c
84
static void acpi_video_vo_notify_handler(ACPI_HANDLE, UINT32, void *);
sys/dev/acpica/acpi_video/acpi_video.c
876
vid_set_switch_policy(ACPI_HANDLE handle, UINT32 policy)
sys/dev/acpica/acpi_video/acpi_video.c
887
void (*callback)(ACPI_HANDLE, UINT32, void *);
sys/dev/acpica/acpi_video/acpi_video.c
894
vid_enum_outputs_subr(ACPI_HANDLE handle, UINT32 level __unused,
sys/dev/acpica/acpi_video/acpi_video.c
898
UINT32 adr, val;
sys/dev/acpica/acpi_video/acpi_video.c
91
static void vid_set_switch_policy(ACPI_HANDLE, UINT32);
sys/dev/acpica/acpi_video/acpi_video.c
922
void (*callback)(ACPI_HANDLE, UINT32, void *), void *context)
sys/dev/acpica/acpi_video/acpi_video.c
93
void(*)(ACPI_HANDLE, UINT32, void *), void *);
sys/dev/acpica/acpi_video/acpi_video.c
97
static UINT32 vo_get_device_status(ACPI_HANDLE);
sys/dev/acpica/acpi_video/acpi_video.c
98
static UINT32 vo_get_graphics_state(ACPI_HANDLE);
sys/dev/acpica/acpi_video/acpi_video.c
99
static void vo_set_device_state(ACPI_HANDLE, UINT32);
sys/dev/acpica/acpi_wmi/acpi_wmi.c
122
UINT32 method_id, const ACPI_BUFFER *in,
sys/dev/acpica/acpi_wmi/acpi_wmi.c
130
UINT32 event_id, ACPI_BUFFER *out);
sys/dev/acpica/acpi_wmi/acpi_wmi.c
139
static void acpi_wmi_notify_handler(ACPI_HANDLE h, UINT32 notify,
sys/dev/acpica/acpi_wmi/acpi_wmi.c
141
static ACPI_STATUS acpi_wmi_ec_handler(UINT32 function,
sys/dev/acpica/acpi_wmi/acpi_wmi.c
142
ACPI_PHYSICAL_ADDRESS address, UINT32 width,
sys/dev/acpica/acpi_wmi/acpi_wmi.c
356
UINT8 instance, UINT32 method_id, const ACPI_BUFFER *in, ACPI_BUFFER *out)
sys/dev/acpica/acpi_wmi/acpi_wmi.c
470
acpi_wmi_get_event_data_method(device_t dev, UINT32 event_id, ACPI_BUFFER *out)
sys/dev/acpica/acpi_wmi/acpi_wmi.c
627
acpi_wmi_notify_handler(ACPI_HANDLE h, UINT32 notify, void *context)
sys/dev/acpica/acpi_wmi/acpi_wmi.c
660
acpi_wmi_ec_handler(UINT32 function, ACPI_PHYSICAL_ADDRESS address,
sys/dev/acpica/acpi_wmi/acpi_wmi.c
661
UINT32 width, UINT64 *value, void *context,
sys/dev/acpica/acpi_wmi/acpi_wmi.c
670
ACPI_FUNCTION_TRACE_U32((char *)(uintptr_t)__func__, (UINT32)address);
sys/dev/acpica/acpi_wmi/acpi_wmi.c
718
UINT32 i;
sys/dev/acpica/acpi_wmi/acpi_wmi.c
719
UINT32 wdg_block_count;
sys/dev/acpica/acpivar.h
358
UINT32 *number);
sys/dev/acpica/acpivar.h
360
UINT32 *number);
sys/dev/acpica/acpivar.h
362
UINT32 number);
sys/dev/acpica/acpivar.h
416
UINT32 acpi_event_power_button_sleep(void *context);
sys/dev/acpica/acpivar.h
417
UINT32 acpi_event_power_button_wake(void *context);
sys/dev/acpica/acpivar.h
418
UINT32 acpi_event_sleep_button_sleep(void *context);
sys/dev/acpica/acpivar.h
419
UINT32 acpi_event_sleep_button_wake(void *context);
sys/dev/apple/fw/apple_fw.c
256
UINT32 val;
sys/dev/apple/fw/apple_fw_dsm.c
127
apple_fw_dsm_walk_cb(ACPI_HANDLE handle, UINT32 level, void *context,
sys/dev/drm/amd/amdgpu/amdgpu_acpi.c
367
UINT32 type)
sys/dev/drm/amd/amdgpu/amdgpu_acpi.c
701
UINT32 type,
sys/dev/drm/radeon/radeon_acpi.c
347
UINT32 type)
sys/dev/drm/radeon/radeon_acpi.c
662
static void radeon_acpi_event(ACPI_HANDLE handle, UINT32 type,
sys/dev/drm/radeon/radeon_acpi.h
31
void radeon_atif_handler(struct radeon_device *rdev, UINT32 type);