Home | History | Annotate | Download | only in libparse

Lines Matching defs:get_byte

48 static unsigned char get_byte (unsigned char *, offsets_t, int *);
126 get_byte(
208 val = get_byte(bufp, offsets, &fieldindex); /* fetch sign byte & first part of characteristic */
213 val = get_byte(bufp, offsets, &fieldindex); /* fetch rest of characteristic and start of mantissa */
224 mantissa_low |= (u_long)get_byte(bufp, offsets, &fieldindex) << 8;
225 mantissa_low |= get_byte(bufp, offsets, &fieldindex);
233 mantissa_high |= (u_long)get_byte(bufp, offsets, &fieldindex) << 8;
234 mantissa_high |= get_byte(bufp, offsets, &fieldindex);
236 mantissa_low = (u_long)get_byte(bufp, offsets, &fieldindex) << 24;
237 mantissa_low |= (u_long)get_byte(bufp, offsets, &fieldindex) << 16;
238 mantissa_low |= (u_long)get_byte(bufp, offsets, &fieldindex) << 8;
239 mantissa_low |= get_byte(bufp, offsets, &fieldindex);