b64_decode_R16_a Subroutine

private pure subroutine b64_decode_R16_a(code, n)

Arguments

Type IntentOptional AttributesName
character(len=*), intent(in) :: code

Encoded array.

real(kind=R16P), intent(out) :: n(1:)

Array of numbers to be decoded.

Description

Decode a base64 code into an array numbers (R16P).

Calls

proc~~b64_decode_r16_a~~CallsGraph proc~b64_decode_r16_a b64_decode_R16_a proc~decode_bits decode_bits proc~b64_decode_r16_a->proc~decode_bits
Help

Variables

TypeVisibility AttributesNameInitial
integer(kind=I1P), public, allocatable:: nI1P(:)

One byte integer array containing n.


Source Code

  pure subroutine b64_decode_R16_a(code, n)
  !---------------------------------------------------------------------------------------------------------------------------------
  !< Decode a base64 code into an array numbers (R16P).
  !---------------------------------------------------------------------------------------------------------------------------------
  character(*), intent(in)  :: code    !< Encoded array.
  real(R16P),   intent(out) :: n(1:)   !< Array of numbers to be decoded.
  integer(I1P), allocatable :: nI1P(:) !< One byte integer array containing n.
  !---------------------------------------------------------------------------------------------------------------------------------

  !---------------------------------------------------------------------------------------------------------------------------------
  allocate(nI1P(1:size(n,dim=1)*BYR16P)) ; nI1P = 0_I1P
  call decode_bits(code=code,bits=nI1P)
  n = transfer(nI1P,n)
  return
  !---------------------------------------------------------------------------------------------------------------------------------
  endsubroutine b64_decode_R16_a