convert_to_Base64_single Interface

public interface convert_to_Base64_single

Calls

interface~~convert_to_base64_single~~CallsGraph interface~convert_to_base64_single convert_to_Base64_single proc~real64_to_base64_single real64_to_base64_single interface~convert_to_base64_single->proc~real64_to_base64_single proc~int8_to_base64_single int8_to_base64_single interface~convert_to_base64_single->proc~int8_to_base64_single proc~char_to_base64_single char_to_base64_single interface~convert_to_base64_single->proc~char_to_base64_single proc~int64_to_base64_single int64_to_base64_single interface~convert_to_base64_single->proc~int64_to_base64_single proc~int32_to_base64_single int32_to_base64_single interface~convert_to_base64_single->proc~int32_to_base64_single proc~real32_to_base64_single real32_to_base64_single interface~convert_to_base64_single->proc~real32_to_base64_single interface~encodeindex EncodeIndex proc~real64_to_base64_single->interface~encodeindex interface~encodeblock EncodeBlock proc~real64_to_base64_single->interface~encodeblock proc~int8_to_base64_single->interface~encodeindex proc~int8_to_base64_single->interface~encodeblock proc~char_to_base64_single->interface~encodeindex proc~char_to_base64_single->interface~encodeblock proc~int64_to_base64_single->interface~encodeindex proc~int64_to_base64_single->interface~encodeblock proc~int32_to_base64_single->interface~encodeindex proc~int32_to_base64_single->interface~encodeblock proc~real32_to_base64_single->interface~encodeindex proc~real32_to_base64_single->interface~encodeblock

Called by

interface~~convert_to_base64_single~~CalledByGraph interface~convert_to_base64_single convert_to_Base64_single proc~real32_to_base64 real32_to_base64 proc~real32_to_base64->interface~convert_to_base64_single proc~char_to_base64 char_to_base64 proc~char_to_base64->interface~convert_to_base64_single proc~int8_to_base64 int8_to_base64 proc~int8_to_base64->interface~convert_to_base64_single proc~int64_to_base64 int64_to_base64 proc~int64_to_base64->interface~convert_to_base64_single proc~real64_to_base64 real64_to_base64 proc~real64_to_base64->interface~convert_to_base64_single proc~int32_to_base64 int32_to_base64 proc~int32_to_base64->interface~convert_to_base64_single interface~convert_to_base64 convert_to_Base64 interface~convert_to_base64->proc~real32_to_base64 interface~convert_to_base64->proc~char_to_base64 interface~convert_to_base64->proc~int8_to_base64 interface~convert_to_base64->proc~int64_to_base64 interface~convert_to_base64->proc~real64_to_base64 interface~convert_to_base64->proc~int32_to_base64 proc~hvs_vtk_dump_data hvs_vtk_dump_data proc~hvs_vtk_dump_data->interface~convert_to_base64 proc~hvs_vtk_write_meshdata hvs_vtk_write_meshdata proc~hvs_vtk_write_meshdata->interface~convert_to_base64 proc~hvs_dump_debug_array hvs_dump_debug_array proc~hvs_dump_debug_array->interface~convert_to_base64 proc~hvs_dump_debug_array->proc~hvs_vtk_write_meshdata proc~hvs_output_open hvs_output_open proc~hvs_output_open->proc~hvs_vtk_write_meshdata proc~hvs_output_write hvs_output_write proc~hvs_output_write->proc~hvs_vtk_dump_data

Contents


Module Procedures

public subroutine real32_to_base64_single(indata, outfile)

this routine encodes a single variable of type real32 into base64 format

Arguments

TypeIntentOptionalAttributesName
real(kind=c_float), intent(in), target:: indata

data to be encoded

integer, intent(in) :: outfile

output file unit

public subroutine real64_to_base64_single(indata, outfile)

this routine encodes a single variable of type real64 into base64 format

Arguments

TypeIntentOptionalAttributesName
real(kind=c_double), intent(in), target:: indata

data to be encoded

integer, intent(in) :: outfile

output file unit

public subroutine char_to_base64_single(indata, outfile)

this routine encodes a single variable of type char into base64 format

Arguments

TypeIntentOptionalAttributesName
character(kind=c_char), intent(in), target:: indata

data to be encoded

integer, intent(in) :: outfile

output file unit

public subroutine int8_to_base64_single(indata, outfile)

this routine encodes a single variable of type int8 into base64 format

Arguments

TypeIntentOptionalAttributesName
integer(kind=c_int_least8_t), intent(in), target:: indata

data to be encoded

integer, intent(in) :: outfile

output file unit

public subroutine int32_to_base64_single(indata, outfile)

this routine encodes a single variable of type int32 into base64 format

Arguments

TypeIntentOptionalAttributesName
integer(kind=c_int), intent(in), target:: indata

data to be encoded

integer, intent(in) :: outfile

output file unit

public subroutine int64_to_base64_single(indata, outfile)

this routine encodes a single variable of type int64 into base64 format

Arguments

TypeIntentOptionalAttributesName
integer(kind=c_int_least64_t), intent(in), target:: indata

data to be encoded

integer, intent(in) :: outfile

output file unit