HomeSort by relevance Sort by last modified time
    Searched defs:Uint16 (Results 1 - 25 of 30) sorted by null

1 2

  /prebuilts/go/darwin-x86/src/vendor/golang_org/x/net/lif/
binary.go 21 Uint16([]byte) uint16
24 PutUint16([]byte, uint16)
31 func (binaryLittleEndian) Uint16(b []byte) uint16 {
33 return uint16(b[0]) | uint16(b[1])<<8
36 func (binaryLittleEndian) PutUint16(b []byte, v uint16) {
75 func (binaryBigEndian) Uint16(b []byte) uint16 {
    [all...]
  /prebuilts/go/darwin-x86/src/vendor/golang_org/x/net/route/
binary.go 21 Uint16([]byte) uint16
23 PutUint16([]byte, uint16)
30 func (binaryLittleEndian) Uint16(b []byte) uint16 {
32 return uint16(b[0]) | uint16(b[1])<<8
35 func (binaryLittleEndian) PutUint16(b []byte, v uint16) {
62 func (binaryBigEndian) Uint16(b []byte) uint16 {
    [all...]
  /prebuilts/go/darwin-x86/test/fixedbugs/
bug296.go 31 type Uint16 uint16
33 func (x Uint16) m(a, b, c, d, e, f, g, h byte) {
34 check("Uint16", int64(x), 0x0102, a, b, c, d, e, f, g, h)
65 Uint16(0x0102),
  /prebuilts/go/linux-x86/src/vendor/golang_org/x/net/lif/
binary.go 21 Uint16([]byte) uint16
24 PutUint16([]byte, uint16)
31 func (binaryLittleEndian) Uint16(b []byte) uint16 {
33 return uint16(b[0]) | uint16(b[1])<<8
36 func (binaryLittleEndian) PutUint16(b []byte, v uint16) {
75 func (binaryBigEndian) Uint16(b []byte) uint16 {
    [all...]
  /prebuilts/go/linux-x86/src/vendor/golang_org/x/net/route/
binary.go 21 Uint16([]byte) uint16
23 PutUint16([]byte, uint16)
30 func (binaryLittleEndian) Uint16(b []byte) uint16 {
32 return uint16(b[0]) | uint16(b[1])<<8
35 func (binaryLittleEndian) PutUint16(b []byte, v uint16) {
62 func (binaryBigEndian) Uint16(b []byte) uint16 {
    [all...]
  /prebuilts/go/linux-x86/test/fixedbugs/
bug296.go 31 type Uint16 uint16
33 func (x Uint16) m(a, b, c, d, e, f, g, h byte) {
34 check("Uint16", int64(x), 0x0102, a, b, c, d, e, f, g, h)
65 Uint16(0x0102),
  /device/linaro/bootloader/edk2/MdeModulePkg/Library/PiDxeS3BootScriptLib/
InternalBootScriptLib.h 61 UINT16 volatile *Uint16;
79 UINT16 TableMemoryPageNumber; // Record the page number Allocated for the table
  /device/linaro/bootloader/edk2/MdePkg/Include/IndustryStandard/
PciExpress30.h 38 UINT16 DownstreamPortTransmitterPreset : 4;
39 UINT16 DownstreamPortReceiverPresetHint : 3;
40 UINT16 Reserved : 1;
41 UINT16 UpstreamPortTransmitterPreset : 4;
42 UINT16 UpstreamPortReceiverPresetHint : 3;
43 UINT16 Reserved2 : 1;
45 UINT16 Uint16;
  /external/gemmlowp/internal/
allocator.h 46 enum class TypeId : std::uint8_t { Uint8, Int8, Uint16, Int16, Uint32, Int32 };
67 GEMMLOWP_REGISTER_TYPEID(std::uint16_t, Uint16)
  /prebuilts/go/darwin-x86/src/encoding/binary/
binary.go 34 Uint16([]byte) uint16
37 PutUint16([]byte, uint16)
51 func (littleEndian) Uint16(b []byte) uint16 {
53 return uint16(b[0]) | uint16(b[1])<<8
56 func (littleEndian) PutUint16(b []byte, v uint16) {
99 func (bigEndian) Uint16(b []byte) uint16 {
455 func (d *decoder) uint16() uint16 { func
461 func (e *encoder) uint16(x uint16) { func
    [all...]
  /prebuilts/go/linux-x86/src/encoding/binary/
binary.go 34 Uint16([]byte) uint16
37 PutUint16([]byte, uint16)
51 func (littleEndian) Uint16(b []byte) uint16 {
53 return uint16(b[0]) | uint16(b[1])<<8
56 func (littleEndian) PutUint16(b []byte, v uint16) {
99 func (bigEndian) Uint16(b []byte) uint16 {
455 func (d *decoder) uint16() uint16 { func
461 func (e *encoder) uint16(x uint16) { func
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Bus/Usb/UsbMouseAbsolutePointerDxe/
UsbMouseAbsolutePointer.h 95 UINT16 Uint16;
104 UINT16 Format;
  /device/linaro/bootloader/edk2/MdeModulePkg/Bus/Usb/UsbMouseDxe/
UsbMouse.h 95 UINT16 Uint16;
104 UINT16 Format;
  /device/linaro/bootloader/edk2/NetworkPkg/DnsDxe/
DnsImpl.h 135 UINT16 RCode:4;
136 UINT16 Zero:3;
137 UINT16 RA:1;
138 UINT16 RD:1;
139 UINT16 TC:1;
140 UINT16 AA:1;
141 UINT16 OpCode:4;
142 UINT16 QR:1;
144 UINT16 Uint16;
    [all...]
  /external/tensorflow/tensorflow/go/
tensor.go 58 Uint16 DataType = C.TF_UINT16
234 {reflect.TypeOf(uint16(0)), C.TF_UINT16},
316 case reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64, reflect.Float32, reflect.Float64, reflect.Complex64, reflect.Complex128:
334 case reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64, reflect.Float32, reflect.Float64, reflect.Complex64, reflect.Complex128:
363 case reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64, reflect.Float32, reflect.Float64, reflect.Complex64, reflect.Complex128:
375 case reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64, reflect.Float32, reflect.Float64, reflect.Complex64, reflect.Complex128:
485 case Float, Double, Int32, Uint8, Int16, Int8, Complex, Int64, Bool, Quint8, Qint32, Bfloat16, Qint16, Quint16, Uint16, Complex128, Half:
499 *(*uint16)(unsafe.Pointer(&buf[0])) = uint16(0xABCD)
  /prebuilts/misc/darwin-x86_64/sdl2/include/SDL2/
SDL_stdinc.h 147 typedef uint16_t Uint16;
175 SDL_COMPILE_TIME_ASSERT(uint16, sizeof(Uint16) == 2);
394 #define SDL_iconv_utf8_ucs2(S) (Uint16 *)SDL_iconv_string("UCS-2-INTERNAL", "UTF-8", S, SDL_strlen(S)+1)
  /prebuilts/misc/windows/sdl2/i686-w64-mingw32/include/SDL2/
SDL_stdinc.h 147 typedef uint16_t Uint16;
175 SDL_COMPILE_TIME_ASSERT(uint16, sizeof(Uint16) == 2);
394 #define SDL_iconv_utf8_ucs2(S) (Uint16 *)SDL_iconv_string("UCS-2-INTERNAL", "UTF-8", S, SDL_strlen(S)+1)
  /prebuilts/misc/windows/sdl2/include/
SDL_stdinc.h 137 typedef uint16_t Uint16;
165 SDL_COMPILE_TIME_ASSERT(uint16, sizeof(Uint16) == 2);
384 #define SDL_iconv_utf8_ucs2(S) (Uint16 *)SDL_iconv_string("UCS-2-INTERNAL", "UTF-8", S, SDL_strlen(S)+1)
  /prebuilts/misc/windows/sdl2/x86_64-w64-mingw32/include/SDL2/
SDL_stdinc.h 147 typedef uint16_t Uint16;
175 SDL_COMPILE_TIME_ASSERT(uint16, sizeof(Uint16) == 2);
394 #define SDL_iconv_utf8_ucs2(S) (Uint16 *)SDL_iconv_string("UCS-2-INTERNAL", "UTF-8", S, SDL_strlen(S)+1)
  /external/v8/src/
machine-type.h 104 static MachineType Uint16() {
216 return isSigned ? MachineType::Int16() : MachineType::Uint16();
  /prebuilts/go/darwin-x86/src/go/types/
type.go 34 Uint16
  /prebuilts/go/linux-x86/src/go/types/
type.go 34 Uint16
  /device/linaro/bootloader/edk2/MdeModulePkg/Library/UefiBootManagerLib/
BmBoot.c 368 UINT16 *LangIdTable;
369 UINT16 TableSize;
370 UINT16 Index;
433 for (Index = 0; Index < TableSize / sizeof (UINT16); Index++) {
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Include/Library/
EdkIIGlueBaseLib.h     [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Include/Library/
NetLib.h 26 typedef UINT16 TCP_PORTNO;
106 UINT16 EtherType;
114 UINT16 Vid : 12; // Unique VLAN identifier (0 to 4094)
115 UINT16 Cfi : 1; // Canonical Format Indicator
116 UINT16 Priority : 3; // 802.1Q priority level (0 to 7)
118 UINT16 Uint16;
134 UINT16 TotalLen;
135 UINT16 Id;
136 UINT16 Fragment;
    [all...]

Completed in 1206 milliseconds

1 2