Home
last modified time | relevance | path

Searched refs:combined_data (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/libcbor/src/
H A Dcbor.c318 unsigned char* combined_data = _cbor_malloc(total_length); in cbor_copy_definite() local
319 if (combined_data == NULL) { in cbor_copy_definite()
326 memcpy(combined_data + offset, cbor_bytestring_handle(chunk), in cbor_copy_definite()
332 cbor_bytestring_set_handle(res, combined_data, total_length); in cbor_copy_definite()
345 unsigned char* combined_data = _cbor_malloc(total_length); in cbor_copy_definite() local
346 if (combined_data == NULL) { in cbor_copy_definite()
353 memcpy(combined_data + offset, cbor_string_handle(chunk), in cbor_copy_definite()
359 cbor_string_set_handle(res, combined_data, total_length); in cbor_copy_definite()
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteRegisterContext.cpp94 std::vector<char> combined_data; in ReadRegister()
101 combined_data.resize(offset + parent_reg->byte_size); in ReadRegister()
103 combined_data.data() + offset) != in ReadRegister()
111 *reg_info, combined_data.data(), combined_data.size(), in ReadRegister()
112 m_reg_data.GetByteOrder(), error) == combined_data.size(); in ReadRegister()
93 std::vector<char> combined_data; ReadRegister() local