HomeSort by relevance Sort by last modified time
    Searched defs:get_byte (Results 1 - 6 of 6) sorted by null

  /external/qemu/elff/
elf_defs.h 102 get_byte(const void* ptr, uint32_t bt) { function
132 return get_byte(&tmp, 0) == 0xFF;
  /external/iproute2/include/
utils.h 82 #define get_byte get_u8 macro
  /external/chromium/third_party/zlib/
gzio.c 80 local int get_byte OF((gz_stream *s));
265 local int get_byte(s) function
327 method = get_byte(s);
328 flags = get_byte(s);
335 for (len = 0; len < 6; len++) (void)get_byte(s);
338 len = (uInt)get_byte(s);
339 len += ((uInt)get_byte(s))<<8;
341 while (len-- != 0 && get_byte(s) != EOF) ;
344 while ((c = get_byte(s)) != 0 && c != EOF) ;
347 while ((c = get_byte(s)) != 0 && c != EOF)
    [all...]
  /external/qemu/distrib/zlib-1.2.3/
gzio.c 78 local int get_byte OF((gz_stream *s));
261 local int get_byte(s) function
323 method = get_byte(s);
324 flags = get_byte(s);
331 for (len = 0; len < 6; len++) (void)get_byte(s);
334 len = (uInt)get_byte(s);
335 len += ((uInt)get_byte(s))<<8;
337 while (len-- != 0 && get_byte(s) != EOF) ;
340 while ((c = get_byte(s)) != 0 && c != EOF) ;
343 while ((c = get_byte(s)) != 0 && c != EOF)
    [all...]
  /external/zlib/
gzio.c 78 local int get_byte OF((gz_stream *s));
261 local int get_byte(s) function
323 method = get_byte(s);
324 flags = get_byte(s);
331 for (len = 0; len < 6; len++) (void)get_byte(s);
334 len = (uInt)get_byte(s);
335 len += ((uInt)get_byte(s))<<8;
337 while (len-- != 0 && get_byte(s) != EOF) ;
340 while ((c = get_byte(s)) != 0 && c != EOF) ;
343 while ((c = get_byte(s)) != 0 && c != EOF)
    [all...]
  /external/grub/stage2/
gunzip.c 483 #define NEEDBITS(n) do {while(k<(n)){b|=((ulg)get_byte())<<k;k+=8;}} while (0)
492 get_byte (void) function
    [all...]

Completed in 469 milliseconds