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

1 2 3

  /frameworks/compile/slang/
slang_rs_special_func.cpp 44 const clang::QualType &IntType = FD->getASTContext().IntTy;
45 if (FD->getReturnType().getCanonicalType() == IntType) {
60 const clang::QualType &IntType = FD->getASTContext().IntTy;
67 if (QT != IntType) {
77 if (FD->getReturnType().getCanonicalType() != IntType) {
  /external/llvm/unittests/Analysis/
MixedTBAATest.cpp 41 auto IntType = Type::getInt32Ty(C);
43 auto *Value = ConstantInt::get(IntType, 42);
AliasAnalysisTest.cpp 172 auto IntType = Type::getInt32Ty(C);
174 auto *Value = ConstantInt::get(IntType, 42);
182 Addr, ConstantInt::get(IntType, 0), ConstantInt::get(IntType, 1),
185 new AtomicRMWInst(AtomicRMWInst::Xchg, Addr, ConstantInt::get(IntType, 1),
  /external/tensorflow/tensorflow/core/lib/gtl/
int_type.h 21 // IntType is a simple template class mechanism for defining "logical"
25 // template class IntType<IntTypeName, ValueType> (where ValueType assumes
55 // The class IntType prevents:
62 // 2) Explicit/implicit conversion from an IntType to another IntType.
71 // 3) Implicit conversion from an IntType to a native integer type.
95 // The class also defines a hash functor that allows the IntType to be used
100 // STL vector (see int-type-indexed-container.h) if an IntType is intended to
129 // from the IntType class.
135 // of the IntType class. Keep in mind that the primary reason for the IntTyp
    [all...]
  /prebuilts/go/darwin-x86/src/debug/dwarf/
type.go 61 // An IntType represents a signed integer type.
62 type IntType struct {
469 typ = new(IntType)
  /prebuilts/go/linux-x86/src/debug/dwarf/
type.go 61 // An IntType represents a signed integer type.
62 type IntType struct {
469 typ = new(IntType)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
types.py 16 IntType = int
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
types.py 16 IntType = int
  /device/linaro/bootloader/edk2/QuarkPlatformPkg/Include/
PlatformBoards.h 116 UINT32 IntType; ///< Value for IOH REG GPIO_INTTYPE_LEVEL.
  /external/llvm/test/DebugInfo/PDB/Inputs/
symbolformat.cpp 55 typedef int IntType;
70 IntType Int = 12;
  /external/python/cpython2/Lib/
types.py 16 IntType = int
  /prebuilts/gdb/darwin-x86/lib/python2.7/
types.py 16 IntType = int
  /prebuilts/gdb/linux-x86/lib/python2.7/
types.py 16 IntType = int
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
types.py 16 IntType = int
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
types.py 16 IntType = int
  /system/tools/aidl/
type_java.h 453 const Type* IntType() const { return m_int_type; }
  /external/clang/lib/StaticAnalyzer/Core/
RangeConstraintManager.cpp 386 APSIntType IntType = BV.getAPSIntType(Sym->getType());
387 llvm::APSInt Zero = IntType.getZeroValue();
429 APSIntType IntType = BV.getAPSIntType(T);
430 Result = Result.Intersect(BV, F, ++IntType.getZeroValue(),
431 --IntType.getZeroValue());
SimpleSValBuilder.cpp 378 APSIntType IntType = BasicVals.getAPSIntType(resultTy);
379 IntType.apply(LHSValue);
380 IntType.apply(RHSValue);
493 APSIntType IntType = BasicVals.getAPSIntType(resultTy);
494 const llvm::APSInt &first = IntType.convert(symIntExpr->getRHS());
495 const llvm::APSInt &second = IntType.convert(*RHSValue);
    [all...]
  /external/llvm/unittests/Transforms/Utils/
Cloning.cpp 255 auto *IntType =
259 DBuilder.createAutoVariable(Subprogram, "x", File, 5, IntType, true);
  /external/swiftshader/third_party/LLVM/lib/Analysis/
ConstantFolding.cpp 363 IntegerType *IntType = dyn_cast<IntegerType>(LoadTy);
366 if (!IntType) {
389 unsigned BytesLoaded = (IntType->getBitWidth() + 7) / 8;
408 return UndefValue::get(IntType);
415 APInt ResultVal = APInt(IntType->getBitWidth(), RawBytes[BytesLoaded-1]);
421 return ConstantInt::get(IntType->getContext(), ResultVal);
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Include/IndustryStandard/
LegacyBiosMpTable.h 150 UINT8 IntType;
196 UINT8 IntType;
  /device/linaro/bootloader/edk2/MdePkg/Include/IndustryStandard/
LegacyBiosMpTable.h 172 UINT8 IntType;
207 UINT8 IntType;
  /external/harfbuzz_ng/src/
hb-open-type-private.hh 611 struct IntType
615 inline bool operator == (const IntType<Type,Size> &o) const { return (Type) v == (Type) o.v; }
616 inline bool operator != (const IntType<Type,Size> &o) const { return !(*this == o); }
617 static inline int cmp (const IntType<Type,Size> *a, const IntType<Type,Size> *b) { return b->cmp (*a); }
638 typedef IntType<uint8_t, 1> UINT8; /* 8-bit unsigned integer. */
639 typedef IntType<int8_t, 1> INT8; /* 8-bit signed integer. */
640 typedef IntType<uint16_t, 2> UINT16; /* 16-bit unsigned integer. */
641 typedef IntType<int16_t, 2> INT16; /* 16-bit signed integer. */
642 typedef IntType<uint32_t, 4> UINT32; /* 32-bit unsigned integer. *
    [all...]
  /external/llvm/lib/Analysis/
ConstantFolding.cpp 411 auto *IntType = dyn_cast<IntegerType>(LoadTy);
414 if (!IntType) {
440 unsigned BytesLoaded = (IntType->getBitWidth() + 7) / 8;
459 return UndefValue::get(IntType);
463 return UndefValue::get(IntType);
479 APInt ResultVal = APInt(IntType->getBitWidth(), 0);
494 return ConstantInt::get(IntType->getContext(), ResultVal);
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineVectorOps.cpp 392 IntegerType *IntType = Type::getInt32Ty(InsElt->getContext());
394 ExtendMask.push_back(ConstantInt::get(IntType, i));
396 ExtendMask.push_back(UndefValue::get(IntType));
    [all...]

Completed in 1000 milliseconds

1 2 3