Home
last modified time | relevance | path

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

/development/tools/jdwpspy/
DCommon.h28 INLINE u1 get1(unsigned const char* pSrc) in get1() argument
30 return *pSrc; in get1()
36 INLINE u2 get2BE(unsigned char const* pSrc) in get2BE() argument
40 result = *pSrc++ << 8; in get2BE()
41 result |= *pSrc++; in get2BE()
49 INLINE u4 get4BE(unsigned char const* pSrc) in get4BE() argument
53 result = *pSrc++ << 24; in get4BE()
54 result |= *pSrc++ << 16; in get4BE()
55 result |= *pSrc++ << 8; in get4BE()
56 result |= *pSrc++; in get4BE()
[all …]
DNet.cpp522 static bool handlePacket(Peer* pDst, Peer* pSrc) in handlePacket() argument
524 const unsigned char* buf = pSrc->inputBuffer; in handlePacket()
532 assert((int) length <= pSrc->inputCount); in handlePacket()
534 dumpPacket(buf, pSrc->label, pDst->label); in handlePacket()
544 consumeBytes(pSrc, length); in handlePacket()
/development/tools/etc1tool/
Detc1tool.cpp374 const etc1_byte* pSrc = pSourceImage; in encode() local
378 int diff = *pSrc++ - *pDest; in encode()