Home | History | Annotate | Download | only in Support

Lines Matching refs:IntType

26 template<typename IntType>
27 size_t encode(ByteType *&pBuf, IntType pValue);
29 template<typename IntType>
30 IntType decode(const ByteType *pBuf, size_t &pSize);
32 template<typename IntType>
33 IntType decode(const ByteType *&pBuf);
39 template<typename IntType>
40 size_t size(IntType pValue) {
99 template<typename IntType>
100 size_t encode(char *&pBuf, IntType pValue) {
101 return encode<IntType>(reinterpret_cast<ByteType*&>(pBuf), pValue);
104 template<typename IntType>
105 IntType decode(const char *pBuf, size_t &pSize) {
106 return decode<IntType>(reinterpret_cast<const ByteType*>(pBuf), pSize);
109 template<typename IntType>
110 IntType decode(const char *&pBuf) {
111 return decode<IntType>(reinterpret_cast<const ByteType*&>(pBuf));