HomeSort by: relevance | last modified time | path
    Searched defs:get_byte (Results 1 - 6 of 6) sorted by relevancy

  /src/sys/arch/vax/vax/
opcodes.c 445 static u_int8_t get_byte(long);
449 get_byte(long ib) function
461 opc = get_byte(ib++);
465 opc += get_byte(ib++);
531 int c = get_byte(ib++);
db_disasm.c 115 static inline int get_byte(inst_buffer * ib);
182 ib->opc = get_byte(ib);
185 ib->opc += get_byte(ib);
232 ib->off = (signed char) get_byte(ib);
307 int c = get_byte(ib);
365 tmp = (signed char) get_byte(ib);
391 tmp = (signed char) get_byte(ib);
442 get_byte(inst_buffer *ib) function
  /src/external/bsd/ntp/dist/libparse/
ieee754io.c 48 static unsigned char get_byte (unsigned char *, offsets_t, int *);
126 get_byte( function
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
    [all...]
  /src/sys/lib/libsa/
cread.c 80 static int get_byte(struct sd *);
149 get_byte(struct sd *s) function
178 x = (unsigned long)get_byte(s);
179 x += ((unsigned long)get_byte(s)) << 8;
180 x += ((unsigned long)get_byte(s)) << 16;
181 c = get_byte(s);
198 c = get_byte(s);
220 method = get_byte(s);
221 flags = get_byte(s);
229 (void)get_byte(s)
    [all...]
  /src/sys/arch/atari/stand/tostools/libtos/
cread.c 86 static int get_byte(struct sd *);
119 get_byte(struct sd *s) function
144 unsigned long x = (unsigned long)get_byte(s);
147 x += ((unsigned long)get_byte(s)) << 8;
148 x += ((unsigned long)get_byte(s)) << 16;
149 c = get_byte(s);
166 c = get_byte(s);
188 method = get_byte(s);
189 flags = get_byte(s);
197 (void)get_byte(s)
    [all...]
  /src/external/gpl2/groff/dist/src/utils/hpftodit/
hpftodit.cpp 147 byte get_byte();
443 File::get_byte() function in class:File
489 if (f.get_byte() != 'I' || f.get_byte() != 'I')
568 *p++ = f.get_byte();
612 unsigned char c = f.get_byte();
744 unsigned char c = f.get_byte();
1193 printf("%c", f.get_byte());
1213 unsigned char c = f.get_byte();

Completed in 17 milliseconds