Searched refs:_cbor_encode_byte (Results 1 – 1 of 1) sorted by relevance
/netbsd-src/external/mit/libcbor/dist/src/cbor/ |
H A D | encoding.c | 66 size_t _cbor_encode_byte(uint8_t value, unsigned char *buffer, in _cbor_encode_byte() function 77 return _cbor_encode_byte(0x5F, buffer, buffer_size); in cbor_encode_indef_bytestring_start() 87 return _cbor_encode_byte(0x7F, buffer, buffer_size); in cbor_encode_indef_string_start() 97 return _cbor_encode_byte(0x9F, buffer, buffer_size); in cbor_encode_indef_array_start() 106 return _cbor_encode_byte(0xBF, buffer, buffer_size); in cbor_encode_indef_map_start() 115 return value ? _cbor_encode_byte(0xF5, buffer, buffer_size) in cbor_encode_bool() 116 : _cbor_encode_byte(0xF4, buffer, buffer_size); in cbor_encode_bool() 120 return _cbor_encode_byte(0xF6, buffer, buffer_size); in cbor_encode_null() 124 return _cbor_encode_byte(0xF7, buffer, buffer_size); in cbor_encode_undef() 186 return _cbor_encode_byte(0xFF, buffer, buffer_size); in cbor_encode_break()
|