Lines Matching refs:msgpack

6 namespace msgpack {
114 payload_info_t payload_info(msgpack::type ty);
118 template <typename F, msgpack::type ty>
136 case msgpack::t: in handle_msgpack_given_type()
137 case msgpack::f: { in handle_msgpack_given_type()
143 case msgpack::posfixint: in handle_msgpack_given_type()
144 case msgpack::uint8: in handle_msgpack_given_type()
145 case msgpack::uint16: in handle_msgpack_given_type()
146 case msgpack::uint32: in handle_msgpack_given_type()
147 case msgpack::uint64: { in handle_msgpack_given_type()
152 case msgpack::negfixint: in handle_msgpack_given_type()
153 case msgpack::int8: in handle_msgpack_given_type()
154 case msgpack::int16: in handle_msgpack_given_type()
155 case msgpack::int32: in handle_msgpack_given_type()
156 case msgpack::int64: { in handle_msgpack_given_type()
161 case msgpack::fixstr: in handle_msgpack_given_type()
162 case msgpack::str8: in handle_msgpack_given_type()
163 case msgpack::str16: in handle_msgpack_given_type()
164 case msgpack::str32: { in handle_msgpack_given_type()
173 case msgpack::fixarray: in handle_msgpack_given_type()
174 case msgpack::array16: in handle_msgpack_given_type()
175 case msgpack::array32: { in handle_msgpack_given_type()
179 case msgpack::fixmap: in handle_msgpack_given_type()
180 case msgpack::map16: in handle_msgpack_given_type()
181 case msgpack::map32: { in handle_msgpack_given_type()
185 case msgpack::nil: in handle_msgpack_given_type()
186 case msgpack::bin8: in handle_msgpack_given_type()
187 case msgpack::bin16: in handle_msgpack_given_type()
188 case msgpack::bin32: in handle_msgpack_given_type()
189 case msgpack::float32: in handle_msgpack_given_type()
190 case msgpack::float64: in handle_msgpack_given_type()
191 case msgpack::ext8: in handle_msgpack_given_type()
192 case msgpack::ext16: in handle_msgpack_given_type()
193 case msgpack::ext32: in handle_msgpack_given_type()
194 case msgpack::fixext1: in handle_msgpack_given_type()
195 case msgpack::fixext2: in handle_msgpack_given_type()
196 case msgpack::fixext4: in handle_msgpack_given_type()
197 case msgpack::fixext8: in handle_msgpack_given_type()
198 case msgpack::fixext16: in handle_msgpack_given_type()
199 case msgpack::never_used: { in handle_msgpack_given_type()
221 case msgpack::NAME: \ in handle_msgpack()
222 return handle_msgpack_given_type<F, msgpack::NAME>(bytes, f); in handle_msgpack()