OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:get_le32
(Results
1 - 2
of
2
) sorted by null
/external/libvpx/libvpx/build/make/
obj_int_extract.c
671
#define
get_le32
(x) ((*(x)) | (*(x+1)) << 8 |(*(x+2)) << 16 | (*(x+3)) << 24 )
macro
686
symtab_ptr =
get_le32
(buf + 8);
687
symtab_sz =
get_le32
(buf + 12);
728
if (!strcmp(sectionname, ".rdata")) sectionrawdata_ptr =
get_le32
(ptr + 20);
762
//if(section > 0 && ptr[16] == 3 &&
get_le32
(ptr+8)) {
764
if (
get_le32
(ptr))
780
// buf + strtab_ptr +
get_le32
(ptr+4));
781
if ((buf + strtab_ptr +
get_le32
(ptr + 4))[0] == '_')
783
buf + strtab_ptr +
get_le32
(ptr + 4) + 1);
785
printf("%-40s EQU ", buf + strtab_ptr +
get_le32
(ptr + 4))
[
all
...]
/external/webp/src/dec/
webp.c
52
static WEBP_INLINE uint32_t
get_le32
(const uint8_t* const data) {
function
74
const uint32_t size =
get_le32
(*data + TAG_SIZE);
117
const uint32_t chunk_size =
get_le32
(*data + TAG_SIZE);
126
flags =
get_le32
(*data + 8);
182
chunk_size =
get_le32
(buf + TAG_SIZE);
243
const uint32_t size =
get_le32
(data + TAG_SIZE);
Completed in 285 milliseconds