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

1 2

  /frameworks/compile/mclinker/include/mcld/Support/
LEB128.h 26 template<typename IntType>
27 size_t encode(ByteType *&pBuf, IntType pValue);
29 template<typename IntType>
30 IntType decode(const ByteType *pBuf, size_t &pSize);
32 template<typename IntType>
33 IntType decode(const ByteType *&pBuf);
39 template<typename IntType>
40 size_t size(IntType pValue) {
99 template<typename IntType>
100 size_t encode(char *&pBuf, IntType pValue)
    [all...]
  /external/llvm/include/llvm/ADT/
PointerIntPair.h 39 template <typename PointerTy, unsigned IntBits, typename IntType=unsigned,
60 PointerIntPair(PointerTy PtrVal, IntType IntVal) {
74 IntType getInt() const {
75 return (IntType)((Value >> IntShift) & IntMask);
87 void setInt(IntType IntVal) {
104 void setPointerAndInt(PointerTy PtrVal, IntType IntVal) {
149 template<typename PointerTy, unsigned IntBits, typename IntType>
150 struct isPodLike<PointerIntPair<PointerTy, IntBits, IntType> > {
155 template<typename PointerTy, unsigned IntBits, typename IntType>
156 struct DenseMapInfo<PointerIntPair<PointerTy, IntBits, IntType> > {
    [all...]
  /external/clang/include/clang/Basic/
TargetInfo.h 113 enum IntType {
173 IntType SizeType, IntMaxType, UIntMaxType, PtrDiffType, IntPtrType, WCharType,
203 IntType getSizeType() const { return SizeType; }
204 IntType getIntMaxType() const { return IntMaxType; }
205 IntType getUIntMaxType() const { return UIntMaxType; }
206 IntType getPtrDiffType(unsigned AddrSpace) const {
209 IntType getIntPtrType() const { return IntPtrType; }
210 IntType getWCharType() const { return WCharType; }
211 IntType getWIntType() const { return WIntType; }
212 IntType getChar16Type() const { return Char16Type;
    [all...]
  /external/chromium_org/third_party/angle_dx11/src/compiler/preprocessor/
numeric_lex.h 36 template<typename IntType>
37 bool numeric_lex_int(const std::string& str, IntType* value)
  /external/chromium/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/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/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/chromium_org/third_party/WebKit/Source/wtf/
TCPackedCache.h 120 #define N_ONES_(IntType, N) \
121 ( (N) == 0 ? 0 : ((static_cast<IntType>(1) << ((N)-1))-1 + \
122 (static_cast<IntType>(1) << ((N)-1))) )
  /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/llvm/include/llvm/Support/
IntegersSubset.h 178 template<class IntType>
181 IntType Low;
182 IntType High;
187 typedef IntRange<IntType> self;
194 IntRange(const IntType &C) :
197 IntRange(const IntType &L, const IntType &H) : Low(L), High(H),
203 const IntType& getLow() const {
207 const IntType& getHigh() const {
239 bool isInRange(const IntType &IntVal) const
    [all...]
  /external/clang/lib/AST/
ItaniumCXXABI.cpp 39 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 102 const char *TargetInfo::getTypeName(IntType T) {
118 const char *TargetInfo::getTypeConstantSuffix(IntType T) {
134 unsigned TargetInfo::getTypeWidth(IntType T) const {
150 unsigned TargetInfo::getTypeAlign(IntType T) const {
166 bool TargetInfo::isTypeSigned(IntType T) {
  /external/chromium_org/third_party/harfbuzz-ng/src/
hb-open-type-private.hh 558 struct IntType
562 inline bool operator == (const IntType<Type,Size> &o) const { return v == o.v; }
563 inline bool operator != (const IntType<Type,Size> &o) const { return v != o.v; }
564 static inline int cmp (const IntType<Type,Size> *a, const IntType<Type,Size> *b) { return b->cmp (*a); }
565 inline int cmp (IntType<Type,Size> va) const { Type a = va; Type b = v; return a < b ? -1 : a == b ? 0 : +1; }
577 typedef IntType<uint16_t, 2> USHORT; /* 16-bit unsigned integer. */
578 typedef IntType<int16_t, 2> SHORT; /* 16-bit signed integer. */
579 typedef IntType<uint32_t, 4> ULONG; /* 32-bit unsigned integer. */
580 typedef IntType<int32_t, 4> LONG; /* 32-bit signed integer. *
    [all...]
  /external/harfbuzz_ng/src/
hb-open-type-private.hh 558 struct IntType
562 inline bool operator == (const IntType<Type,Size> &o) const { return v == o.v; }
563 inline bool operator != (const IntType<Type,Size> &o) const { return v != o.v; }
564 static inline int cmp (const IntType<Type,Size> *a, const IntType<Type,Size> *b) { return b->cmp (*a); }
565 inline int cmp (IntType<Type,Size> va) const { Type a = va; Type b = v; return a < b ? -1 : a == b ? 0 : +1; }
577 typedef IntType<uint16_t, 2> USHORT; /* 16-bit unsigned integer. */
578 typedef IntType<int16_t, 2> SHORT; /* 16-bit signed integer. */
579 typedef IntType<uint32_t, 4> ULONG; /* 32-bit unsigned integer. */
580 typedef IntType<int32_t, 4> LONG; /* 32-bit signed integer. *
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
RangeConstraintManager.cpp 353 APSIntType IntType = BV.getAPSIntType(Sym->getType());
354 llvm::APSInt Zero = IntType.getZeroValue();
396 APSIntType IntType = BV.getAPSIntType(T);
397 Result = Result.Intersect(BV, F, ++IntType.getZeroValue(),
398 --IntType.getZeroValue());
SimpleSValBuilder.cpp 352 APSIntType IntType = BasicVals.getAPSIntType(resultTy);
353 IntType.apply(LHSValue);
354 IntType.apply(RHSValue);
467 APSIntType IntType = BasicVals.getAPSIntType(resultTy);
468 const llvm::APSInt &first = IntType.convert(symIntExpr->getRHS());
469 const llvm::APSInt &second = IntType.convert(*RHSValue);
    [all...]
  /frameworks/compile/slang/
slang_rs_export_foreach.cpp 509 const clang::QualType &IntType = FD->getASTContext().IntTy;
510 if (FD->getResultType().getCanonicalType() == IntType) {
577 const clang::QualType &IntType = FD->getASTContext().IntTy;
584 if (QT != IntType) {
597 if (FD->getResultType().getCanonicalType() != IntType) {
  /external/chromium_org/content/browser/renderer_host/media/
web_contents_video_capture_device.cc 116 template<typename IntType>
117 IntType MakeEven(IntType x) {
118 return x & static_cast<IntType>(-2);
    [all...]
  /external/chromium_org/net/tools/testserver/
asn1.py 23 if type(obj) == types.IntType or type(obj) == types.LongType:
  /external/clang/lib/Frontend/
InitPreprocessor.cpp 180 static void DefineTypeSize(StringRef MacroName, TargetInfo::IntType Ty,
186 static void DefineType(const Twine &MacroName, TargetInfo::IntType Ty,
191 static void DefineTypeWidth(StringRef MacroName, TargetInfo::IntType Ty,
202 static void DefineExactWidthIntType(TargetInfo::IntType Ty,
    [all...]
  /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 1056 milliseconds

1 2