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

  /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;
  /bootable/recovery/
asn1_decoder.cpp 61 static inline int get_byte(asn1_context_t* ctx) { function
81 int num_octets = get_byte(ctx);
95 int byte = get_byte(ctx);
110 int type = get_byte(ctx);
141 if ((get_byte(ctx) & kMaskTag) != kTagSequence) {
152 if ((get_byte(ctx) & kMaskTag) != kTagSet) {
164 if (get_byte(ctx) == -1 || !decode_length(ctx, &length) || !skip_bytes(ctx, length)) {
171 if (get_byte(ctx) != kTagOid) {
182 if (get_byte(ctx) != kTagOctetString) {
  /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
  /bionic/libc/arch-mips64/string/
mips_strlen.c 62 if (get_byte (_a, 0) == 0)
70 if (get_byte (_a, 0) == 0)
72 if (get_byte (_a, 1) == 0)
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/chromium_org/third_party/libjpeg_turbo/
jdarith.c 65 get_byte (j_decompress_ptr cinfo) function
120 data = get_byte(cinfo); /* read next input byte */
122 do data = get_byte(cinfo);

Completed in 125 milliseconds