Home
last modified time | relevance | path

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

/netbsd-src/external/gpl3/gcc/dist/libphobos/libdruntime/core/internal/
H A Dconvert.d121 size_t off_bytes = 0; variable
127 for (; off_bytes < mantissaMax/8; ++off_bytes)
129 buff[off_bytes] = cast(ubyte)mantissa;
136 off_bytes--; // go back one, since mantissa only stored data in 56
138 for (; off_bytes < FloatTraits!T.MANTISSA/8; ++off_bytes)
140 buff[off_bytes] = cast(ubyte)mantissa2;
147 buff[off_bytes] = cast(ubyte)mantissa;
154 buff[off_bytes] |= (cur_exp << off_bits);
155 ++off_bytes;
156 buff[off_bytes] |= cur_exp >> 8 - off_bits;
[all …]