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;
  /ndk/sources/host-tools/ndk-stack/elff/
elf_defs.h 102 get_byte(const void* ptr, uint32_t bt) { function
132 return get_byte(&tmp, 0) == 0xFF;
  /bionic/libc/arch-mips/string/
mips-string-ops.h 141 #define get_byte(__x,__idx) (((unsigned char *) (__x))[__idx]) macro
  /external/iproute2/include/
utils.h 83 #define get_byte get_u8 macro
  /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/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 3189 milliseconds