Searched refs:get_byte (Results 1 - 4 of 4) sorted by relevance

/openbsd-current/sys/lib/libsa/
H A Dcread.c96 get_byte(struct sd *s) function
118 unsigned long x = (unsigned long)get_byte(s);
121 x += ((unsigned long)get_byte(s))<<8;
122 x += ((unsigned long)get_byte(s))<<16;
123 c = get_byte(s);
140 c = get_byte(s);
157 method = get_byte(s);
158 flags = get_byte(s);
166 (void)get_byte(s);
169 len = (unsigned int)get_byte(
[all...]
/openbsd-current/usr.bin/compress/
H A Dzipopen.c69 get_byte(struct zip_state *s) function
92 x = ((uint16_t)(get_byte(s) & 0xff));
93 x |= ((uint16_t)(get_byte(s) & 0xff))<<8;
102 x = ((uint32_t)(get_byte(s) & 0xff));
103 x |= ((uint32_t)(get_byte(s) & 0xff))<<8;
104 x |= ((uint32_t)(get_byte(s) & 0xff))<<16;
105 x |= ((uint32_t)(get_byte(s) & 0xff))<<24;
114 x = ((uint64_t)(get_byte(s) & 0xff));
115 x |= ((uint64_t)(get_byte(s) & 0xff))<<8;
116 x |= ((uint64_t)(get_byte(
[all...]
H A Dgzopen.c101 static int get_byte(gz_stream *);
149 get_byte(gz_stream *s) function
172 x = ((u_int32_t)(get_byte(s) & 0xff));
173 x |= ((u_int32_t)(get_byte(s) & 0xff))<<8;
174 x |= ((u_int32_t)(get_byte(s) & 0xff))<<16;
175 x |= ((u_int32_t)(get_byte(s) & 0xff))<<24;
191 c = get_byte(s);
199 method = get_byte(s);
200 flags = get_byte(s);
210 (void)get_byte(
[all...]
/openbsd-current/gnu/usr.bin/binutils/gdb/
H A Dremote-rdp.c184 get_byte (void) function
212 c = get_byte ();
424 val = get_byte ();
434 *pstat = get_byte ();
443 switch (get_byte ())
475 pc[i] = get_byte ();
495 *pi = get_byte ();
947 int type = get_byte ();
953 args[count].n = get_byte ();
964 len = get_byte ();
[all...]

Completed in 139 milliseconds