Home
last modified time | relevance | path

Searched refs:GetLE16 (Results 1 – 2 of 2) sorted by relevance

/external/webp/src/utils/
Dutils.h50 static WEBP_INLINE int GetLE16(const uint8_t* const data) { in GetLE16() function
55 return GetLE16(data) | (data[2] << 16); in GetLE24()
59 return (uint32_t)GetLE16(data) | (GetLE16(data + 2) << 16); in GetLE32()
/external/webp/src/demux/
Ddemux.c156 const int val = GetLE16(data); in ReadLE16s()