Home
last modified time | relevance | path

Searched refs:fromSize (Results 1 – 2 of 2) sorted by relevance

/netbsd-src/external/gpl3/gcc/dist/libphobos/libdruntime/core/internal/array/
H A Dcasting.d26 private void onArrayCastError()(string fromType, size_t fromSize, size_t fromLength, string toType,… in onArrayCastError()
57 s = unsignedToTempString(fromSize); in onArrayCastError()
83 const fromSize = from.length * TFrom.sizeof; in __ArrayCast() local
84 const toLength = fromSize / TTo.sizeof; in __ArrayCast()
86 if ((fromSize % TTo.sizeof) != 0) in __ArrayCast()
88 onArrayCastError(TFrom.stringof, fromSize, from.length, TTo.stringof, TTo.sizeof); in __ArrayCast()
/netbsd-src/external/gpl3/gcc/dist/gcc/d/dmd/
H A Dexpressionsem.d7623 const uint fromSize = cast(uint)tFrom.size(); in visit() local
7625 if (fromSize == SIZE_INVALID || toSize == SIZE_INVALID) in visit()
7629 if (fromSize != toSize) in visit()
7636 if (toSize == 0 || (fromSize % toSize) != 0) in visit()