Lines Matching defs:bufp
103 unsigned char *bufp,
114 snprintf(hex, sizeof(hex), "%02x", bufp[i]);
125 unsigned char *bufp,
132 val = *(bufp + offset[*fieldindex]);
135 printf("fetchieee754: getbyte(0x%08x, %d) = 0x%02x\n", (unsigned int)(bufp)+offset[*fieldindex], *fieldindex, val);
144 unsigned char *bufp,
150 *(bufp + offsets[*fieldindex]) = val;
167 unsigned char *bufp = *buffpp;
206 val = get_byte(bufp, offsets, &fieldindex); /* fetch sign byte & first part of characteristic */
211 val = get_byte(bufp, offsets, &fieldindex); /* fetch rest of characteristic and start of mantissa */
222 mantissa_low |= (u_long)get_byte(bufp, offsets, &fieldindex) << 8;
223 mantissa_low |= get_byte(bufp, offsets, &fieldindex);
231 mantissa_high |= (u_long)get_byte(bufp, offsets, &fieldindex) << 8;
232 mantissa_high |= get_byte(bufp, offsets, &fieldindex);
234 mantissa_low = (u_long)get_byte(bufp, offsets, &fieldindex) << 24;
235 mantissa_low |= (u_long)get_byte(bufp, offsets, &fieldindex) << 16;
236 mantissa_low |= (u_long)get_byte(bufp, offsets, &fieldindex) << 8;
237 mantissa_low |= get_byte(bufp, offsets, &fieldindex);