OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:get_le32
(Results
1 - 6
of
6
) sorted by null
/external/lzma/xz-embedded/
xz_config.h
117
* little endian systems, #define
get_le32
(ptr) (*(const uint32_t *)(ptr))
120
#ifndef
get_le32
121
# define
get_le32
get_unaligned_le32
macro
xz_private.h
43
# define
get_le32
(p) le32_to_cpup((const uint32_t *)(p))
macro
xz_dec_stream.c
413
!=
get_le32
(s->temp.buf + HEADER_MAGIC_SIZE + 2))
448
if (xz_crc32(s->temp.buf + 4, 6, 0) !=
get_le32
(s->temp.buf))
456
if ((s->index.size >> 2) !=
get_le32
(s->temp.buf + 4))
480
!=
get_le32
(s->temp.buf + s->temp.size))
/external/chromium_org/third_party/libvpx/source/libvpx/build/make/
obj_int_extract.c
629
#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
(ptr + 4) + 1)
[
all
...]
/external/libvpx/libvpx/build/make/
obj_int_extract.c
629
#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
(ptr + 4) + 1)
[
all
...]
/external/chromium_org/third_party/libwebp/dec/
webp.c
50
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 287 milliseconds