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

1 2

  /prebuilts/go/darwin-x86/test/fixedbugs/
bug296.go 13 type Int8 int8
15 func (x Int8) m(a, b, c, d, e, f, g, h byte) {
16 check("Int8", int64(x), 0x01, a, b, c, d, e, f, g, h)
62 Int8(0x01),
  /prebuilts/go/linux-x86/test/fixedbugs/
bug296.go 13 type Int8 int8
15 func (x Int8) m(a, b, c, d, e, f, g, h byte) {
16 check("Int8", int64(x), 0x01, a, b, c, d, e, f, g, h)
62 Int8(0x01),
  /external/gemmlowp/internal/
allocator.h 46 enum class TypeId : std::uint8_t { Uint8, Int8, Uint16, Int16, Uint32, Int32 };
66 GEMMLOWP_REGISTER_TYPEID(std::int8_t, Int8)
  /external/llvm/unittests/Transforms/Utils/
MemorySSA.cpp 226 Type *Int8 = Type::getInt8Ty(C);
227 Value *Alloca = B.CreateAlloca(Int8, ConstantInt::get(Int8, 1), "A");
228 StoreInst *S1 = B.CreateStore(ConstantInt::get(Int8, 0), Alloca);
229 StoreInst *S2 = B.CreateStore(ConstantInt::get(Int8, 1), Alloca);
230 StoreInst *S3 = B.CreateStore(ConstantInt::get(Int8, 2), Alloca);
258 Type *Int8 = Type::getInt8Ty(C);
259 Value *Alloca = B.CreateAlloca(Int8, ConstantInt::get(Int8, 1), "A");
260 Instruction *SI = B.CreateStore(ConstantInt::get(Int8, 0), Alloca)
    [all...]
ValueMapperTest.cpp 330 auto *Int8 = Type::getInt8Ty(Context);
331 FunctionType *FTy = FunctionType::get(Type::getVoidTy(Context), Int8, false);
337 Constant &C = *ConstantInt::get(Int8, 42);
  /device/linaro/bootloader/edk2/MdeModulePkg/Bus/Usb/UsbMouseAbsolutePointerDxe/
UsbMouseAbsolutePointer.h 97 INT8 Int8;
  /device/linaro/bootloader/edk2/MdeModulePkg/Bus/Usb/UsbMouseDxe/
UsbMouse.h 97 INT8 Int8;
  /external/clang/include/clang/Basic/
TargetBuiltins.h 109 Int8,
  /external/tensorflow/tensorflow/go/
tensor.go 45 Int8 DataType = C.TF_INT8
228 {reflect.TypeOf(int8(0)), C.TF_INT8},
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/clang/host/darwin-x86/clang-4053586/prebuilt_include/clang/include/clang/Basic/
TargetBuiltins.h 113 Int8,
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/clang/Basic/
TargetBuiltins.h 113 Int8,
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/clang/Basic/
TargetBuiltins.h 113 Int8,
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/clang/Basic/
TargetBuiltins.h 113 Int8,
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/clang/Basic/
TargetBuiltins.h 113 Int8,
  /prebuilts/clang/host/darwin-x86/clang-4639204/include/clang/Basic/
TargetBuiltins.h 113 Int8,
  /prebuilts/clang/host/darwin-x86/clang-4691093/include/clang/Basic/
TargetBuiltins.h 113 Int8,
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/clang/include/clang/Basic/
TargetBuiltins.h 113 Int8,
  /prebuilts/clang/host/linux-x86/clang-4393122/include/clang/Basic/
TargetBuiltins.h 113 Int8,
  /prebuilts/clang/host/linux-x86/clang-4479392/include/clang/Basic/
TargetBuiltins.h 113 Int8,
  /prebuilts/clang/host/linux-x86/clang-4579689/include/clang/Basic/
TargetBuiltins.h 113 Int8,
  /prebuilts/clang/host/linux-x86/clang-4630689/include/clang/Basic/
TargetBuiltins.h 113 Int8,
  /prebuilts/clang/host/linux-x86/clang-4639204/include/clang/Basic/
TargetBuiltins.h 113 Int8,
  /prebuilts/clang/host/linux-x86/clang-4691093/include/clang/Basic/
TargetBuiltins.h 113 Int8,
  /prebuilts/go/darwin-x86/test/
const1.go 17 // assume all types behave similarly to int8/uint8
18 Int8 int8 = 101
19 Minus1 int8 = -1
33 a1 = Int8 * 100 // ERROR "overflow"
34 a2 = Int8 * -1 // OK
35 a3 = Int8 * 1000 // ERROR "overflow"
36 a4 = Int8 * int8(1000) // ERROR "overflow"
37 a5 = int8(Int8 * 1000) // ERROR "overflow
    [all...]
  /prebuilts/go/linux-x86/test/
const1.go 17 // assume all types behave similarly to int8/uint8
18 Int8 int8 = 101
19 Minus1 int8 = -1
33 a1 = Int8 * 100 // ERROR "overflow"
34 a2 = Int8 * -1 // OK
35 a3 = Int8 * 1000 // ERROR "overflow"
36 a4 = Int8 * int8(1000) // ERROR "overflow"
37 a5 = int8(Int8 * 1000) // ERROR "overflow
    [all...]

Completed in 258 milliseconds

1 2