HomeSort by: relevance | last modified time | path
    Searched defs:UINT16 (Results 1 - 13 of 13) sorted by relevancy

  /src/crypto/external/cpl/trousers/dist/src/include/tss/
platform.h 19 typedef uint16_t UINT16;
31 // basetsd.h provides definitions of UINT16, UINT32 and UINT64.
32 typedef unsigned short UINT16;
  /src/sys/external/bsd/gnu-efi/dist/inc/riscv64/
efibind.h 36 typedef uint16_t UINT16;
  /src/sys/external/bsd/gnu-efi/dist/inc/aarch64/
efibind.h 55 typedef uint16_t UINT16;
  /src/sys/external/bsd/gnu-efi/dist/inc/arm/
efibind.h 63 typedef uint16_t UINT16;
  /src/sys/external/bsd/gnu-efi/dist/inc/ia32/
efibind.h 105 typedef uint16_t UINT16;
  /src/sys/external/bsd/gnu-efi/dist/inc/ia64/
efibind.h 87 typedef uint16_t UINT16;
  /src/sys/external/bsd/gnu-efi/dist/inc/mips64el/
efibind.h 55 typedef uint16_t UINT16;
  /src/sys/external/bsd/gnu-efi/dist/inc/x86_64/
efibind.h 116 typedef uint16_t UINT16;
  /src/usr.bin/rump_dhcpclient/
dhcp.c 40 #define UINT16 (1 << 2)
86 { 13, UINT16, "boot_size" },
96 { 23, UINT16, "default_ip_ttl" },
98 { 25, UINT16 | ARRAY, "path_mtu_plateau_table" },
99 { 26, UINT16, "interface_mtu" },
108 { 36, UINT16, "ieee802_3_encapsulation" },
129 { 57, UINT16, "dhcp_max_message_size" },
187 if (opt->type & UINT16)
  /src/crypto/external/bsd/openssh/dist/
umac.c 91 typedef uint16_t UINT16; /* 2 byte */
882 t = t + ipkp[0] * (UINT64)(UINT16)(data >> 48);
883 t = t + ipkp[1] * (UINT64)(UINT16)(data >> 32);
884 t = t + ipkp[2] * (UINT64)(UINT16)(data >> 16);
885 t = t + ipkp[3] * (UINT64)(UINT16)(data);
  /src/external/gpl3/gcc/dist/gcc/
range-op.cc 4570 #define UINT16(x) wi::uhwi ((x), TYPE_PRECISION (short_unsigned_type_node))
4652 r1 = int_range<1> (short_unsigned_type_node, UINT16 (0), UINT16 (20));
4654 UINT16 (0xff88), UINT16 (0xffff));
  /src/external/gpl3/gcc.old/dist/gcc/
range-op.cc 4157 #define UINT16(N) build_int_cstu (short_unsigned_type_node, (N))
4235 r1 = int_range<1> (UINT16 (0), UINT16 (20));
4236 r2 = int_range<1> (UINT16 (0xff88), UINT16 (0xffff));
  /src/sys/external/bsd/acpica/dist/include/
actypes.h 65 #define ACPI_UINT16_MAX (UINT16)(~((UINT16) 0)) /* 0xFFFF */
82 * UINT16 16-bit (2 byte) unsigned value
129 typedef unsigned short UINT16;
487 typedef UINT16 ACPI_OWNER_ID;
502 #define ACPI_WAIT_FOREVER 0xFFFF /* UINT16, as per ACPI spec */
527 #define ACPI_LOBYTE(Integer) ((UINT8) (UINT16)(Integer))
528 #define ACPI_HIBYTE(Integer) ((UINT8) (((UINT16)(Integer)) >> 8))
529 #define ACPI_LOWORD(Integer) ((UINT16) (UINT32)(Integer))
530 #define ACPI_HIWORD(Integer) ((UINT16)(((UINT32)(Integer)) >> 16)
    [all...]

Completed in 42 milliseconds