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

  /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/unittests/IR/
ConstantsTest.cpp 103 IntegerType* Int8Ty = Type::getInt8Ty(getGlobalContext());
104 EXPECT_EQ(100, ConstantInt::get(Int8Ty, 100, false)->getSExtValue());
105 EXPECT_EQ(100, ConstantInt::get(Int8Ty, 100, true)->getSExtValue());
106 EXPECT_EQ(100, ConstantInt::getSigned(Int8Ty, 100)->getSExtValue());
107 EXPECT_EQ(-50, ConstantInt::get(Int8Ty, 206)->getSExtValue());
108 EXPECT_EQ(-50, ConstantInt::getSigned(Int8Ty, -50)->getSExtValue());
109 EXPECT_EQ(206U, ConstantInt::getSigned(Int8Ty, -50)->getZExtValue());
112 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/lib/IR/
LLVMContextImpl.h 297 IntegerType Int1Ty, Int8Ty, Int16Ty, Int32Ty, Int64Ty;
  /external/clang/lib/CodeGen/
CodeGenModule.h 114 llvm::IntegerType *Int8Ty, *Int16Ty, *Int32Ty, *Int64Ty;
    [all...]
CGExprScalar.cpp     [all...]
CGObjCGNU.cpp 118 llvm::IntegerType *Int8Ty;
258 Fields.push_back(llvm::ConstantInt::get(Int8Ty, attrs & 0xff));
268 Fields.push_back(llvm::ConstantInt::get(Int8Ty, attrs & 0xff));
270 Fields.push_back(llvm::ConstantInt::get(Int8Ty, 0));
271 Fields.push_back(llvm::ConstantInt::get(Int8Ty, 0));
    [all...]

Completed in 465 milliseconds