Home
last modified time | relevance | path

Searched refs:get_byte (Results 1 – 7 of 7) sorted by relevance

/external/qemu/elff/
Delf_file.h170 return (uint16_t)get_byte(val, 0) << 8 | get_byte(val, 1); in pull_val()
172 return (uint16_t)get_byte(val, 1) << 8 | get_byte(val, 0); in pull_val()
199 return (uint32_t)get_byte(val, 0) << 24 | in pull_val()
200 (uint32_t)get_byte(val, 1) << 16 | in pull_val()
201 (uint32_t)get_byte(val, 2) << 8 | in pull_val()
202 (uint32_t)get_byte(val, 3); in pull_val()
204 return (uint32_t)get_byte(val, 3) << 24 | in pull_val()
205 (uint32_t)get_byte(val, 2) << 16 | in pull_val()
206 (uint32_t)get_byte(val, 1) << 8 | in pull_val()
207 (uint32_t)get_byte(val, 0); in pull_val()
[all …]
Delf_defs.h102 get_byte(const void* ptr, uint32_t bt) { in get_byte() function
132 return get_byte(&tmp, 0) == 0xFF; in is_little_endian_cpu()
/external/qemu/distrib/zlib-1.2.3/
Dgzio.c78 local int get_byte OF((gz_stream *s));
261 local int get_byte(s) in get_byte() 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/
Dgzio.c78 local int get_byte OF((gz_stream *s));
261 local int get_byte(s) in get_byte() 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/chromium/third_party/zlib/
Dgzio.c80 local int get_byte OF((gz_stream *s));
265 local int get_byte(s) in get_byte() 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/grub/stage2/
Dgunzip.c483 #define NEEDBITS(n) do {while(k<(n)){b|=((ulg)get_byte())<<k;k+=8;}} while (0)
492 get_byte (void) in get_byte() function
1139 slide[w++] = get_byte (); in inflate_window()
/external/iproute2/include/
Dutils.h82 #define get_byte get_u8 macro