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

  /external/qemu/elff/
elf_file.h 170 return (uint16_t)get_byte(val, 0) << 8 | get_byte(val, 1);
172 return (uint16_t)get_byte(val, 1) << 8 | get_byte(val, 0);
199 return (uint32_t)get_byte(val, 0) << 24 |
200 (uint32_t)get_byte(val, 1) << 16 |
201 (uint32_t)get_byte(val, 2) << 8 |
202 (uint32_t)get_byte(val, 3);
204 return (uint32_t)get_byte(val, 3) << 24 |
205 (uint32_t)get_byte(val, 2) << 16 |
    [all...]
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_file.h 170 return (uint16_t)get_byte(val, 0) << 8 | get_byte(val, 1);
172 return (uint16_t)get_byte(val, 1) << 8 | get_byte(val, 0);
199 return (uint32_t)get_byte(val, 0) << 24 |
200 (uint32_t)get_byte(val, 1) << 16 |
201 (uint32_t)get_byte(val, 2) << 8 |
202 (uint32_t)get_byte(val, 3);
204 return (uint32_t)get_byte(val, 3) << 24 |
205 (uint32_t)get_byte(val, 2) << 16
    [all...]
elf_defs.h 102 get_byte(const void* ptr, uint32_t bt) { function
132 return get_byte(&tmp, 0) == 0xFF;
  /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/iproute2/include/
utils.h 82 #define get_byte get_u8 macro
  /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 145 milliseconds