Home
last modified time | relevance | path

Searched refs:TypeMask (Results 1 – 21 of 21) sorted by relevance

/external/clang/test/SemaCXX/
Dgeneric-selection.cpp38 template <class... Args> struct TypeMask { struct
44 static_assert(TypeMask<int, long, short>::result == 7, "fail"); argument
45 static_assert(TypeMask<float, short>::result == 12, "fail");
46 static_assert(TypeMask<int, float, float>::result == 9, "fail");
/external/skia/include/core/
DSkMatrix.h51 enum TypeMask { enum
65 TypeMask getType() const { in getType()
70 return (TypeMask)(fTypeMask & 0xF); in getType()
580 static MapXYProc GetMapXYProc(TypeMask mask) { in GetMapXYProc()
592 static MapPtsProc GetMapPtsProc(TypeMask mask) { in GetMapPtsProc()
801 TypeMask getPerspectiveTypeMaskOnly() const { in getPerspectiveTypeMaskOnly()
806 return (TypeMask)(fTypeMask & 0xF); in getPerspectiveTypeMaskOnly()
DSkMatrix44.h197 enum TypeMask { enum
212 inline TypeMask getType() const { in getType()
217 return (TypeMask)fTypeMask; in getType()
/external/skia/src/core/
DSkMatrixPriv.h44 SkMatrix::TypeMask tm = mx.getType(); in MapPointsWithStride()
70 SkMatrix::TypeMask tm = mx.getType(); in SetMappedRectFan()
DSkLinearBitmapPipeline.h48 SkMatrix::TypeMask matrixMask,
DSkMatrix44.cpp377 const SkMatrix44::TypeMask a_mask = a.getType(); in setConcat()
378 const SkMatrix44::TypeMask b_mask = b.getType(); in setConcat()
891 TypeMask mask = this->getType(); in map2()
901 TypeMask mask = this->getType(); in map2()
DSkBitmapProcState.h44 SkMatrix::TypeMask fInvType;
DSkRRect.cpp339 const SkMatrix::TypeMask m = (SkMatrix::TypeMask) (SkMatrix::kAffine_Mask in matrix_only_scale_and_translate()
DSkBitmapProcShader.cpp178 SkMatrix::TypeMask fMatrixTypeMask;
DSkMatrix.cpp201 TypeMask mask = this->getType(); in isSimilarity()
229 TypeMask mask = this->getType(); in preservesRightAngles()
642 TypeMask aType = a.getType(); in setConcat()
643 TypeMask bType = b.getType(); in setConcat()
837 TypeMask mask = this->getType(); in invertNonIdentity()
1507 template <MinMaxOrBoth MIN_MAX_OR_BOTH> bool get_scale_factor(SkMatrix::TypeMask typeMask, in get_scale_factor()
DSkLinearBitmapPipeline.cpp422 SkMatrix::TypeMask matrixMask, in ClonePipelineForBlitting()
DSkPaint.cpp1323 const SkMatrix::TypeMask mask = deviceMatrix->getType(); in MakeRec()
/external/syslinux/gpxe/src/include/gpxe/efi/Pi/
DPiFirmwareVolume.h144 UINT32 TypeMask; member
/external/llvm/lib/Target/Hexagon/MCTargetDesc/
DHexagonBaseInfo.h110 TypeMask = 0x1f, enumerator
DHexagonMCInstrInfo.cpp372 return ((F >> HexagonII::TypePos) & HexagonII::TypeMask); in getType()
/external/swiftshader/third_party/LLVM/lib/Transforms/InstCombine/
DInstCombineCasts.cpp548 APInt TypeMask(APInt::getAllOnesValue(BitWidth)); in transformZExtICmp() local
549 ComputeMaskedBits(ICI->getOperand(0), TypeMask, KnownZero, KnownOne); in transformZExtICmp()
597 APInt TypeMask(APInt::getAllOnesValue(BitWidth)); in transformZExtICmp() local
598 ComputeMaskedBits(LHS, TypeMask, KnownZeroLHS, KnownOneLHS); in transformZExtICmp()
599 ComputeMaskedBits(RHS, TypeMask, KnownZeroRHS, KnownOneRHS); in transformZExtICmp()
918 APInt TypeMask(APInt::getAllOnesValue(BitWidth)); in transformSExtICmp() local
919 ComputeMaskedBits(Op0, TypeMask, KnownZero, KnownOne); in transformSExtICmp()
/external/skia/src/pipe/
DSkPipeReader.cpp111 static SkMatrix read_sparse_matrix(SkReadBuffer& reader, SkMatrix::TypeMask tm) { in read_sparse_matrix()
263 SkMatrix::TypeMask tm = (SkMatrix::TypeMask)(packedVerb & kTypeMask_ConcatMask); in concat_handler()
385 SkMatrix::TypeMask tm = (SkMatrix::TypeMask) in drawTextOnPath_handler()
DSkPipeCanvas.cpp263 SkMatrix::TypeMask tm = matrix.getType(); in write_sparse_matrix()
645 SkMatrix::TypeMask tm = matrix ? matrix->getType() : SkMatrix::kIdentity_Mask; in onDrawTextOnPath()
/external/llvm/lib/Target/Hexagon/
DRDFGraph.h233 TypeMask = 0x0003, enumerator
255 static uint16_t type(uint16_t T) { return T & TypeMask; } in type()
260 return (A & ~TypeMask) | T; in set_type()
DHexagonInstrInfo.cpp2831 const uint64_t V = ((F >> HexagonII::TypePos) & HexagonII::TypeMask); in isVecALU()
4176 return (F >> HexagonII::TypePos) & HexagonII::TypeMask; in getType()
/external/skia/src/utils/
DSkLua.cpp1245 SkMatrix::TypeMask mask = get_obj<SkMatrix>(L, 1)->getType(); in lmatrix_getType()