Home
last modified time | relevance | path

Searched refs:base64_encode (Results 1 – 14 of 14) sorted by relevance

/openbmc/linux/lib/
H A Dbase64.c32 int base64_encode(const u8 *src, int srclen, char *dst) in base64_encode() function
57 EXPORT_SYMBOL_GPL(base64_encode);
/openbmc/libcper/sections/
H A Dcper-section-dmar-iommu.c36 char *encoded = base64_encode((UINT8 *)iommu_error->EventLogEntry, 16, in cper_section_dmar_iommu_to_ir()
51 encoded = base64_encode((UINT8 *)iommu_error->DeviceTableEntry, 32, in cper_section_dmar_iommu_to_ir()
H A Dcper-section-cxl-protocol.c110 encoded = base64_encode( in cper_section_cxl_protocol_to_ir()
137 encoded = base64_encode((UINT8 *)cur_pos, in cper_section_cxl_protocol_to_ir()
155 encoded = base64_encode((UINT8 *)cur_pos, in cper_section_cxl_protocol_to_ir()
H A Dcper-section-dmar-vtd.c88 base64_encode((UINT8 *)vtd_error->RootEntry, 16, &encoded_len); in cper_section_dmar_vtd_to_ir()
96 encoded = base64_encode((UINT8 *)vtd_error->ContextEntry, 16, in cper_section_dmar_vtd_to_ir()
H A Dcper-section-pcie.c108 char *encoded = base64_encode((UINT8 *)pcie_error->Capability.PcieCap, in cper_section_pcie_to_ir()
127 encoded = base64_encode((UINT8 *)pcie_error->AerInfo.PcieAer, 96, in cper_section_pcie_to_ir()
H A Dcper-section-ccix-per.c44 char *encoded = base64_encode((UINT8 *)cur_pos, in cper_section_ccix_per_to_ir()
H A Dcper-section-cxl-component.c69 char *encoded = base64_encode((UINT8 *)cur_pos, remaining_len, in cper_section_cxl_component_to_ir()
H A Dcper-section-arm.c126 base64_encode(cur_pos, input_size, &encoded_len); in cper_section_arm_to_ir()
443 char *encoded = base64_encode((UINT8 *)cur_pos, in cper_arm_processor_context_to_ir()
H A Dcper-section-ia32x64.c394 char *encoded = base64_encode((UINT8 *)*cur_pos, in cper_ia32x64_processor_context_info_to_ir()
/openbmc/linux/include/linux/
H A Dbase64.h13 int base64_encode(const u8 *src, int len, char *dst);
/openbmc/libcper/
H A Dbase64.h13 CHAR8 *base64_encode(const UINT8 *src, INT32 len, INT32 *out_len);
H A Dbase64.c16 CHAR8 *base64_encode(const UINT8 *src, INT32 len, INT32 *out_len) in base64_encode() function
H A Dcper-parse.c362 char *encoded = base64_encode( in cper_section_to_ir()
/openbmc/libcper/tests/
H A Dbase64_test.cpp12 char *encoded = base64_encode(data.data(), data.size(), &encoded_len); in TEST()