OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:GetLE16
(Results
1 - 7
of
7
) sorted by null
/external/opencv3/3rdparty/libwebp/utils/
utils.h
47
static WEBP_INLINE int
GetLE16
(const uint8_t* const data) {
52
return
GetLE16
(data) | (data[2] << 16);
56
return (uint32_t)
GetLE16
(data) | (
GetLE16
(data + 2) << 16);
/external/webp/src/utils/
utils.h
80
static WEBP_INLINE int
GetLE16
(const uint8_t* const data) {
85
return
GetLE16
(data) | (data[2] << 16);
89
return
GetLE16
(data) | ((uint32_t)
GetLE16
(data + 2) << 16);
/external/webrtc/webrtc/base/
byteorder_unittest.cc
75
EXPECT_EQ(0x2301u,
GetLE16
(buf));
byteorder.h
106
inline uint16_t
GetLE16
(const void* memory) {
/external/opencv3/3rdparty/libwebp/mux/
muxread.c
436
params->loop_count =
GetLE16
(anim.bytes + 4);
/external/opencv3/3rdparty/libwebp/demux/
demux.c
157
const int val =
GetLE16
(data);
/external/webp/src/demux/
demux.c
155
const int val =
GetLE16
(data);
Completed in 82 milliseconds