/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/chromium_org/tools/traceline/traceline/ |
dump_syscalls_idarub.rb | 24 raise "z" if ida.get_byte(curea - 5) != 0xb8
|
/bionic/libc/arch-mips/string/ |
mips_strlen.c | 61 if (get_byte (_a, 0) == 0) 69 if (get_byte (_a, 0) == 0) 71 if (get_byte (_a, 1) == 0)
|
mips-string-ops.h | 141 #define get_byte(__x,__idx) (((unsigned char *) (__x))[__idx]) 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/iproute2/include/ |
utils.h | 83 #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...] |