Searched defs:get_le32 (Results 1 - 6 of 6) sorted by relevance

/external/lzma/xz-embedded/
H A Dxz_private.h43 # define get_le32(p) le32_to_cpup((const uint32_t *)(p)) macro
H A Dxz_config.h117 * little endian systems, #define get_le32(ptr) (*(const uint32_t *)(ptr))
120 #ifndef get_le32
121 # define get_le32 get_unaligned_le32 macro
/external/chromium_org/third_party/libvpx/source/libvpx/build/make/
H A Dobj_int_extract.c629 #define get_le32(x) ((*(x)) | (*(x+1)) << 8 |(*(x+2)) << 16 | (*(x+3)) << 24 ) macro
643 symtab_ptr = get_le32(buf + 8);
644 symtab_sz = get_le32(buf + 12);
683 (get_le32(ptr + 36) & 0x1000) == 0) {
684 sectionrawdata_ptr = get_le32(ptr + 20);
717 // if(section > 0 && ptr[16] == 3 && get_le32(ptr+8)) {
719 if (get_le32(ptr)) {
732 // buf + strtab_ptr + get_le32(ptr+4));
733 if ((buf + strtab_ptr + get_le32(ptr + 4))[0] == '_')
735 buf + strtab_ptr + get_le32(pt
[all...]
/external/libvpx/libvpx/build/make/
H A Dobj_int_extract.c629 #define get_le32(x) ((*(x)) | (*(x+1)) << 8 |(*(x+2)) << 16 | (*(x+3)) << 24 ) macro
643 symtab_ptr = get_le32(buf + 8);
644 symtab_sz = get_le32(buf + 12);
683 (get_le32(ptr + 36) & 0x1000) == 0) {
684 sectionrawdata_ptr = get_le32(ptr + 20);
717 // if(section > 0 && ptr[16] == 3 && get_le32(ptr+8)) {
719 if (get_le32(ptr)) {
732 // buf + strtab_ptr + get_le32(ptr+4));
733 if ((buf + strtab_ptr + get_le32(ptr + 4))[0] == '_')
735 buf + strtab_ptr + get_le32(pt
[all...]
/external/chromium_org/third_party/libwebp/dec/
H A Dwebp.c50 static WEBP_INLINE uint32_t get_le32(const uint8_t* const data) { function
73 const uint32_t size = get_le32(*data + TAG_SIZE);
119 const uint32_t chunk_size = get_le32(*data + TAG_SIZE);
128 flags = get_le32(*data + 8);
184 chunk_size = get_le32(buf + TAG_SIZE);
250 const uint32_t size = get_le32(data + TAG_SIZE);
/external/webp/src/dec/
H A Dwebp.c50 static WEBP_INLINE uint32_t get_le32(const uint8_t* const data) { function
73 const uint32_t size = get_le32(*data + TAG_SIZE);
119 const uint32_t chunk_size = get_le32(*data + TAG_SIZE);
128 flags = get_le32(*data + 8);
184 chunk_size = get_le32(buf + TAG_SIZE);
250 const uint32_t size = get_le32(data + TAG_SIZE);

Completed in 199 milliseconds