Lines Matching refs:msgpack

13 namespace msgpack {
121 payload_info_t payload_info(msgpack::type ty);
125 template <typename F, msgpack::type ty>
143 case msgpack::t: in handle_msgpack_given_type()
144 case msgpack::f: { in handle_msgpack_given_type()
150 case msgpack::posfixint: in handle_msgpack_given_type()
151 case msgpack::uint8: in handle_msgpack_given_type()
152 case msgpack::uint16: in handle_msgpack_given_type()
153 case msgpack::uint32: in handle_msgpack_given_type()
154 case msgpack::uint64: { in handle_msgpack_given_type()
159 case msgpack::negfixint: in handle_msgpack_given_type()
160 case msgpack::int8: in handle_msgpack_given_type()
161 case msgpack::int16: in handle_msgpack_given_type()
162 case msgpack::int32: in handle_msgpack_given_type()
163 case msgpack::int64: { in handle_msgpack_given_type()
168 case msgpack::fixstr: in handle_msgpack_given_type()
169 case msgpack::str8: in handle_msgpack_given_type()
170 case msgpack::str16: in handle_msgpack_given_type()
171 case msgpack::str32: { in handle_msgpack_given_type()
180 case msgpack::fixarray: in handle_msgpack_given_type()
181 case msgpack::array16: in handle_msgpack_given_type()
182 case msgpack::array32: { in handle_msgpack_given_type()
186 case msgpack::fixmap: in handle_msgpack_given_type()
187 case msgpack::map16: in handle_msgpack_given_type()
188 case msgpack::map32: { in handle_msgpack_given_type()
192 case msgpack::nil: in handle_msgpack_given_type()
193 case msgpack::bin8: in handle_msgpack_given_type()
194 case msgpack::bin16: in handle_msgpack_given_type()
195 case msgpack::bin32: in handle_msgpack_given_type()
196 case msgpack::float32: in handle_msgpack_given_type()
197 case msgpack::float64: in handle_msgpack_given_type()
198 case msgpack::ext8: in handle_msgpack_given_type()
199 case msgpack::ext16: in handle_msgpack_given_type()
200 case msgpack::ext32: in handle_msgpack_given_type()
201 case msgpack::fixext1: in handle_msgpack_given_type()
202 case msgpack::fixext2: in handle_msgpack_given_type()
203 case msgpack::fixext4: in handle_msgpack_given_type()
204 case msgpack::fixext8: in handle_msgpack_given_type()
205 case msgpack::fixext16: in handle_msgpack_given_type()
206 case msgpack::never_used: { in handle_msgpack_given_type()
228 case msgpack::NAME: \ in handle_msgpack()
229 return handle_msgpack_given_type<F, msgpack::NAME>(bytes, f); in handle_msgpack()