Searched refs:_cbor_encode_byte (Results 1 – 1 of 1) sorted by relevance
| /freebsd/contrib/libcbor/src/cbor/ |
| H A D | encoding.c | 69 size_t _cbor_encode_byte(uint8_t value, unsigned char* buffer, in _cbor_encode_byte() function 80 return _cbor_encode_byte(0x5F, buffer, buffer_size); in cbor_encode_indef_bytestring_start() 90 return _cbor_encode_byte(0x7F, buffer, buffer_size); in cbor_encode_indef_string_start() 100 return _cbor_encode_byte(0x9F, buffer, buffer_size); in cbor_encode_indef_array_start() 109 return _cbor_encode_byte(0xBF, buffer, buffer_size); in cbor_encode_indef_map_start() 118 return value ? _cbor_encode_byte(0xF5, buffer, buffer_size) in cbor_encode_bool() 119 : _cbor_encode_byte(0xF4, buffer, buffer_size); in cbor_encode_bool() 123 return _cbor_encode_byte(0xF6, buffer, buffer_size); in cbor_encode_null() 127 return _cbor_encode_byte(0xF7, buffer, buffer_size); in cbor_encode_undef() 208 return _cbor_encode_byte(0xFF, buffer, buffer_size); in cbor_encode_break()
|