Home | History | Annotate | Download | only in Support

Lines Matching refs:pValue

23 size_t encode(ByteType*& pBuf, IntType pValue);
36 size_t size(IntType pValue) {
38 while (pValue > 0x80) {
39 pValue >>= 7;
52 size_t encode<uint64_t>(ByteType*& pBuf, uint64_t pValue);
55 size_t encode<uint32_t>(ByteType*& pBuf, uint32_t pValue);
61 size_t encode<int64_t>(ByteType*& pBuf, int64_t pValue);
64 size_t encode<int32_t>(ByteType*& pBuf, int32_t pValue);
96 size_t encode(char*& pBuf, IntType pValue) {
97 return encode<IntType>(reinterpret_cast<ByteType*&>(pBuf), pValue);