Home
last modified time | relevance | path

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

/netbsd-src/external/gpl3/gcc/dist/libphobos/libdruntime/core/internal/
H A Dhash.d284 import core.internal.convert : floatSize, toUbyte;
285 return bytesHashWithExactSizeAndAlignment!T(toUbyte(data)[0 .. floatSize!T], 0);
354 import core.internal.convert : floatSize, toUbyte;
355 return bytesHashWithExactSizeAndAlignment!T(toUbyte(data)[0 .. floatSize!T], seed);
H A Dconvert.d641 package template floatSize(T) if (is(T:real) || is(T:ireal))
643 enum floatSize = FloatTraits!(T).DATASIZE; variable