Searched refs:fromType (Results 1 – 12 of 12) sorted by relevance
/netbsd-src/external/gpl3/gcc/dist/libphobos/libdruntime/core/internal/array/ |
H A D | casting.d | 26 private void onArrayCastError()(string fromType, size_t fromSize, size_t fromLength, string toType,… in onArrayCastError() 50 add(fromType); in onArrayCastError()
|
/netbsd-src/external/gpl3/gcc.old/dist/gcc/d/dmd/ |
H A D | intrange.h | 112 static IntRange fromType(Type *type); 115 static IntRange fromType(Type *type, bool isUnsigned);
|
H A D | intrange.c | 274 IntRange IntRange::fromType(Type *type) in fromType() function 276 return fromType(type, type->isunsigned()); in fromType() 279 IntRange IntRange::fromType(Type *type, bool isUnsigned) in fromType() function
|
H A D | dinterpret.c | 1938 Type *fromType = NULL; in visit() local 1941 fromType = ((TypeArray *)(e->var->type))->next; in visit() 1945 (fromType && isSafePointerCast(fromType, pointee)))) in visit()
|
H A D | dcast.c | 218 IntRange target = IntRange::fromType(t); in implicitConvTo() 3405 range = IntRange::fromType(e->type); in getIntRange()
|
H A D | statementsem.c | 663 if (!IntRange::fromType(p->type).contains(dimrange)) in makeTupleForeachBody() 1082 if (!IntRange::fromType(var->type).contains(dimrange)) in visit()
|
/netbsd-src/external/gpl3/gcc/dist/gcc/d/dmd/ |
H A D | intrange.d | 318 static IntRange fromType(Type type) in fromType() function 320 return fromType(type, type.isunsigned()); in fromType() 323 static IntRange fromType(Type type, bool isUnsigned) in fromType() function
|
H A D | dinterpret.d | 1882 Type fromType = null; in visit() local 1885 fromType = (cast(TypeArray)e.var.type).next; in visit() 1888 (fromType && isSafePointerCast(fromType, pointee)) || in visit()
|
H A D | dcast.d | 267 IntRange target = IntRange.fromType(t); in implicitConvTo() 3717 return IntRange.fromType(e.type); in getIntRange()
|
H A D | statementsem.d | 1013 if (!IntRange.fromType(fs.key.type).contains(dimrange)) in package() 4350 if (!IntRange.fromType(p.type).contains(dimrange)) in makeTupleForeach()
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/NVPTX/ |
H A D | NVPTXISelDAGToDAG.cpp | 889 unsigned int fromType; in tryLoad() local 900 fromType = NVPTX::PTXLdStInstCode::Signed; in tryLoad() 903 fromType = ScalarVT.SimpleTy == MVT::f16 ? NVPTX::PTXLdStInstCode::Untyped in tryLoad() 906 fromType = NVPTX::PTXLdStInstCode::Unsigned; in tryLoad() 924 getI32Imm(vecType, dl), getI32Imm(fromType, dl), in tryLoad() 937 getI32Imm(vecType, dl), getI32Imm(fromType, dl), in tryLoad() 956 getI32Imm(vecType, dl), getI32Imm(fromType, dl), in tryLoad() 975 getI32Imm(vecType, dl), getI32Imm(fromType, dl), in tryLoad()
|
/netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/ |
H A D | SemaInit.cpp | 8915 QualType fromType = op->getType(); in emitBadConversionNotes() local 8916 auto *fromDecl = fromType.getTypePtr()->getPointeeCXXRecordDecl(); in emitBadConversionNotes()
|