Searched refs:characteristic (Results 1 - 1 of 1) sorted by path

/freebsd-11-stable/contrib/ntp/libparse/
H A Dieee754io.c176 u_long characteristic; local
208 val = get_byte(bufp, offsets, &fieldindex); /* fetch sign byte & first part of characteristic */
211 characteristic = (val & 0x7F);
213 val = get_byte(bufp, offsets, &fieldindex); /* fetch rest of characteristic and start of mantissa */
218 characteristic <<= 1;
219 characteristic |= (val & 0x80) != 0; /* grab last characteristic bit */
229 characteristic <<= 4;
230 characteristic |= (val & 0xF0) >> 4; /* grab lower characteristic bit
419 u_long characteristic = 0; local
[all...]

Completed in 113 milliseconds