Home
last modified time | relevance | path

Searched defs:IntType (Results 1 – 14 of 14) sorted by relevance

/third_party/skia/third_party/externals/abseil-cpp/absl/random/internal/
Duniform_helper.h107 uniform_lower_bound(Tag, IntType a, IntType) { in uniform_lower_bound() argument
138 uniform_upper_bound(Tag, IntType, IntType b) { in uniform_upper_bound() argument
160 uniform_upper_bound(Tag, IntType, IntType b) { in uniform_upper_bound() argument
/third_party/harfbuzz/src/
Dhb-open-type.hh58 struct IntType struct
60 typedef Type type;
63 explicit constexpr IntType (Type V) : v {V} {} in IntType() argument
64 IntType& operator = (Type i) { v = i; return *this; } in operator =()
67 operator hb_conditional<hb_is_signed (Type), signed, unsigned> () const { return v; } in operator hb_conditional<hb_is_signed(Type),signed,unsigned>()
69 bool operator == (const IntType &o) const { return (Type) v == (Type) o.v; } in operator ==()
70 bool operator != (const IntType &o) const { return !(*this == o); } in operator !=()
72 IntType& operator += (unsigned count) { *this = *this + count; return *this; } in operator +=()
73 IntType& operator -= (unsigned count) { *this = *this - count; return *this; } in operator -=()
74 IntType& operator ++ () { *this += 1; return *this; } in operator ++()
[all …]
/third_party/skia/third_party/externals/harfbuzz/src/
Dhb-open-type.hh58 struct IntType struct
60 typedef Type type;
63 explicit constexpr IntType (Type V) : v {V} {} in IntType() argument
64 IntType& operator = (Type i) { v = i; return *this; } in operator =()
67 …pename std::conditional<std::is_signed<Type>::value, signed, unsigned>::type () const { return v; } in operator typename std::conditional<std::is_signed<Type>::value,signed,unsigned>::type()
69 bool operator == (const IntType &o) const { return (Type) v == (Type) o.v; } in operator ==()
70 bool operator != (const IntType &o) const { return !(*this == o); } in operator !=()
72 IntType& operator += (unsigned count) { *this = *this + count; return *this; } in operator +=()
73 IntType& operator -= (unsigned count) { *this = *this - count; return *this; } in operator -=()
74 IntType& operator ++ () { *this += 1; return *this; } in operator ++()
[all …]
/third_party/flutter/skia/third_party/externals/harfbuzz/src/
Dhb-open-type.hh57 struct IntType struct
59 typedef Type type;
60 typedef hb_conditional<hb_is_signed (Type), signed, unsigned> wide_type;
62 IntType<Type, Size>& operator = (wide_type i) { v = i; return *this; } in operator =()
63 operator wide_type () const { return v; } in operator wide_type()
64 bool operator == (const IntType<Type,Size> &o) const { return (Type) v == (Type) o.v; } in operator ==()
65 bool operator != (const IntType<Type,Size> &o) const { return !(*this == o); } in operator !=()
66 HB_INTERNAL static int cmp (const IntType<Type,Size> *a, const IntType<Type,Size> *b) in cmp()
69 int cmp (Type2 a) const in cmp()
77 bool sanitize (hb_sanitize_context_t *c) const in sanitize()
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/unittest/AssemblerX8632/
DX87.cpp210 #define TestFild(OperandType, Size, MemorySize, FpType, IntType) \ in TEST_F() argument
237 #define TestFistp(OperandType, Size, MemorySize, FpType, IntType) \ in TEST_F() argument
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/IR/
DMDBuilder.cpp315 auto *IntType = Type::getInt64Ty(Context); in createMisExpect() local
/third_party/skia/third_party/externals/abseil-cpp/absl/strings/
Dnumbers_test.cc744 using IntType = absl::uint128; in TEST() typedef
784 using IntType = absl::int128; in TEST() typedef
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/unittest/AssemblerX8664/
DXmmArith.cpp1485 #define TestImplSXmmReg(Dst, GPR, Inst, Size, IntType) \ in TEST_F() argument
1544 #define TestImplSXmmAddr(Dst, Inst, Size, IntType) \ in TEST_F() argument
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/
DConstantFolding.cpp505 auto *IntType = dyn_cast<IntegerType>(LoadTy); in FoldReinterpretLoadFromConstPtr() local
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/InstCombine/
DInstCombineVectorOps.cpp540 IntegerType *IntType = Type::getInt32Ty(InsElt->getContext()); in replaceExtractElements() local
DInstCombineCalls.cpp169 IntegerType* IntType = IntegerType::get(MI->getContext(), Size<<3); in SimplifyAnyMemTransfer() local
/third_party/python/Modules/
D_tkinter.c305 const Tcl_ObjType *IntType; member
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/
DSimplifyLibCalls.cpp1011 IntegerType *IntType = IntegerType::get(CI->getContext(), Len * 8); in optimizeMemCmpConstantSize() local
/third_party/skia/third_party/externals/swiftshader/src/Reactor/
DReactor.cpp4754 using IntType = typename CastToIntType<T>::type; in DoRcpSqrt() typedef