Home
last modified time | relevance | path

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

/art/runtime/jdwp/
Djdwp_bits.h31 static inline uint32_t Get4BE(unsigned char const* pSrc) { in Get4BE() argument
32 return (pSrc[0] << 24) | (pSrc[1] << 16) | (pSrc[2] << 8) | pSrc[3]; in Get4BE()
/art/dexdump/
Ddexdump.cc101 static inline u2 get2LE(unsigned char const* pSrc) { in get2LE() argument
102 return pSrc[0] | (pSrc[1] << 8); in get2LE()