Home | History | Annotate | Download | only in Support

Lines Matching refs:hex_value

2324     integerPart hex_value;
2332 hex_value = hexDigitValue(*p);
2333 if (hex_value == -1U)
2341 hex_value <<= bitPos % integerPartWidth;
2342 significand[bitPos / integerPartWidth] |= hex_value;
2344 lost_fraction = trailingHexadecimalFraction(p, end, hex_value);