HomeSort by relevance Sort by last modified time
    Searched refs:IntegerType (Results 1 - 25 of 158) 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/chromium_org/third_party/WebKit/Source/wtf/
StringExtrasTest.cpp 36 template<typename IntegerType> struct PrintfFormatTrait { static const char format[]; };
72 template<typename IntegerType>
79 const IntegerType min = std::numeric_limits<IntegerType>::min();
81 snprintf(buffer.data(), bufferSize, PrintfFormatTrait<IntegerType>::format, min);
84 const IntegerType max = std::numeric_limits<IntegerType>::max();
86 snprintf(buffer.data(), bufferSize, PrintfFormatTrait<IntegerType>::format, max);
90 template<typename IntegerType>
98 const IntegerType number = static_cast<IntegerType>(i)
    [all...]
  /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/chromium_org/third_party/WebKit/Source/platform/
CheckedInt.h 67 template<typename IntegerType>
73 template<typename IntegerType>
76 static const bool value = IsSupportedPass2<IntegerType>::value;
185 template<typename IntegerType>
188 typedef typename StdintTypeForSizeAndSignedness<sizeof(IntegerType),
192 template<typename IntegerType>
195 static const bool value = IntegerType(-1) <= IntegerType(0);
198 template<typename IntegerType, size_t Size = sizeof(IntegerType)>
    [all...]
  /art/compiler/llvm/generated/
art_module.cc 47 StructTy_ShadowFrame_fields.push_back(IntegerType::get(mod->getContext(), 32));
52 StructTy_ShadowFrame_fields.push_back(IntegerType::get(mod->getContext(), 32));
96 FuncTy_7_args.push_back(IntegerType::get(mod->getContext(), 32));
116 FuncTy_10_args.push_back(IntegerType::get(mod->getContext(), 32));
117 FuncTy_10_args.push_back(IntegerType::get(mod->getContext(), 32));
124 FuncTy_11_args.push_back(IntegerType::get(mod->getContext(), 32));
132 FuncTy_12_args.push_back(IntegerType::get(mod->getContext(), 32));
134 /*Result=*/IntegerType::get(mod->getContext(), 32),
139 FuncTy_13_args.push_back(IntegerType::get(mod->getContext(), 32));
148 FuncTy_14_args.push_back(IntegerType::get(mod->getContext(), 32))
    [all...]
  /external/llvm/examples/BrainF/
BrainF.cpp 64 getOrInsertFunction("getchar", IntegerType::getInt32Ty(C), NULL));
68 getOrInsertFunction("putchar", IntegerType::getInt32Ty(C),
69 IntegerType::getInt32Ty(C), NULL));
83 Type* IntPtrTy = IntegerType::getInt32Ty(C);
84 Type* Int8Ty = IntegerType::getInt8Ty(C);
150 getOrInsertFunction("puts", IntegerType::getInt32Ty(C),
151 PointerType::getUnqual(IntegerType::getInt8Ty(C)), NULL));
158 Constant *zero_32 = Constant::getNullValue(IntegerType::getInt32Ty(C));
210 CreateTrunc(tape_0, IntegerType::getInt8Ty(C), tapereg);
224 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/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/include/llvm/IR/
Type.h 29 class IntegerType;
191 /// isIntegerTy - True if this is an instance of IntegerType.
195 /// isIntegerTy - Return true if this is an IntegerType of the given width.
389 static IntegerType *getIntNTy(LLVMContext &C, unsigned N);
390 static IntegerType *getInt1Ty(LLVMContext &C);
391 static IntegerType *getInt8Ty(LLVMContext &C);
392 static IntegerType *getInt16Ty(LLVMContext &C);
393 static IntegerType *getInt32Ty(LLVMContext &C);
394 static IntegerType *getInt64Ty(LLVMContext &C);
DerivedTypes.h 37 class IntegerType : public Type {
41 explicit IntegerType(LLVMContext &C, unsigned NumBits) : Type(C, IntegerTyID){
45 /// This enum is just used to hold constants we need for IntegerType.
53 /// This static method is the primary way of constructing an IntegerType.
54 /// If an IntegerType with the same NumBits value was previously instantiated,
57 /// @brief Get or create an IntegerType instance.
58 static IntegerType *get(LLVMContext &C, unsigned NumBits);
60 /// @brief Get the number of bits in this IntegerType
81 /// This method determines if the width of this IntegerType is a power-of-2
84 /// @brief Is this a power-of-2 byte-width IntegerType
    [all...]
TypeBuilder.h 82 /// i<N> corresponds to the LLVM IntegerType with N bits.
154 static IntegerType *get(LLVMContext &Context) { \
155 return IntegerType::get(Context, sizeof(T) * CHAR_BIT); \
183 static IntegerType *get(LLVMContext &C) {
184 return IntegerType::get(C, num_bits);
  /external/llvm/lib/IR/
Type.cpp 57 /// isIntegerTy - Return true if this is an IntegerType of the specified width.
59 return isIntegerTy() && cast<IntegerType>(this)->getBitWidth() == Bitwidth;
126 case Type::IntegerTyID: return cast<IntegerType>(this)->getBitWidth();
173 return cast<IntegerType>(this)->getBitWidth();
232 IntegerType *Type::getInt1Ty(LLVMContext &C) { return &C.pImpl->Int1Ty; }
233 IntegerType *Type::getInt8Ty(LLVMContext &C) { return &C.pImpl->Int8Ty; }
234 IntegerType *Type::getInt16Ty(LLVMContext &C) { return &C.pImpl->Int16Ty; }
235 IntegerType *Type::getInt32Ty(LLVMContext &C) { return &C.pImpl->Int32Ty; }
236 IntegerType *Type::getInt64Ty(LLVMContext &C) { return &C.pImpl->Int64Ty; }
238 IntegerType *Type::getIntNTy(LLVMContext &C, unsigned N)
    [all...]
ValueTypes.cpp 30 VT.LLVMTy = IntegerType::get(Context, BitWidth);
98 if (IntegerType *ITy = dyn_cast<IntegerType>(LLVMTy))
191 case MVT::i128: return IntegerType::get(Context, 128);
255 return getIntegerVT(cast<IntegerType>(Ty)->getBitWidth());
280 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);
  /art/compiler/llvm/
runtime_support_builder_arm.cc 35 using ::llvm::IntegerType;
44 ::llvm::cast<IntegerType>(type)->getBitWidth();
ir_builder.h 203 ::llvm::IntegerType* getPtrEquivIntTy() {
319 ::llvm::IntegerType* getJBooleanTy() {
323 ::llvm::IntegerType* getJByteTy() {
327 ::llvm::IntegerType* getJCharTy() {
331 ::llvm::IntegerType* getJShortTy() {
335 ::llvm::IntegerType* getJIntTy() {
339 ::llvm::IntegerType* getJLongTy() {
  /external/clang/lib/CodeGen/
CGOpenCLRuntime.cpp 62 return llvm::IntegerType::get(Ctx, 32);
CGBuiltin.cpp 57 QualType T, llvm::IntegerType *IntType) {
92 llvm::IntegerType *IntType =
93 llvm::IntegerType::get(CGF.getLLVMContext(),
126 llvm::IntegerType *IntType =
127 llvm::IntegerType::get(CGF.getLLVMContext(),
762 llvm::IntegerType *Ty
763 = cast<llvm::IntegerType>(ConvertType(E->getType()));
781 llvm::IntegerType *IntTy = cast<llvm::IntegerType>(Int->getType());
    [all...]
  /external/llvm/unittests/IR/
VerifierTest.cpp 41 Constant *Zero32 = ConstantInt::get(IntegerType::get(C, 32), 0);
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())));
  /external/chromium_org/mojo/public/python/mojo/bindings/
descriptor.py 111 class IntegerType(NumericType):
419 TYPE_INT8 = IntegerType('b')
420 TYPE_INT16 = IntegerType('h')
421 TYPE_INT32 = IntegerType('i')
422 TYPE_INT64 = IntegerType('q')
424 TYPE_UINT8 = IntegerType('B')
425 TYPE_UINT16 = IntegerType('H')
426 TYPE_UINT32 = IntegerType('I')
427 TYPE_UINT64 = IntegerType('Q')
  /external/chromium_org/third_party/WebKit/Source/modules/indexeddb/
IDBAny.cpp 145 ASSERT(m_type == IntegerType);
231 : m_type(IntegerType)
IDBAny.h 95 IntegerType,
  /external/llvm/include/llvm/Analysis/
PtrUseVisitor.h 208 IntegerType *IntPtrTy = cast<IntegerType>(DL.getIntPtrType(I.getType()));

Completed in 857 milliseconds

1 2 3 4 5 6 7