byte_size Interface

public interface byte_size

Compute the number of bytes of a variable.

Calls

interface~~byte_size~~CallsGraph interface~byte_size byte_size proc~byte_size_i8p byte_size_I8P interface~byte_size->proc~byte_size_i8p proc~byte_size_i4p byte_size_I4P interface~byte_size->proc~byte_size_i4p proc~byte_size_chr byte_size_chr interface~byte_size->proc~byte_size_chr proc~byte_size_r4p byte_size_R4P interface~byte_size->proc~byte_size_r4p proc~byte_size_r8p byte_size_R8P interface~byte_size->proc~byte_size_r8p proc~byte_size_i2p byte_size_I2P interface~byte_size->proc~byte_size_i2p proc~byte_size_i1p byte_size_I1P interface~byte_size->proc~byte_size_i1p
Help

Called By

interface~~byte_size~~CalledByGraph interface~byte_size byte_size proc~b64_decode_string_a b64_decode_string_a proc~b64_decode_string_a->interface~byte_size proc~b64_decode_string b64_decode_string proc~b64_decode_string->interface~byte_size proc~b64_encode_string b64_encode_string proc~b64_encode_string->interface~byte_size proc~b64_encode_string_a b64_encode_string_a proc~b64_encode_string_a->interface~byte_size proc~b64_decode_up_a b64_decode_up_a proc~b64_decode_up_a->proc~b64_decode_string_a interface~b64_decode_up b64_decode_up interface~b64_decode_up->proc~b64_decode_up_a interface~b64_decode_up->proc~b64_decode_up_a interface~b64_decode_up->interface~b64_decode_up interface~b64_decode b64_decode interface~b64_decode->proc~b64_decode_string_a interface~b64_decode->proc~b64_decode_string proc~decode decode proc~decode->interface~b64_decode proc~autotest autotest proc~autotest->interface~b64_decode interface~b64_encode b64_encode proc~autotest->interface~b64_encode proc~b64_decode_up b64_decode_up proc~b64_decode_up->proc~b64_decode_string proc~b64_encode_up b64_encode_up proc~b64_encode_up->proc~b64_encode_string interface~b64_encode->proc~b64_encode_string interface~b64_encode->proc~b64_encode_string_a proc~encode encode proc~encode->interface~b64_encode proc~b64_encode_up_a b64_encode_up_a proc~b64_encode_up_a->proc~b64_encode_string_a interface~b64_encode_up b64_encode_up interface~b64_encode_up->proc~b64_encode_up_a interface~b64_encode_up->proc~b64_encode_up_a interface~b64_encode_up->interface~b64_encode_up
Help

Module Procedures

private elemental function byte_size_I8P(i) result(bytes)

Arguments

Type IntentOptional AttributesName
integer(kind=I8P), intent(in) :: i

Integer variable whose number of bytes must be computed.

Return Value integer(kind=I1P)

Number of bytes of i.

Description

Compute the number of bytes of an integer variable.

private elemental function byte_size_I4P(i) result(bytes)

Arguments

Type IntentOptional AttributesName
integer(kind=I4P), intent(in) :: i

Integer variable whose number of bytes must be computed.

Return Value integer(kind=I1P)

Number of bytes of i.

Description

Compute the number of bytes of an integer variable.

private elemental function byte_size_I2P(i) result(bytes)

Arguments

Type IntentOptional AttributesName
integer(kind=I2P), intent(in) :: i

Integer variable whose number of bytes must be computed.

Return Value integer(kind=I1P)

Number of bytes of i.

Description

Compute the number of bytes of an integer variable.

private elemental function byte_size_I1P(i) result(bytes)

Arguments

Type IntentOptional AttributesName
integer(kind=I1P), intent(in) :: i

Integer variable whose number of bytes must be computed.

Return Value integer(kind=I1P)

Number of bytes of i.

Description

Compute the number of bytes of an integer variable.

private elemental function byte_size_R8P(i) result(bytes)

Arguments

Type IntentOptional AttributesName
real(kind=R8P), intent(in) :: i

Real variable whose number of bytes must be computed.

Return Value integer(kind=I1P)

Number of bytes of r.

Description

Compute the number of bytes of a real variable.

private elemental function byte_size_R4P(i) result(bytes)

Arguments

Type IntentOptional AttributesName
real(kind=R4P), intent(in) :: i

Real variable whose number of bytes must be computed.

Return Value integer(kind=I1P)

Number of bytes of r.

Description

Compute the number of bytes of a real variable.

private elemental function byte_size_chr(i) result(bytes)

Arguments

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

Character variable whose number of bytes must be computed.

Return Value integer(kind=I4P)

Number of bytes of c.

Description

Compute the number of bytes of a character variable.