/external/llvm/include/llvm/ADT/ |
H A D | PointerIntPair.h | 41 template <typename PointerTy, unsigned IntBits, typename IntType=unsigned, 67 PointerIntPair(PointerTy PtrVal, IntType IntVal) { 79 IntType getInt() const { 80 return (IntType)((Value >> IntShift) & IntMask); 92 void setInt(IntType IntVal) { 109 void setPointerAndInt(PointerTy PtrVal, IntType IntVal) { 154 template<typename PointerTy, unsigned IntBits, typename IntType> 155 struct isPodLike<PointerIntPair<PointerTy, IntBits, IntType> > { 160 template<typename PointerTy, unsigned IntBits, typename IntType> 161 struct DenseMapInfo<PointerIntPair<PointerTy, IntBits, IntType> > { [all...] |
/external/clang/include/clang/Basic/ |
H A D | TargetInfo.h | 110 enum IntType { enum in class:clang::TargetInfo 173 IntType SizeType, IntMaxType, UIntMaxType, PtrDiffType, IntPtrType, WCharType, 207 IntType getSizeType() const { return SizeType; } 208 IntType getIntMaxType() const { return IntMaxType; } 209 IntType getUIntMaxType() const { return UIntMaxType; } 210 IntType getPtrDiffType(unsigned AddrSpace) const { 213 IntType getIntPtrType() const { return IntPtrType; } 214 IntType getUIntPtrType() const { 217 IntType getWCharType() const { return WCharType; } 218 IntType getWIntTyp [all...] |
/external/chromium_org/third_party/angle/src/compiler/preprocessor/ |
H A D | numeric_lex.h | 36 template<typename IntType> 37 bool numeric_lex_int(const std::string &str, IntType *value)
|
/external/chromium_org/content/browser/media/capture/ |
H A D | content_video_capture_device_core.h | 30 template<typename IntType> 31 IntType MakeEven(IntType x) { 32 return x & static_cast<IntType>(-2);
|
/external/chromium_org/sdch/open-vcdiff/src/ |
H A D | testing.h | 156 // This function returns a pseudo-random value of type IntType between 0 and 162 template<typename IntType> 163 inline IntType PortableRandomInRange(IntType limit) { 175 return static_cast<IntType>(limit * scaled_value);
|
/external/llvm/unittests/Analysis/ |
H A D | MixedTBAATest.cpp | 39 auto IntType = Type::getInt32Ty(C); local 41 auto *Value = ConstantInt::get(IntType, 42);
|
/external/chromium_org/third_party/tcmalloc/chromium/src/ |
H A D | packed-cache-inl.h | 124 #define N_ONES_(IntType, N) \ 125 ( (N) == 0 ? 0 : ((static_cast<IntType>(1) << ((N)-1))-1 + \ 126 (static_cast<IntType>(1) << ((N)-1))) )
|
/external/chromium_org/third_party/tcmalloc/vendor/src/ |
H A D | packed-cache-inl.h | 124 #define N_ONES_(IntType, N) \ 125 ( (N) == 0 ? 0 : ((static_cast<IntType>(1) << ((N)-1))-1 + \ 126 (static_cast<IntType>(1) << ((N)-1))) )
|
/external/clang/lib/AST/ |
H A D | ItaniumCXXABI.cpp | 58 TargetInfo::IntType PtrDiff = Target.getPtrDiffType(0);
|
H A D | ASTContext.cpp | 6301 /// is actually a value of type @c TargetInfo::IntType. 6317 llvm_unreachable("Unhandled TargetInfo::IntType value"); 8022 TargetInfo::IntType Ty = getTargetInfo().getIntTypeByWidth(DestWidth, Signed);
|
/external/clang/lib/Basic/ |
H A D | TargetInfo.cpp | 104 const char *TargetInfo::getTypeName(IntType T) { 122 const char *TargetInfo::getTypeConstantSuffix(IntType T) { 140 unsigned TargetInfo::getTypeWidth(IntType T) const { 156 TargetInfo::IntType TargetInfo::getIntTypeByWidth( 171 TargetInfo::IntType TargetInfo::getLeastIntTypeByWidth(unsigned BitWidth, 209 unsigned TargetInfo::getTypeAlign(IntType T) const { 227 bool TargetInfo::isTypeSigned(IntType T) {
|
/external/chromium_org/third_party/skia/platform_tools/android/gyp_gen/ |
H A D | vars_dict_lib.py | 123 if type(index) == types.IntType:
|
/external/skia/platform_tools/android/gyp_gen/ |
H A D | vars_dict_lib.py | 123 if type(index) == types.IntType:
|
/external/chromium_org/third_party/harfbuzz-ng/src/ |
H A D | hb-open-type-private.hh | 556 struct IntType struct in namespace:OT 560 inline bool operator == (const IntType<Type,Size> &o) const { return v == o.v; } argument 561 inline bool operator != (const IntType<Type,Size> &o) const { return v != o.v; } argument 562 static inline int cmp (const IntType<Type,Size> *a, const IntType<Type,Size> *b) { return b->cmp (*a); } argument 563 inline int cmp (IntType<Type,Size> va) const { Type a = va; Type b = v; return a < b ? -1 : a == b ? 0 : +1; } 575 typedef IntType<uint16_t, 2> USHORT; /* 16-bit unsigned integer. */ 576 typedef IntType<int16_t, 2> SHORT; /* 16-bit signed integer. */ 577 typedef IntType<uint32_t, 4> ULONG; /* 32-bit unsigned integer. */ 578 typedef IntType<int32_ [all...] |
/external/harfbuzz_ng/src/ |
H A D | hb-open-type-private.hh | 565 struct IntType struct in namespace:OT 569 inline bool operator == (const IntType<Type,Size> &o) const { return v == o.v; } argument 570 inline bool operator != (const IntType<Type,Size> &o) const { return v != o.v; } argument 571 static inline int cmp (const IntType<Type,Size> *a, const IntType<Type,Size> *b) { return b->cmp (*a); } argument 572 inline int cmp (IntType<Type,Size> va) const { Type a = va; Type b = v; return a < b ? -1 : a == b ? 0 : +1; } 585 typedef IntType<uint16_t, 2> USHORT; /* 16-bit unsigned integer. */ 586 typedef IntType<int16_t, 2> SHORT; /* 16-bit signed integer. */ 587 typedef IntType<uint32_t, 4> ULONG; /* 32-bit unsigned integer. */ 588 typedef IntType<int32_ [all...] |
/external/clang/lib/StaticAnalyzer/Core/ |
H A D | RangeConstraintManager.cpp | 355 APSIntType IntType = BV.getAPSIntType(Sym->getType()); local 356 llvm::APSInt Zero = IntType.getZeroValue(); 398 APSIntType IntType = BV.getAPSIntType(T); local 399 Result = Result.Intersect(BV, F, ++IntType.getZeroValue(), 400 --IntType.getZeroValue());
|
H A D | SimpleSValBuilder.cpp | 378 APSIntType IntType = BasicVals.getAPSIntType(resultTy); local 379 IntType.apply(LHSValue); 380 IntType.apply(RHSValue); 493 APSIntType IntType = BasicVals.getAPSIntType(resultTy); local 494 const llvm::APSInt &first = IntType.convert(symIntExpr->getRHS()); 495 const llvm::APSInt &second = IntType.convert(*RHSValue);
|
/external/clang/lib/Frontend/ |
H A D | InitPreprocessor.cpp | 193 static void DefineTypeSize(const Twine &MacroName, TargetInfo::IntType Ty, 199 static void DefineType(const Twine &MacroName, TargetInfo::IntType Ty, 204 static void DefineTypeWidth(StringRef MacroName, TargetInfo::IntType Ty, 215 static void DefineExactWidthIntType(TargetInfo::IntType Ty, 236 static void DefineExactWidthIntTypeSize(TargetInfo::IntType Ty, 254 TargetInfo::IntType Ty = TI.getLeastIntTypeByWidth(TypeWidth, IsSigned); 267 TargetInfo::IntType Ty = TI.getLeastIntTypeByWidth(TypeWidth, IsSigned);
|
/external/chromium_org/net/tools/testserver/ |
H A D | asn1.py | 23 if type(obj) == types.IntType or type(obj) == types.LongType:
|
/external/llvm/unittests/Transforms/Utils/ |
H A D | Cloning.cpp | 256 DIType IntType = DBuilder.createBasicType("int", 32, 0, local 259 dwarf::DW_TAG_auto_variable, Subprogram, "x", File, 5, IntType, true);
|
/external/llvm/lib/Analysis/ |
H A D | ConstantFolding.cpp | 397 IntegerType *IntType = dyn_cast<IntegerType>(LoadTy); local 400 if (!IntType) { 427 unsigned BytesLoaded = (IntType->getBitWidth() + 7) / 8; 449 return UndefValue::get(IntType); 456 APInt ResultVal = APInt(IntType->getBitWidth(), 0); 471 return ConstantInt::get(IntType->getContext(), ResultVal);
|
/external/clang/lib/CodeGen/ |
H A D | CGBuiltin.cpp | 57 QualType T, llvm::IntegerType *IntType) { 61 return CGF.Builder.CreatePtrToInt(V, IntType); 63 assert(V->getType() == IntType); 92 llvm::IntegerType *IntType = local 95 llvm::Type *IntPtrType = IntType->getPointerTo(AddrSpace); 101 Args[1] = EmitToInt(CGF, Args[1], T, IntType); 126 llvm::IntegerType *IntType = local 129 llvm::Type *IntPtrType = IntType->getPointerTo(AddrSpace); 134 Args[1] = EmitToInt(CGF, Args[1], T, IntType); 963 llvm::IntegerType *IntType local 56 EmitToInt(CodeGenFunction &CGF, llvm::Value *V, QualType T, llvm::IntegerType *IntType) argument 992 llvm::IntegerType *IntType = local 1524 llvm::IntegerType *IntType = local [all...] |
/external/protobuf/src/google/protobuf/ |
H A D | text_format.cc | 1135 template<typename IntType> 1136 static string PaddedHex(IntType value) {
|
/external/llvm/lib/Transforms/InstCombine/ |
H A D | InstCombineCalls.cpp | 93 IntegerType* IntType = IntegerType::get(MI->getContext(), Size<<3); local 94 Type *NewSrcPtrTy = PointerType::get(IntType, SrcAddrSp); 95 Type *NewDstPtrTy = PointerType::get(IntType, DstAddrSp);
|
/external/chromium_org/third_party/protobuf/src/google/protobuf/ |
H A D | text_format.cc | 1415 template<typename IntType> 1416 static string PaddedHex(IntType value) {
|