📄 size_from_kind.c
字号:
/* Copyright (C) 2005 Free Software Foundation, Inc. Contributed by Janne BlomqvistThis file is part of the GNU Fortran runtime library (libgfortran).Libgfortran is free software; you can redistribute it and/or modifyit under the terms of the GNU General Public License as published bythe Free Software Foundation; either version 2, or (at your option)any later version.In addition to the permissions in the GNU General Public License, theFree Software Foundation gives you unlimited permission to link thecompiled version of this file into combinations with other programs,and to distribute those combinations without any restriction comingfrom the use of this file. (The General Public License restrictionsdo apply in other respects; for example, they cover modification ofthe file, and distribution when not linked into a combineexecutable.)Libgfortran is distributed in the hope that it will be useful,but WITHOUT ANY WARRANTY; without even the implied warranty ofMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See theGNU General Public License for more details.You should have received a copy of the GNU General Public Licensealong with Libgfortran; see the file COPYING. If not, write tothe Free Software Foundation, 51 Franklin Street, Fifth Floor,Boston, MA 02110-1301, USA. *//* This file contains utility functions for determining the size of a variable given its kind. */#include "config.h"#include "libgfortran.h"#include "io.h"size_tsize_from_real_kind (int kind){ switch (kind) {#ifdef HAVE_GFC_REAL_4 case 4: return sizeof (GFC_REAL_4);#endif#ifdef HAVE_GFC_REAL_8 case 8: return sizeof (GFC_REAL_8);#endif#ifdef HAVE_GFC_REAL_10 case 10: return sizeof (GFC_REAL_10);#endif#ifdef HAVE_GFC_REAL_16 case 16: return sizeof (GFC_REAL_16);#endif default: return kind; }}size_tsize_from_complex_kind (int kind){ switch (kind) {#ifdef HAVE_GFC_COMPLEX_4 case 4: return sizeof (GFC_COMPLEX_4);#endif#ifdef HAVE_GFC_COMPLEX_8 case 8: return sizeof (GFC_COMPLEX_8);#endif#ifdef HAVE_GFC_COMPLEX_10 case 10: return sizeof (GFC_COMPLEX_10);#endif#ifdef HAVE_GFC_COMPLEX_16 case 16: return sizeof (GFC_COMPLEX_16);#endif default: return 2 * kind; }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -