OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:get_le32
(Results
1 - 3
of
3
) sorted by null
/external/libvpx/build/make/
obj_int_extract.c
823
#define
get_le32
(x) ((*(x)) | (*(x+1)) << 8 |(*(x+2)) << 16 | (*(x+3)) << 24 )
macro
838
symtab_ptr =
get_le32
(buf + 8);
839
symtab_sz =
get_le32
(buf + 12);
880
if (!strcmp(sectionname, ".data")) sectionrawdata_ptr =
get_le32
(ptr + 20);
914
//if(section > 0 && ptr[16] == 3 &&
get_le32
(ptr+8)) {
916
if (
get_le32
(ptr))
932
// buf + strtab_ptr +
get_le32
(ptr+4));
933
if ((buf + strtab_ptr +
get_le32
(ptr + 4))[0] == '_')
935
buf + strtab_ptr +
get_le32
(ptr + 4) + 1);
937
printf("%-40s EQU ", buf + strtab_ptr +
get_le32
(ptr + 4))
[
all
...]
/external/webp/src/dec/
webp.c
33
static inline uint32_t
get_le32
(const uint8_t* const data) {
function
45
const uint32_t riff_size =
get_le32
(*data_ptr + 4);
52
chunk_size =
get_le32
(*data_ptr + 16);
vp8.c
247
static inline uint32_t
get_le32
(const uint8_t* const data) {
function
288
riff_size =
get_le32
(buf + 4);
297
chunk_size =
get_le32
(buf + 16);
Completed in 2734 milliseconds