Lines Matching defs:value_nv
143 NV value_nv = 0;
182 value_nv = (NV) value;
184 value_nv *= 2.0;
189 * did we overflow and in the end just multiply value_nv by the
191 value_nv += (NV)(bit - '0');
207 if ( ( overflowed && value_nv > 4294967295.0)
223 *result = value_nv;
257 NV value_nv = 0;
297 value_nv = (NV) value;
299 value_nv *= 16.0;
304 * did we overflow and in the end just multiply value_nv by the
306 value_nv += (NV)((hexdigit - PL_hexdigit) & 15);
322 if ( ( overflowed && value_nv > 4294967295.0)
338 *result = value_nv;
354 NV value_nv = 0;
379 value_nv = (NV) value;
381 value_nv *= 8.0;
386 * did we overflow and in the end just multiply value_nv by the
388 value_nv += (NV)digit;
409 if ( ( overflowed && value_nv > 4294967295.0)
425 *result = value_nv;