Home | History | Annotate | Download | only in libtos

Lines Matching defs:get_byte

86 static int		get_byte(struct sd *);
119 get_byte(struct sd *s)
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);
201 len = (unsigned int)get_byte(s);
202 len += ((unsigned int)get_byte(s)) << 8;
204 while (len-- != 0 && get_byte(s) != EOF) /*void*/;
208 while ((c = get_byte(s)) != 0 && c != EOF) /*void*/;
212 while ((c = get_byte(s)) != 0 && c != EOF) /*void*/;
216 (void)get_byte(s);