Home | History | Annotate | Download | only in Support

Lines Matching refs:IntType

23 template<typename IntType>
24 size_t encode(ByteType *&pBuf, IntType pValue);
26 template<typename IntType>
27 IntType decode(const ByteType *pBuf, size_t &pSize);
29 template<typename IntType>
30 IntType decode(const ByteType *&pBuf);
36 template<typename IntType>
37 size_t size(IntType pValue) {
96 template<typename IntType>
97 size_t encode(char *&pBuf, IntType pValue) {
98 return encode<IntType>(reinterpret_cast<ByteType*&>(pBuf), pValue);
101 template<typename IntType>
102 IntType decode(const char *pBuf, size_t &pSize) {
103 return decode<IntType>(reinterpret_cast<const ByteType*>(pBuf), pSize);
106 template<typename IntType>
107 IntType decode(const char *&pBuf) {
108 return decode<IntType>(reinterpret_cast<const ByteType*&>(pBuf));