OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:get2LE
(Results
1 - 4
of
4
) sorted by null
/bootable/recovery/minzip/
Bits.h
72
INLINE unsigned short
get2LE
(unsigned char const* pSrc)
/system/core/libcutils/
fs_config.c
55
static inline uint16_t
get2LE
(const uint8_t* src)
229
uint16_t host_len =
get2LE
((const uint8_t *)&header.len);
254
*uid =
get2LE
((const uint8_t *)&(header.uid));
255
*gid =
get2LE
((const uint8_t *)&(header.gid));
256
*mode = (*mode & (~07777)) |
get2LE
((const uint8_t *)&(header.mode));
287
p->len =
get2LE
((const uint8_t *)&host_len);
288
p->mode =
get2LE
((const uint8_t *)&(pc->mode));
289
p->uid =
get2LE
((const uint8_t *)&(pc->uid));
290
p->gid =
get2LE
((const uint8_t *)&(pc->gid));
/art/dexdump/
dexdump.cc
91
static inline u2
get2LE
(unsigned char const* pSrc) {
640
const u2 instr =
get2LE
((const u1*) &insns[insnIdx]);
[
all
...]
/dalvik/dexdump/
DexDump.cpp
87
static inline u2
get2LE
(unsigned char const* pSrc)
876
u2 instr =
get2LE
((const u1*) &insns[insnIdx]);
[
all
...]
Completed in 533 milliseconds