HomeSort by relevance Sort by last modified time
    Searched refs:get_byte (Results 1 - 8 of 8) 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 62 static inline int get_byte(asn1_context_t* ctx) { function
82 int num_octets = get_byte(ctx);
96 int byte = get_byte(ctx);
111 int type = get_byte(ctx);
142 if ((get_byte(ctx) & kMaskTag) != kTagSequence) {
153 if ((get_byte(ctx) & kMaskTag) != kTagSet) {
165 if (get_byte(ctx) == -1 || !decode_length(ctx, &length) || !skip_bytes(ctx, length)) {
172 if (get_byte(ctx) != kTagOid) {
183 if (get_byte(ctx) != kTagOctetString) {
  /bionic/libc/arch-mips/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/skia/src/codec/
SkCodecPriv.h 89 static inline uint8_t get_byte(uint8_t* buffer, uint32_t i) { function
SkCodec_libbmp.cpp 677 uint8_t blue = get_byte(cBuffer.get(), i*fBytesPerColor);
678 uint8_t green = get_byte(cBuffer.get(), i*fBytesPerColor + 1);
679 uint8_t red = get_byte(cBuffer.get(), i*fBytesPerColor + 2);
685 get_byte(cBuffer.get(), i*fBytesPerColor + 3);
    [all...]
  /external/iproute2/include/
utils.h 83 #define get_byte get_u8 macro

Completed in 279 milliseconds