Nodes of different colours represent the following:
Solid arrows point from a procedure to one which it calls. Dashed
arrows point from an interface to procedures which implement that interface.
This could include the module procedures in a generic interface or the
implementation in a submodule of an interface in a parent module.
Where possible, edges connecting nodes are
given different colours to make them easier to distinguish in
large graphs.
Source Code
integer function word_size(type_kind,rc)integer,intent(in)::type_kindinteger,optional,intent(out)::rcinteger(kind=INT32)::i32integer(kind=INT64)::i64real(kind=REAL32)::r32real(kind=REAL64)::r64select case(type_kind)case(pFIO_INT32)word_size=1case(pFIO_REAL32)word_size=c_sizeof(r32)/c_sizeof(i32)case(pFIO_LOGICAL)word_size=1case(pFIO_REAL64)word_size=c_sizeof(r64)/c_sizeof(i32)case(pFIO_INT64)word_size=c_sizeof(i64)/c_sizeof(i32)case default_FAIL("unsupported type kind")end select_RETURN(_SUCCESS)end function word_size