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

1 2

  /frameworks/compile/mclinker/include/mcld/Support/
LEB128.h 23 template<typename IntType>
24 size_t encode(ByteType *&pBuf, IntType pValue);
26 template<typename IntType>
27 IntType decode(const ByteType *pBuf, size_t &pSize);
29 template<typename IntType>
30 IntType decode(const ByteType *&pBuf);
36 template<typename IntType>
37 size_t size(IntType pValue) {
96 template<typename IntType>
97 size_t encode(char *&pBuf, IntType pValue)
    [all...]
  /external/llvm/include/llvm/ADT/
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/
TargetInfo.h 110 enum IntType {
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 getWIntType() const { return WIntType;
    [all...]
  /external/chromium_org/third_party/angle/src/compiler/preprocessor/
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/
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/
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/
MixedTBAATest.cpp 39 auto IntType = Type::getInt32Ty(C);
41 auto *Value = ConstantInt::get(IntType, 42);
  /external/chromium_org/third_party/tcmalloc/chromium/src/
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/
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/
ItaniumCXXABI.cpp 58 TargetInfo::IntType PtrDiff = Target.getPtrDiffType(0);
  /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
  /external/clang/lib/Basic/
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/
vars_dict_lib.py 123 if type(index) == types.IntType:
  /external/skia/platform_tools/android/gyp_gen/
vars_dict_lib.py 123 if type(index) == types.IntType:
  /frameworks/compile/slang/
slang_rs_export_foreach.cpp 461 const clang::QualType &IntType = FD->getASTContext().IntTy;
462 if (FD->getReturnType().getCanonicalType() == IntType) {
526 const clang::QualType &IntType = FD->getASTContext().IntTy;
533 if (QT != IntType) {
543 if (FD->getReturnType().getCanonicalType() != IntType) {
  /external/chromium_org/third_party/harfbuzz-ng/src/
hb-open-type-private.hh 565 struct IntType
569 inline bool operator == (const IntType<Type,Size> &o) const { return v == o.v; }
570 inline bool operator != (const IntType<Type,Size> &o) const { return v != o.v; }
571 static inline int cmp (const IntType<Type,Size> *a, const IntType<Type,Size> *b) { return b->cmp (*a); }
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_t, 4> LONG; /* 32-bit signed integer. *
    [all...]
  /external/harfbuzz_ng/src/
hb-open-type-private.hh 565 struct IntType
569 inline bool operator == (const IntType<Type,Size> &o) const { return v == o.v; }
570 inline bool operator != (const IntType<Type,Size> &o) const { return v != o.v; }
571 static inline int cmp (const IntType<Type,Size> *a, const IntType<Type,Size> *b) { return b->cmp (*a); }
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_t, 4> LONG; /* 32-bit signed integer. *
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
RangeConstraintManager.cpp 355 APSIntType IntType = BV.getAPSIntType(Sym->getType());
356 llvm::APSInt Zero = IntType.getZeroValue();
398 APSIntType IntType = BV.getAPSIntType(T);
399 Result = Result.Intersect(BV, F, ++IntType.getZeroValue(),
400 --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/clang/lib/Frontend/
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);
    [all...]
  /external/llvm/unittests/Transforms/Utils/
Cloning.cpp 256 DIType IntType = DBuilder.createBasicType("int", 32, 0,
259 dwarf::DW_TAG_auto_variable, Subprogram, "x", File, 5, IntType, true);
  /external/chromium_org/net/tools/testserver/
asn1.py 23 if type(obj) == types.IntType or type(obj) == types.LongType:
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
ObjectBrowser.py 116 IntType: AtomicObjectTreeItem,
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/
ObjectBrowser.py 116 IntType: AtomicObjectTreeItem,

Completed in 581 milliseconds

1 2