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

  /external/llvm/unittests/VMCore/
ConstantsTest.cpp 100 IntegerType* Int8Ty = Type::getInt8Ty(getGlobalContext());
101 EXPECT_EQ(100, ConstantInt::get(Int8Ty, 100, false)->getSExtValue());
102 EXPECT_EQ(100, ConstantInt::get(Int8Ty, 100, true)->getSExtValue());
103 EXPECT_EQ(100, ConstantInt::getSigned(Int8Ty, 100)->getSExtValue());
104 EXPECT_EQ(-50, ConstantInt::get(Int8Ty, 206)->getSExtValue());
105 EXPECT_EQ(-50, ConstantInt::getSigned(Int8Ty, -50)->getSExtValue());
106 EXPECT_EQ(206U, ConstantInt::getSigned(Int8Ty, -50)->getZExtValue());
109 EXPECT_EQ(0x3b, ConstantInt::get(Int8Ty, 0x13b)->getSExtValue());
InstructionsTest.cpp 119 Type* Int8Ty = Type::getInt8Ty(C);
121 Type* V8x8Ty = VectorType::get(Int8Ty, 8);
  /external/llvm/examples/BrainF/
BrainF.cpp 84 Type* Int8Ty = IntegerType::getInt8Ty(C);
85 Constant* allocsize = ConstantExpr::getSizeOf(Int8Ty);
87 ptr_arr = CallInst::CreateMalloc(BB, IntPtrTy, Int8Ty, allocsize, val_mem,
  /external/llvm/lib/VMCore/
LLVMContextImpl.h 299 IntegerType Int1Ty, Int8Ty, Int16Ty, Int32Ty, Int64Ty;
  /external/clang/lib/CodeGen/
CodeGenModule.h 107 llvm::IntegerType *Int8Ty, *Int16Ty, *Int32Ty, *Int64Ty;
    [all...]
CGExprScalar.cpp     [all...]
CGObjCGNU.cpp 120 llvm::IntegerType *Int8Ty;
    [all...]

Completed in 123 milliseconds