HomeSort by relevance Sort by last modified time
    Searched defs:Uint8 (Results 1 - 21 of 21) sorted by null

  /prebuilts/go/darwin-x86/test/fixedbugs/
bug296.go 19 type Uint8 uint8
21 func (x Uint8) m(a, b, c, d, e, f, g, h byte) {
22 check("Uint8", int64(x), 0x01, a, b, c, d, e, f, g, h)
63 Uint8(0x01),
  /prebuilts/go/linux-x86/test/fixedbugs/
bug296.go 19 type Uint8 uint8
21 func (x Uint8) m(a, b, c, d, e, f, g, h byte) {
22 check("Uint8", int64(x), 0x01, a, b, c, d, e, f, g, h)
63 Uint8(0x01),
  /device/linaro/bootloader/edk2/MdeModulePkg/Library/PiDxeS3BootScriptLib/
InternalBootScriptLib.h 59 UINT8 volatile *Buf;
60 UINT8 volatile *Uint8;
77 UINT8 *TableBase;
  /external/gemmlowp/internal/
allocator.h 46 enum class TypeId : std::uint8_t { Uint8, Int8, Uint16, Int16, Uint32, Int32 };
65 GEMMLOWP_REGISTER_TYPEID(std::uint8_t, Uint8)
  /device/linaro/bootloader/edk2/MdeModulePkg/Library/FrameBufferBltLib/
FrameBufferBltLib.c 29 UINT8 LineBuffer[SIZE_4KB * sizeof (EFI_GRAPHICS_OUTPUT_BLT_PIXEL)];
30 UINT8 *FrameBuffer;
149 Configure->FrameBuffer = (UINT8*) FrameBuffer;
186 UINT8 *Destination;
187 UINT8 Uint8;
236 ((UINT8*) &WideFill)[IndexX] = ((UINT8*) &WideFill)[IndexX % Configure->BytesPerPixel];
244 IndexX = 1, Uint8 = ((UINT8*) &WideFill)[0];
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Bus/Usb/UsbMouseAbsolutePointerDxe/
UsbMouseAbsolutePointer.h 51 UINT8 Len;
52 UINT8 Type;
61 UINT8 ButtonMinIndex;
62 UINT8 ButtonMaxIndex;
63 UINT8 Reserved;
76 UINT8 NumberOfButtons;
94 UINT8 Uint8;
100 UINT8 *LongData;
105 UINT8 Size;
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Bus/Usb/UsbMouseDxe/
UsbMouse.h 51 UINT8 Len;
52 UINT8 Type;
61 UINT8 ButtonMinIndex;
62 UINT8 ButtonMaxIndex;
63 UINT8 Reserved;
76 UINT8 NumberOfButtons;
94 UINT8 Uint8;
100 UINT8 *LongData;
105 UINT8 Size;
    [all...]
  /device/linaro/bootloader/edk2/OptionRomPkg/Library/FrameBufferBltLib/
FrameBufferBltLib.c 34 UINT8 mBltLibLineBuffer[MAX_LINE_BUFFER_SIZE];
35 UINT8 *mBltLibFrameBuffer;
119 mBltLibFrameBuffer = (UINT8*) FrameBuffer;
241 UINT8 Uint8;
286 ((UINT8*)&WideFill)[X] = ((UINT8*)&WideFill)[X % mBltLibBytesPerPixel];
294 X = 1, Uint8 = ((UINT8*)&WideFill)[0];
297 if (Uint8 != ((UINT8*)&WideFill)[X]) {
    [all...]
  /external/tensorflow/tensorflow/go/
tensor.go 43 Uint8 DataType = C.TF_UINT8
226 {reflect.TypeOf(uint8(0)), C.TF_UINT8},
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:
  /prebuilts/go/darwin-x86/test/
const1.go 17 // assume all types behave similarly to int8/uint8
20 Uint8 uint8 = 102
43 b1 = Uint8 * Uint8 // ERROR "overflow"
44 b2 = Uint8 * -1 // ERROR "overflow"
45 b3 = Uint8 - Uint8 // OK
46 b4 = Uint8 - Uint8 - Uint8 // ERROR "overflow
    [all...]
  /prebuilts/go/linux-x86/test/
const1.go 17 // assume all types behave similarly to int8/uint8
20 Uint8 uint8 = 102
43 b1 = Uint8 * Uint8 // ERROR "overflow"
44 b2 = Uint8 * -1 // ERROR "overflow"
45 b3 = Uint8 - Uint8 // OK
46 b4 = Uint8 - Uint8 - Uint8 // ERROR "overflow
    [all...]
  /prebuilts/misc/darwin-x86_64/sdl2/include/SDL2/
SDL_stdinc.h 116 ((SDL_static_cast(Uint32, SDL_static_cast(Uint8, (A))) << 0) | \
117 (SDL_static_cast(Uint32, SDL_static_cast(Uint8, (B))) << 8) | \
118 (SDL_static_cast(Uint32, SDL_static_cast(Uint8, (C))) << 16) | \
119 (SDL_static_cast(Uint32, SDL_static_cast(Uint8, (D))) << 24))
139 typedef uint8_t Uint8;
173 SDL_COMPILE_TIME_ASSERT(uint8, sizeof(Uint8) == 1);
  /prebuilts/misc/windows/sdl2/i686-w64-mingw32/include/SDL2/
SDL_stdinc.h 116 ((SDL_static_cast(Uint32, SDL_static_cast(Uint8, (A))) << 0) | \
117 (SDL_static_cast(Uint32, SDL_static_cast(Uint8, (B))) << 8) | \
118 (SDL_static_cast(Uint32, SDL_static_cast(Uint8, (C))) << 16) | \
119 (SDL_static_cast(Uint32, SDL_static_cast(Uint8, (D))) << 24))
139 typedef uint8_t Uint8;
173 SDL_COMPILE_TIME_ASSERT(uint8, sizeof(Uint8) == 1);
  /prebuilts/misc/windows/sdl2/include/
SDL_stdinc.h 106 ((SDL_static_cast(Uint32, SDL_static_cast(Uint8, (A))) << 0) | \
107 (SDL_static_cast(Uint32, SDL_static_cast(Uint8, (B))) << 8) | \
108 (SDL_static_cast(Uint32, SDL_static_cast(Uint8, (C))) << 16) | \
109 (SDL_static_cast(Uint32, SDL_static_cast(Uint8, (D))) << 24))
129 typedef uint8_t Uint8;
163 SDL_COMPILE_TIME_ASSERT(uint8, sizeof(Uint8) == 1);
  /prebuilts/misc/windows/sdl2/x86_64-w64-mingw32/include/SDL2/
SDL_stdinc.h 116 ((SDL_static_cast(Uint32, SDL_static_cast(Uint8, (A))) << 0) | \
117 (SDL_static_cast(Uint32, SDL_static_cast(Uint8, (B))) << 8) | \
118 (SDL_static_cast(Uint32, SDL_static_cast(Uint8, (C))) << 16) | \
119 (SDL_static_cast(Uint32, SDL_static_cast(Uint8, (D))) << 24))
139 typedef uint8_t Uint8;
173 SDL_COMPILE_TIME_ASSERT(uint8, sizeof(Uint8) == 1);
  /external/v8/src/
machine-type.h 98 static MachineType Uint8() {
214 return isSigned ? MachineType::Int8() : MachineType::Uint8();
  /prebuilts/go/darwin-x86/src/go/types/
type.go 33 Uint8
55 Byte = Uint8
  /prebuilts/go/linux-x86/src/go/types/
type.go 33 Uint8
55 Byte = Uint8
  /prebuilts/go/darwin-x86/src/reflect/
type.go 237 Uint8
265 type tflag uint8
302 align uint8 // alignment of variable with this type
303 fieldAlign uint8 // alignment of struct field with this type
304 kind uint8 // enumeration for C
402 keysize uint8 // size of key slot
403 indirectkey uint8 // store ptr to key instead of key itself
404 valuesize uint8 // size of value slot
405 indirectvalue uint8 // store ptr to value instead of value itself
557 b[1] = uint8(len(n) >> 8
    [all...]
  /prebuilts/go/linux-x86/src/reflect/
type.go 237 Uint8
265 type tflag uint8
302 align uint8 // alignment of variable with this type
303 fieldAlign uint8 // alignment of struct field with this type
304 kind uint8 // enumeration for C
402 keysize uint8 // size of key slot
403 indirectkey uint8 // store ptr to key instead of key itself
404 valuesize uint8 // size of value slot
405 indirectvalue uint8 // store ptr to value instead of value itself
557 b[1] = uint8(len(n) >> 8
    [all...]
  /device/linaro/bootloader/edk2/MdePkg/Include/IndustryStandard/
Pci22.h 40 UINT8 RevisionID;
41 UINT8 ClassCode[3];
42 UINT8 CacheLineSize;
43 UINT8 LatencyTimer;
44 UINT8 HeaderType;
45 UINT8 BIST;
58 UINT8 CapabilityPtr;
59 UINT8 Reserved1[3];
61 UINT8 InterruptLine;
62 UINT8 InterruptPin;
    [all...]

Completed in 479 milliseconds