Lines Matching refs:binary
43 store ///< store tags as binary type
60 // binary reader //
80 @brief create a binary reader
97 @param[in] format the binary format to parse
238 @param[in,out] result A reference to the binary variable where the read
251 exception_message(input_format_t::bson, concat("byte array length cannot be negative, is ", std::to_string(len)), "binary"), nullptr));
254 // All BSON binary values have a subtype
300 case 0x05: // binary
304 return get_number<std::int32_t, true>(input_format_t::bson, len) && get_bson_binary(len, value) && sax->binary(value);
343 The same binary layout is used for objects and arrays, hence it must be
564 return get_cbor_binary(b) && sax->binary(b);
742 // ignore binary subtype
778 // use binary subtype and store in binary container
813 return get_cbor_binary(b) && sax->binary(b);
1009 if (JSON_HEDLEY_UNLIKELY(!unexpect_eof(input_format_t::cbor, "binary")))
1091 exception_message(input_format_t::cbor, concat("expected length specification (0x40-0x5B) or indefinite binary array type (0x5F); last byte: 0x", last_token), "binary"), nullptr));
1436 return get_msgpack_binary(b) && sax->binary(b);
2670 // Note, no reader for UBJSON binary types is implemented because they do
2872 if (JSON_HEDLEY_UNLIKELY(!unexpect_eof(format, "binary")))