Home | History | Annotate | Download | only in rpc

Lines Matching defs:ieee

82 /* What IEEE single precision floating point looks like on a Vax */
102 struct ieee_single ieee;
105 { 0x0, 0xff, 0x0 }}, /* Max IEEE */
107 { 0x0, 0x0, 0x0 }} /* Min IEEE */
133 is = lim->ieee;
154 if ((is.exp == lim->ieee.exp) &&
155 (is.mantissa == lim->ieee.mantissa)) {
176 /* What IEEE double precision floating point looks like on a Vax */
200 struct ieee_double ieee;
203 { 0x0, 0x7ff, 0x0, 0x0 }}, /* Max IEEE */
205 { 0x0, 0x0, 0x0, 0x0 }} /* Min IEEE */
253 id = lim->ieee;
293 if ((id.mantissa2 == lim->ieee.mantissa2) &&
294 (id.mantissa1 == lim->ieee.mantissa1) &&
295 (id.exp == lim->ieee.exp)) {