⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 type.c

📁 gcc-2.95.3 Linux下最常用的C编译器
💻 C
字号:
/* Implementation of Fortran type abstraction   Copyright (C) 1995 Free Software Foundation, Inc.   Contributed by James Craig Burley.This file is part of GNU Fortran.GNU Fortran 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.GNU Fortran 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 GNU Fortran; see the file COPYING.  If not, write tothe Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA02111-1307, USA.  */#include "proj.h"#include "type.h"#include "malloc.h"/* Look up a type given its base type and kind value.  */ffetypeffetype_lookup_kind (ffetype base_type, int kind){  if ((base_type->kinds_ == NULL)      || (kind < 0)      || (((size_t) kind) >= ARRAY_SIZE (base_type->kinds_->type_)))    return NULL;  return base_type->kinds_->type_[kind];}ffetypeffetype_lookup_star (ffetype base_type, int star){  if ((base_type->stars_ == NULL)      || (star < 0)      || (((size_t) star) >= ARRAY_SIZE (base_type->stars_->type_)))    return NULL;  return base_type->stars_->type_[star];}ffetypeffetype_new (void){  ffetype type;  type = (ffetype) malloc_new_kp (malloc_pool_image (), "ffetype",				    sizeof (*type));  type->kinds_ = NULL;  type->stars_ = NULL;  type->alignment_ = 0;  type->modulo_ = 0;  type->size_ = 0;  return type;}voidffetype_set_kind (ffetype base_type, int kind, ffetype type){  assert (kind < (int) sizeof (*(base_type->kinds_)));  if (base_type->kinds_ == NULL)    {      int i;      base_type->kinds_	= (ffetype_indexes_) malloc_new_kp (malloc_pool_image (),					    "ffetype_indexes_[kinds]",					    sizeof (*(base_type->kinds_)));      for (i = 0; ((size_t) i) < ARRAY_SIZE (base_type->kinds_->type_); ++i)	base_type->kinds_->type_[i] = NULL;    }  assert (base_type->kinds_->type_[kind] == NULL);  base_type->kinds_->type_[kind] = type;}voidffetype_set_star (ffetype base_type, int star, ffetype type){  if (base_type->stars_ == NULL)    {      int i;      base_type->stars_	= (ffetype_indexes_) malloc_new_kp (malloc_pool_image (),					    "ffetype_indexes_[stars]",					    sizeof (*(base_type->stars_)));      for (i = 0; ((size_t) i) < ARRAY_SIZE (base_type->stars_->type_); ++i)	base_type->stars_->type_[i] = NULL;    }  assert (base_type->stars_->type_[star] == NULL);  base_type->stars_->type_[star] = type;}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -