Lines Matching defs:fieldindex
127 int *fieldindex
132 val = *(bufp + offset[*fieldindex]);
135 printf("fetchieee754: getbyte(0x%08x, %d) = 0x%02x\n", (unsigned int)(bufp)+offset[*fieldindex], *fieldindex, val);
137 (*fieldindex)++;
146 int *fieldindex,
150 *(bufp + offsets[*fieldindex]) = val;
151 (*fieldindex)++;
180 int fieldindex = 0;
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);
275 *buffpp += fieldindex;
602 * renamed index to fieldindex to avoid index() name clash