HomeSort by relevance Sort by last modified time
    Searched refs:IntegerType (Results 1 - 25 of 172) sorted by null

1 2 3 4 5 6 7

  /external/ceres-solver/internal/ceres/
compressed_col_sparse_matrix_utils.h 69 template <typename IntegerType>
70 void SolveUpperTriangularInPlace(IntegerType num_cols,
71 const IntegerType* rows,
72 const IntegerType* cols,
75 for (IntegerType c = num_cols - 1; c >= 0; --c) {
77 for (IntegerType idx = cols[c]; idx < cols[c + 1] - 1; ++idx) {
78 const IntegerType r = rows[idx];
90 template <typename IntegerType>
91 void SolveUpperTriangularTransposeInPlace(IntegerType num_cols,
92 const IntegerType* rows
    [all...]
  /external/clang/lib/CodeGen/
CodeGenTypeCache.h 22 class IntegerType;
37 llvm::IntegerType *Int8Ty, *Int16Ty, *Int32Ty, *Int64Ty;
42 llvm::IntegerType *IntTy;
46 llvm::IntegerType *IntPtrTy;
47 llvm::IntegerType *SizeTy;
48 llvm::IntegerType *PtrDiffTy;
CGOpenCLRuntime.cpp 84 return llvm::IntegerType::get(Ctx, 32);
  /external/proguard/src/proguard/classfile/attribute/preverification/
VerificationTypeFactory.java 24 * This class provides methods to create and reuse IntegerType objects.
31 static final IntegerType INTEGER_TYPE = new IntegerType();
41 * Creates a new IntegerType.
43 public static IntegerType createIntegerType()
IntegerType.java 32 public class IntegerType extends VerificationType
  /external/llvm/examples/BrainF/
BrainF.cpp 65 getOrInsertFunction("getchar", IntegerType::getInt32Ty(C), NULL));
69 getOrInsertFunction("putchar", IntegerType::getInt32Ty(C),
70 IntegerType::getInt32Ty(C), NULL));
83 Type* IntPtrTy = IntegerType::getInt32Ty(C);
84 Type* Int8Ty = IntegerType::getInt8Ty(C);
146 getOrInsertFunction("puts", IntegerType::getInt32Ty(C),
147 PointerType::getUnqual(IntegerType::getInt8Ty(C)), NULL));
154 Constant *zero_32 = Constant::getNullValue(IntegerType::getInt32Ty(C));
207 CreateTrunc(tape_0, IntegerType::getInt8Ty(C), tapereg);
221 CreateSExt(tape_0, IntegerType::getInt32Ty(C), tapereg)
    [all...]
BrainFDriver.cpp 61 getOrInsertFunction("main", IntegerType::getInt32Ty(mod->getContext()),
62 IntegerType::getInt32Ty(mod->getContext()),
64 IntegerType::getInt8Ty(mod->getContext()))), NULL));
  /external/gemmlowp/internal/
fixedpoint.h 141 template <typename IntegerType>
142 IntegerType RoundingHalfSum(IntegerType a, IntegerType b) {
143 static_assert(std::is_same<IntegerType, void>::value, "unimplemented");
156 template <typename IntegerType>
157 IntegerType SaturatingRoundingDoublingHighMul(IntegerType a, IntegerType b) {
158 static_assert(std::is_same<IntegerType, void>::value, "unimplemented")
    [all...]
  /external/llvm/include/llvm/IR/
Type.h 28 class IntegerType;
184 /// isIntegerTy - True if this is an instance of IntegerType.
188 /// isIntegerTy - Return true if this is an IntegerType of the given width.
385 static IntegerType *getIntNTy(LLVMContext &C, unsigned N);
386 static IntegerType *getInt1Ty(LLVMContext &C);
387 static IntegerType *getInt8Ty(LLVMContext &C);
388 static IntegerType *getInt16Ty(LLVMContext &C);
389 static IntegerType *getInt32Ty(LLVMContext &C);
390 static IntegerType *getInt64Ty(LLVMContext &C);
391 static IntegerType *getInt128Ty(LLVMContext &C)
    [all...]
DerivedTypes.h 37 class IntegerType : public Type {
41 explicit IntegerType(LLVMContext &C, unsigned NumBits) : Type(C, IntegerTyID){
46 /// This enum is just used to hold constants we need for IntegerType.
54 /// This static method is the primary way of constructing an IntegerType.
55 /// If an IntegerType with the same NumBits value was previously instantiated,
58 /// @brief Get or create an IntegerType instance.
59 static IntegerType *get(LLVMContext &C, unsigned NumBits);
61 /// @brief Get the number of bits in this IntegerType
82 /// This method determines if the width of this IntegerType is a power-of-2
85 /// @brief Is this a power-of-2 byte-width IntegerType
    [all...]
TypeBuilder.h 90 /// i<N> corresponds to the LLVM IntegerType with N bits.
162 static IntegerType *get(LLVMContext &Context) { \
163 return IntegerType::get(Context, sizeof(T) * CHAR_BIT); \
191 static IntegerType *get(LLVMContext &C) {
192 return IntegerType::get(C, num_bits);
  /external/llvm/lib/Transforms/Utils/
BypassSlowDivision.cpp 80 IntegerType *BypassType,
188 IntegerType *BypassType,
247 IntegerType *T = cast<IntegerType>(J->getType());
256 IntegerType *BT = IntegerType::get(J->getContext(), BI->second);
  /external/llvm/lib/IR/
Type.cpp 52 /// isIntegerTy - Return true if this is an IntegerType of the specified width.
54 return isIntegerTy() && cast<IntegerType>(this)->getBitWidth() == Bitwidth;
123 case Type::IntegerTyID: return cast<IntegerType>(this)->getBitWidth();
170 return cast<IntegerType>(this)->getBitWidth();
230 IntegerType *Type::getInt1Ty(LLVMContext &C) { return &C.pImpl->Int1Ty; }
231 IntegerType *Type::getInt8Ty(LLVMContext &C) { return &C.pImpl->Int8Ty; }
232 IntegerType *Type::getInt16Ty(LLVMContext &C) { return &C.pImpl->Int16Ty; }
233 IntegerType *Type::getInt32Ty(LLVMContext &C) { return &C.pImpl->Int32Ty; }
234 IntegerType *Type::getInt64Ty(LLVMContext &C) { return &C.pImpl->Int64Ty; }
235 IntegerType *Type::getInt128Ty(LLVMContext &C) { return &C.pImpl->Int128Ty;
    [all...]
ValueTypes.cpp 35 VT.LLVMTy = IntegerType::get(Context, BitWidth);
107 if (IntegerType *ITy = dyn_cast<IntegerType>(LLVMTy))
210 case MVT::i128: return IntegerType::get(Context, 128);
284 return getIntegerVT(cast<IntegerType>(Ty)->getBitWidth());
309 return getIntegerVT(Ty->getContext(), cast<IntegerType>(Ty)->getBitWidth());
  /external/proguard/src/proguard/classfile/attribute/preverification/visitor/
VerificationTypeVisitor.java 36 public void visitIntegerType( Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, IntegerType integerType);
46 public void visitStackIntegerType( Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, int index, IntegerType integerType);
56 public void visitVariablesIntegerType( Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, int index, IntegerType integerType);
  /external/llvm/lib/Analysis/
DemandedBits.cpp 284 if (IntegerType *IT = dyn_cast<IntegerType>(I.getType())) {
296 if (IntegerType *IT = dyn_cast<IntegerType>(J->getType()))
328 if (IntegerType *IT = dyn_cast<IntegerType>(I->getType())) {
  /external/llvm/unittests/ExecutionEngine/Orc/
ObjectLinkingLayerTest.cpp 48 Type *Int32Ty = IntegerType::get(getGlobalContext(), 32);
  /external/llvm/unittests/IR/
TypeBuilderTest.cpp 44 EXPECT_EQ(IntegerType::get(getGlobalContext(), sizeof(size_t) * CHAR_BIT),
46 EXPECT_EQ(IntegerType::get(getGlobalContext(), sizeof(ptrdiff_t) * CHAR_BIT),
51 EXPECT_EQ(IntegerType::get(getGlobalContext(), 1), (TypeBuilder<types::i<1>, true>::get(getGlobalContext())));
52 EXPECT_EQ(IntegerType::get(getGlobalContext(), 1), (TypeBuilder<types::i<1>, false>::get(getGlobalContext())));
53 EXPECT_EQ(IntegerType::get(getGlobalContext(), 72), (TypeBuilder<types::i<72>, true>::get(getGlobalContext())));
54 EXPECT_EQ(IntegerType::get(getGlobalContext(), 72), (TypeBuilder<types::i<72>, false>::get(getGlobalContext())));
  /art/runtime/verifier/
reg_type-inl.h 168 inline const IntegerType* IntegerType::GetInstance() {
  /external/llvm/include/llvm/Analysis/
PtrUseVisitor.h 208 IntegerType *IntPtrTy = cast<IntegerType>(DL.getIntPtrType(I.getType()));
  /external/llvm/lib/Transforms/Scalar/
InductiveRangeCheckElimination.cpp 639 APInt::getSignedMaxValue(cast<IntegerType>(S->getType())->getBitWidth());
646 APInt::getSignedMinValue(cast<IntegerType>(S->getType())->getBitWidth());
686 if (!ICI || !isa<IntegerType>(ICI->getOperand(0)->getType())) {
700 IntegerType *IndVarTy = cast<IntegerType>(LeftValue->getType());
721 IntegerType *Ty = cast<IntegerType>(AR->getType());
722 IntegerType *WideTy =
723 IntegerType::get(Ty->getContext(), Ty->getBitWidth() * 2);
859 IntegerType *Ty = cast<IntegerType>(LatchTakenCount->getType())
    [all...]
SROA.cpp     [all...]
StraightLineStrengthReduce.cpp 383 if (!isa<IntegerType>(I->getType()))
407 ConstantInt *One = ConstantInt::get(cast<IntegerType>(I->getType()), 1);
441 ConstantInt *Zero = ConstantInt::get(cast<IntegerType>(I->getType()), 0);
451 if (!isa<IntegerType>(I->getType()))
469 // Casting to IntegerType is safe because we skipped vector GEPs.
470 IntegerType *IntPtrTy = cast<IntegerType>(DL->getIntPtrType(I->getType()));
482 Base, ConstantInt::get(cast<IntegerType>(ArrayIdx->getType()), 1),
589 IntegerType *DeltaType =
590 IntegerType::get(Basis.Ins->getContext(), IndexOffset.getBitWidth())
    [all...]
  /external/llvm/lib/CodeGen/MIRParser/
MILexer.h 99 IntegerType,
  /external/llvm/lib/ExecutionEngine/Orc/
OrcMCJITReplacement.cpp 91 unsigned BitWidth = cast<IntegerType>(RetTy)->getBitWidth();

Completed in 788 milliseconds

1 2 3 4 5 6 7