whitespace cleanup, comments cleanup, line wrap

This commit is contained in:
rlar 2018-02-14 18:53:30 +01:00
parent ec4b7ffecd
commit a8e440eabe
116 changed files with 1541 additions and 1571 deletions

View File

@ -40,36 +40,33 @@
<admst:template match="code">
<admst:value-of select="attribute[name='ngspicename']/value"/>
<admst:variable name="module" select="%s"/>
#include &quot;ngspice/ngspice.h&quot;
#include &quot;$(module)defs.h&quot;
#include &quot;ngspice/sperror.h&quot;
#include &quot;ngspice/suffix.h&quot;
int $(module)delete(GENmodel *inModel, IFuid name, GENinstance **inInst)
{
$(module)model *model = ($(module)model*)inModel;
$(module)instance **fast =($(module)instance**)inInst;
$(module)instance **prev = NULL;
$(module)instance *here;
for ( ; model ; model = model->$(module)nextModel ) {
prev = &amp;(model->$(module)instances);
for (here = *prev; here ; here = *prev) {
if(here->$(module)name == name || (fast &amp;&amp; here==*fast) ) {
*prev = here->$(module)nextInstance;
FREE(here);
return(OK);
}
prev = &amp;(here->$(module)nextInstance);
}
}
return(E_NODEV);
}
$(module)model *model = ($(module)model*)inModel;
$(module)instance **fast =($(module)instance**)inInst;
$(module)instance **prev = NULL;
$(module)instance *here;
for (; model; model = model->$(module)nextModel) {
prev = &amp;(model->$(module)instances);
for (here = *prev; here; here = *prev) {
if (here->$(module)name == name || (fast &amp;&amp; here == *fast)) {
*prev = here->$(module)nextInstance;
FREE(here);
return(OK);
}
prev = &amp;(here->$(module)nextInstance);
}
}
return(E_NODEV);
}
</admst:template>
<admst:for-each select="/module">

View File

@ -40,41 +40,39 @@
<admst:template match="code">
<admst:value-of select="attribute[name='ngspicename']/value"/>
<admst:variable name="module" select="%s"/>
#include &quot;ngspice/ngspice.h&quot;
#include &quot;$(module)defs.h&quot;
#include &quot;ngspice/sperror.h&quot;
#include &quot;ngspice/suffix.h&quot;
int $(module)mDelete(GENmodel **inModel, IFuid modname, GENmodel *kill)
{
$(module)model **model = ($(module)model**)inModel;
$(module)model *modfast =($(module)model*)kill;
$(module)instance *here;
$(module)instance *prev = NULL;
$(module)model **oldmod;
oldmod = model;
for ( ; *model ; model = &amp;((*model)->$(module)nextModel)) {
if ((*model)->$(module)modName == modname ||
(modfast &amp;&amp; *model == modfast))
goto delgot;
oldmod = model;
}
return(E_NOMOD);
delgot:
$(module)model **model = ($(module)model**)inModel;
$(module)model *modfast =($(module)model*)kill;
$(module)instance *here;
$(module)instance *prev = NULL;
$(module)model **oldmod;
oldmod = model;
for (; *model; model = &amp;((*model)->$(module)nextModel)) {
if ((*model)->$(module)modName == modname ||
(modfast &amp;&amp; *model == modfast))
goto delgot;
oldmod = model;
}
return(E_NOMOD);
delgot:
*oldmod = (*model)->$(module)nextModel; /* cut deleted device out of list */
for (here = (*model)->$(module)instances; here; here = here->$(module)nextInstance)
{ if(prev) FREE(prev);
prev = here;
{ if (prev) FREE(prev);
prev = here;
}
if(prev) FREE(prev);
if (prev) FREE(prev);
FREE(*model);
return(OK);
}
</admst:template>
<admst:for-each select="/module">

View File

@ -12,15 +12,14 @@ Author: 1987 Kanwar Jit Singh
int
ASRCdelete(GENmodel *model, IFuid name, GENinstance **fast)
{
ASRCinstance **instPtr = (ASRCinstance**) fast;
ASRCmodel *modPtr = (ASRCmodel*) model;
ASRCinstance **instPtr = (ASRCinstance **) fast;
ASRCmodel *modPtr = (ASRCmodel *) model;
ASRCinstance **prev = NULL;
ASRCinstance *here;
for (; modPtr ; modPtr = modPtr->ASRCnextModel) {
for (; modPtr; modPtr = modPtr->ASRCnextModel) {
prev = &(modPtr->ASRCinstances);
for (here = *prev; here ; here = *prev) {
for (here = *prev; here; here = *prev) {
if (here->ASRCname == name || (instPtr && here == *instPtr)) {
*prev = here->ASRCnextInstance;
FREE(here);

View File

@ -12,8 +12,8 @@ Author: 1987 Kanwar Jit Singh
int
ASRCmDelete(GENmodel **modList, IFuid modname, GENmodel *killModel)
{
ASRCmodel **model = (ASRCmodel**) modList;
ASRCmodel *modfast = (ASRCmodel*) killModel;
ASRCmodel **model = (ASRCmodel **) modList;
ASRCmodel *modfast = (ASRCmodel *) killModel;
ASRCinstance *here;
ASRCinstance *prev = NULL;
ASRCmodel **oldmod;

View File

@ -16,24 +16,23 @@ Author: 1985 Thomas L. Quarles
int
BJTdelete(GENmodel *inModel, IFuid name, GENinstance **kill)
{
BJTmodel *model = (BJTmodel*)inModel;
BJTinstance **fast = (BJTinstance**)kill;
BJTmodel *model = (BJTmodel *) inModel;
BJTinstance **fast = (BJTinstance **) kill;
BJTinstance **prev = NULL;
BJTinstance *here;
for( ; model ; model = model->BJTnextModel) {
for (; model; model = model->BJTnextModel) {
prev = &(model->BJTinstances);
for(here = *prev; here ; here = *prev) {
if(here->BJTname == name || (fast && here==*fast) ) {
*prev= here->BJTnextInstance;
for (here = *prev; here; here = *prev) {
if (here->BJTname == name || (fast && here == *fast)) {
*prev = here->BJTnextInstance;
FREE(here);
return(OK);
}
prev = &(here->BJTnextInstance);
}
}
return(E_NODEV);
}

View File

@ -2,8 +2,6 @@
Copyright 1990 Regents of the University of California. All rights reserved.
Author: 1985 Thomas L. Quarles
**********/
/*
*/
/*
* This routine deletes a BJT model from the circuit and frees
@ -20,22 +18,22 @@ Author: 1985 Thomas L. Quarles
int
BJTmDelete(GENmodel **inModels, IFuid modname, GENmodel *kill)
{
BJTmodel **model = (BJTmodel**)inModels;
BJTmodel *modfast = (BJTmodel*)kill;
BJTmodel **model = (BJTmodel **) inModels;
BJTmodel *modfast = (BJTmodel *) kill;
BJTmodel **oldmod;
oldmod = model;
for( ; *model ; model = &((*model)->BJTnextModel)) {
if( (*model)->BJTmodName == modname ||
(modfast && *model == modfast) ) goto delgot;
for (; *model; model = &((*model)->BJTnextModel)) {
if ((*model)->BJTmodName == modname ||
(modfast && *model == modfast)) goto delgot;
oldmod = model;
}
return(E_NOMOD);
delgot:
if( (*model)->BJTinstances ) return(E_NOTEMPTY);
delgot:
if ((*model)->BJTinstances) return(E_NOTEMPTY);
*oldmod = (*model)->BJTnextModel; /* cut deleted device out of list */
FREE(*model);
return(OK);
}

View File

@ -2,8 +2,6 @@
Copyright 1990 Regents of the University of California. All rights reserved.
Author: 1985 Hong J. Park, Thomas L. Quarles
**********/
/*
*/
#include "ngspice/ngspice.h"
#include "bsim1def.h"
@ -14,24 +12,23 @@ Author: 1985 Hong J. Park, Thomas L. Quarles
int
B1delete(GENmodel *inModel, IFuid name, GENinstance **inInst)
{
B1instance **fast = (B1instance**)inInst;
B1model *model = (B1model*)inModel;
B1instance **fast = (B1instance **) inInst;
B1model *model = (B1model *) inModel;
B1instance **prev = NULL;
B1instance *here;
for( ; model ; model = model->B1nextModel) {
for (; model; model = model->B1nextModel) {
prev = &(model->B1instances);
for(here = *prev; here ; here = *prev) {
if(here->B1name == name || (fast && here==*fast) ) {
*prev= here->B1nextInstance;
for (here = *prev; here; here = *prev) {
if (here->B1name == name || (fast && here == *fast)) {
*prev = here->B1nextInstance;
FREE(here);
return(OK);
}
prev = &(here->B1nextInstance);
}
}
return(E_NODEV);
}

View File

@ -2,8 +2,6 @@
Copyright 1990 Regents of the University of California. All rights reserved.
Author: 1985 Hong J. Park, Thomas L. Quarles
**********/
/*
*/
#include "ngspice/ngspice.h"
#include "bsim1def.h"
@ -14,27 +12,28 @@ Author: 1985 Hong J. Park, Thomas L. Quarles
int
B1mDelete(GENmodel **inModel, IFuid modname, GENmodel *kill)
{
B1model **model = (B1model**)inModel;
B1model *modfast = (B1model*)kill;
B1model **model = (B1model **) inModel;
B1model *modfast = (B1model *) kill;
B1instance *here;
B1instance *prev = NULL;
B1model **oldmod;
oldmod = model;
for( ; *model ; model = &((*model)->B1nextModel)) {
if( (*model)->B1modName == modname ||
(modfast && *model == modfast) ) goto delgot;
for (; *model; model = &((*model)->B1nextModel)) {
if ((*model)->B1modName == modname ||
(modfast && *model == modfast)) goto delgot;
oldmod = model;
}
return(E_NOMOD);
delgot:
delgot:
*oldmod = (*model)->B1nextModel; /* cut deleted device out of list */
for(here = (*model)->B1instances ; here ; here = here->B1nextInstance) {
if(prev) FREE(prev);
for (here = (*model)->B1instances; here; here = here->B1nextInstance) {
if (prev) FREE(prev);
prev = here;
}
if(prev) FREE(prev);
if (prev) FREE(prev);
FREE(*model);
return(OK);
}

View File

@ -2,8 +2,6 @@
Copyright 1990 Regents of the University of California. All rights reserved.
Author: 1985 Hong J. Park, Thomas L. Quarles
**********/
/*
*/
#include "ngspice/ngspice.h"
#include "bsim2def.h"
@ -15,22 +13,22 @@ Author: 1985 Hong J. Park, Thomas L. Quarles
int
B2delete(GENmodel *inModel, IFuid name, GENinstance **inInst)
{
B2instance **fast = (B2instance**)inInst;
B2model *model = (B2model*)inModel;
B2instance **fast = (B2instance **) inInst;
B2model *model = (B2model *) inModel;
B2instance **prev = NULL;
B2instance *here;
for( ; model ; model = model->B2nextModel) {
for (; model; model = model->B2nextModel) {
prev = &(model->B2instances);
for(here = *prev; here ; here = *prev) {
if(here->B2name == name || (fast && here==*fast) ) {
*prev= here->B2nextInstance;
for (here = *prev; here; here = *prev) {
if (here->B2name == name || (fast && here == *fast)) {
*prev = here->B2nextInstance;
FREE(here);
return(OK);
}
prev = &(here->B2nextInstance);
}
}
return(E_NODEV);
}

View File

@ -2,8 +2,6 @@
Copyright 1990 Regents of the University of California. All rights reserved.
Author: 1985 Hong J. Park, Thomas L. Quarles
**********/
/*
*/
#include "ngspice/ngspice.h"
#include "bsim2def.h"
@ -14,28 +12,28 @@ Author: 1985 Hong J. Park, Thomas L. Quarles
int
B2mDelete(GENmodel **inModel, IFuid modname, GENmodel *kill)
{
B2model **model = (B2model**)inModel;
B2model *modfast = (B2model*)kill;
B2model **model = (B2model **) inModel;
B2model *modfast = (B2model *) kill;
B2instance *here;
B2instance *prev = NULL;
B2model **oldmod;
oldmod = model;
for( ; *model ; model = &((*model)->B2nextModel)) {
if( (*model)->B2modName == modname ||
(modfast && *model == modfast) ) goto delgot;
for (; *model; model = &((*model)->B2nextModel)) {
if ((*model)->B2modName == modname ||
(modfast && *model == modfast)) goto delgot;
oldmod = model;
}
return(E_NOMOD);
delgot:
delgot:
*oldmod = (*model)->B2nextModel; /* cut deleted device out of list */
for(here = (*model)->B2instances ; here ; here = here->B2nextInstance) {
if(prev) FREE(prev);
for (here = (*model)->B2instances; here; here = here->B2nextInstance) {
if (prev) FREE(prev);
prev = here;
}
if(prev) FREE(prev);
if (prev) FREE(prev);
FREE(*model);
return(OK);
}

View File

@ -18,27 +18,26 @@
int
BSIM3delete(
GENmodel *inModel,
IFuid name,
GENinstance **inInst)
GENmodel *inModel,
IFuid name,
GENinstance **inInst)
{
BSIM3instance **fast = (BSIM3instance**)inInst;
BSIM3model *model = (BSIM3model*)inModel;
BSIM3instance **prev = NULL;
BSIM3instance *here;
BSIM3instance **fast = (BSIM3instance **) inInst;
BSIM3model *model = (BSIM3model *) inModel;
BSIM3instance **prev = NULL;
BSIM3instance *here;
for (; model ; model = model->BSIM3nextModel)
{ prev = &(model->BSIM3instances);
for (here = *prev; here ; here = *prev)
{ if (here->BSIM3name == name || (fast && here==*fast))
{ *prev= here->BSIM3nextInstance;
FREE(here);
return(OK);
}
prev = &(here->BSIM3nextInstance);
}
for (; model; model = model->BSIM3nextModel)
{ prev = &(model->BSIM3instances);
for (here = *prev; here; here = *prev)
{ if (here->BSIM3name == name || (fast && here == *fast))
{ *prev = here->BSIM3nextInstance;
FREE(here);
return(OK);
}
prev = &(here->BSIM3nextInstance);
}
}
return(E_NODEV);
}

View File

@ -3,7 +3,7 @@
/**********
* Copyright 2004 Regents of the University of California. All rights reserved.
* File: b3mdel.c of BSIM3v3.3.0
* Author: 1995 Min-Chie Jeng and Mansun Chan.
* Author: 1995 Min-Chie Jeng and Mansun Chan.
* Author: 1997-1999 Weidong Liu.
* Author: 2001 Xuemei Xi
**********/
@ -13,37 +13,36 @@
#include "ngspice/sperror.h"
#include "ngspice/suffix.h"
int
BSIM3mDelete(
GENmodel **inModel,
IFuid modname,
GENmodel *kill)
GENmodel **inModel,
IFuid modname,
GENmodel *kill)
{
BSIM3model **model = (BSIM3model**)inModel;
BSIM3model *modfast = (BSIM3model*)kill;
BSIM3instance *here;
BSIM3instance *prev = NULL;
BSIM3model **oldmod;
BSIM3model **model = (BSIM3model **) inModel;
BSIM3model *modfast = (BSIM3model *) kill;
BSIM3instance *here;
BSIM3instance *prev = NULL;
BSIM3model **oldmod;
oldmod = model;
for (; *model ; model = &((*model)->BSIM3nextModel))
{ if ((*model)->BSIM3modName == modname ||
(modfast && *model == modfast))
goto delgot;
oldmod = model;
for (; *model; model = &((*model)->BSIM3nextModel))
{ if ((*model)->BSIM3modName == modname ||
(modfast && *model == modfast))
goto delgot;
oldmod = model;
}
return(E_NOMOD);
delgot:
delgot:
*oldmod = (*model)->BSIM3nextModel; /* cut deleted device out of list */
for (here = (*model)->BSIM3instances; here; here = here->BSIM3nextInstance)
{ if(prev) FREE(prev);
prev = here;
{ if (prev) FREE(prev);
prev = here;
}
if(prev) FREE(prev);
if (prev) FREE(prev);
FREE(*model);
return(OK);
}

View File

@ -6,7 +6,7 @@ Modified by Paolo Nenzi 2002
**********/
/*
* Revision 2.1 99/9/27 Pin Su
* Revision 2.1 99/9/27 Pin Su
* BSIMDD2.1 release
*/
@ -20,23 +20,22 @@ Modified by Paolo Nenzi 2002
int
B3SOIDDdelete(GENmodel *inModel, IFuid name, GENinstance **inInst)
{
B3SOIDDinstance **fast = (B3SOIDDinstance**)inInst;
B3SOIDDmodel *model = (B3SOIDDmodel*)inModel;
B3SOIDDinstance **prev = NULL;
B3SOIDDinstance *here;
B3SOIDDinstance **fast = (B3SOIDDinstance **) inInst;
B3SOIDDmodel *model = (B3SOIDDmodel *) inModel;
B3SOIDDinstance **prev = NULL;
B3SOIDDinstance *here;
for (; model ; model = model->B3SOIDDnextModel)
{ prev = &(model->B3SOIDDinstances);
for (here = *prev; here ; here = *prev)
{ if (here->B3SOIDDname == name || (fast && here==*fast))
{ *prev= here->B3SOIDDnextInstance;
FREE(here);
return(OK);
}
prev = &(here->B3SOIDDnextInstance);
}
for (; model; model = model->B3SOIDDnextModel)
{ prev = &(model->B3SOIDDinstances);
for (here = *prev; here; here = *prev)
{ if (here->B3SOIDDname == name || (fast && here == *fast))
{ *prev = here->B3SOIDDnextInstance;
FREE(here);
return(OK);
}
prev = &(here->B3SOIDDnextInstance);
}
}
return(E_NODEV);
}

View File

@ -7,7 +7,7 @@ Modified by Paolo Nenzi 2002
**********/
/*
* Revision 2.1 99/9/27 Pin Su
* Revision 2.1 99/9/27 Pin Su
* BSIMDD2.1 release
*/
@ -16,34 +16,33 @@ Modified by Paolo Nenzi 2002
#include "ngspice/sperror.h"
#include "ngspice/suffix.h"
int
B3SOIDDmDelete(GENmodel **inModel, IFuid modname, GENmodel *kill)
{
B3SOIDDmodel **model = (B3SOIDDmodel**)inModel;
B3SOIDDmodel *modfast = (B3SOIDDmodel*)kill;
B3SOIDDinstance *here;
B3SOIDDinstance *prev = NULL;
B3SOIDDmodel **oldmod;
B3SOIDDmodel **model = (B3SOIDDmodel **) inModel;
B3SOIDDmodel *modfast = (B3SOIDDmodel *) kill;
B3SOIDDinstance *here;
B3SOIDDinstance *prev = NULL;
B3SOIDDmodel **oldmod;
oldmod = model;
for (; *model ; model = &((*model)->B3SOIDDnextModel))
{ if ((*model)->B3SOIDDmodName == modname ||
(modfast && *model == modfast))
goto delgot;
oldmod = model;
for (; *model; model = &((*model)->B3SOIDDnextModel))
{ if ((*model)->B3SOIDDmodName == modname ||
(modfast && *model == modfast))
goto delgot;
oldmod = model;
}
return(E_NOMOD);
delgot:
delgot:
*oldmod = (*model)->B3SOIDDnextModel; /* cut deleted device out of list */
for (here = (*model)->B3SOIDDinstances; here; here = here->B3SOIDDnextInstance)
{ if(prev) FREE(prev);
prev = here;
{ if (prev) FREE(prev);
prev = here;
}
if(prev) FREE(prev);
if (prev) FREE(prev);
FREE(*model);
return(OK);
}

View File

@ -6,7 +6,7 @@ File: b3soifddel.c 98/5/01
**********/
/*
* Revision 2.1 99/9/27 Pin Su
* Revision 2.1 99/9/27 Pin Su
* BSIMFD2.1 release
*/
@ -20,23 +20,22 @@ File: b3soifddel.c 98/5/01
int
B3SOIFDdelete(GENmodel *inModel, IFuid name, GENinstance **inInst)
{
B3SOIFDinstance **fast = (B3SOIFDinstance**)inInst;
B3SOIFDmodel *model = (B3SOIFDmodel*)inModel;
B3SOIFDinstance **prev = NULL;
B3SOIFDinstance *here;
B3SOIFDinstance **fast = (B3SOIFDinstance **) inInst;
B3SOIFDmodel *model = (B3SOIFDmodel *) inModel;
B3SOIFDinstance **prev = NULL;
B3SOIFDinstance *here;
for (; model ; model = model->B3SOIFDnextModel)
{ prev = &(model->B3SOIFDinstances);
for (here = *prev; here ; here = *prev)
{ if (here->B3SOIFDname == name || (fast && here==*fast))
{ *prev= here->B3SOIFDnextInstance;
FREE(here);
return(OK);
}
prev = &(here->B3SOIFDnextInstance);
}
for (; model; model = model->B3SOIFDnextModel)
{ prev = &(model->B3SOIFDinstances);
for (here = *prev; here; here = *prev)
{ if (here->B3SOIFDname == name || (fast && here == *fast))
{ *prev = here->B3SOIFDnextInstance;
FREE(here);
return(OK);
}
prev = &(here->B3SOIFDnextInstance);
}
}
return(E_NODEV);
}

View File

@ -6,7 +6,7 @@ File: b3soifdmdel.c 98/5/01
**********/
/*
* Revision 2.1 99/9/27 Pin Su
* Revision 2.1 99/9/27 Pin Su
* BSIMFD2.1 release
*/
@ -15,34 +15,33 @@ File: b3soifdmdel.c 98/5/01
#include "ngspice/sperror.h"
#include "ngspice/suffix.h"
int
B3SOIFDmDelete(GENmodel **inModel, IFuid modname, GENmodel *kill)
{
B3SOIFDmodel **model = (B3SOIFDmodel**)inModel;
B3SOIFDmodel *modfast = (B3SOIFDmodel*)kill;
B3SOIFDinstance *here;
B3SOIFDinstance *prev = NULL;
B3SOIFDmodel **oldmod;
B3SOIFDmodel **model = (B3SOIFDmodel **) inModel;
B3SOIFDmodel *modfast = (B3SOIFDmodel *) kill;
B3SOIFDinstance *here;
B3SOIFDinstance *prev = NULL;
B3SOIFDmodel **oldmod;
oldmod = model;
for (; *model ; model = &((*model)->B3SOIFDnextModel))
{ if ((*model)->B3SOIFDmodName == modname ||
(modfast && *model == modfast))
goto delgot;
oldmod = model;
for (; *model; model = &((*model)->B3SOIFDnextModel))
{ if ((*model)->B3SOIFDmodName == modname ||
(modfast && *model == modfast))
goto delgot;
oldmod = model;
}
return(E_NOMOD);
delgot:
delgot:
*oldmod = (*model)->B3SOIFDnextModel; /* cut deleted device out of list */
for (here = (*model)->B3SOIFDinstances; here; here = here->B3SOIFDnextInstance)
{ if(prev) FREE(prev);
prev = here;
{ if (prev) FREE(prev);
prev = here;
}
if(prev) FREE(prev);
if (prev) FREE(prev);
FREE(*model);
return(OK);
}

View File

@ -6,7 +6,7 @@ Modified by Paolo Nenzi 2002
**********/
/*
* Revision 2.2.3 02/3/5 Pin Su
* Revision 2.2.3 02/3/5 Pin Su
* BSIMPD2.2.3 release
*/
@ -20,23 +20,22 @@ Modified by Paolo Nenzi 2002
int
B3SOIPDdelete(GENmodel *inModel, IFuid name, GENinstance **inInst)
{
B3SOIPDinstance **fast = (B3SOIPDinstance**)inInst;
B3SOIPDmodel *model = (B3SOIPDmodel*)inModel;
B3SOIPDinstance **prev = NULL;
B3SOIPDinstance *here;
B3SOIPDinstance **fast = (B3SOIPDinstance **) inInst;
B3SOIPDmodel *model = (B3SOIPDmodel *) inModel;
B3SOIPDinstance **prev = NULL;
B3SOIPDinstance *here;
for (; model ; model = model->B3SOIPDnextModel)
{ prev = &(model->B3SOIPDinstances);
for (here = *prev; here ; here = *prev)
{ if (here->B3SOIPDname == name || (fast && here==*fast))
{ *prev= here->B3SOIPDnextInstance;
FREE(here);
return(OK);
}
prev = &(here->B3SOIPDnextInstance);
}
for (; model; model = model->B3SOIPDnextModel)
{ prev = &(model->B3SOIPDinstances);
for (here = *prev; here; here = *prev)
{ if (here->B3SOIPDname == name || (fast && here == *fast))
{ *prev = here->B3SOIPDnextInstance;
FREE(here);
return(OK);
}
prev = &(here->B3SOIPDnextInstance);
}
}
return(E_NODEV);
}

View File

@ -6,7 +6,7 @@ Modified by Paolo Nenzi 2002
**********/
/*
* Revision 2.2.3 02/3/5 Pin Su
* Revision 2.2.3 02/3/5 Pin Su
* BSIMPD2.2.3 release
*/
@ -15,34 +15,33 @@ Modified by Paolo Nenzi 2002
#include "ngspice/sperror.h"
#include "ngspice/suffix.h"
int
B3SOIPDmDelete(GENmodel **inModel, IFuid modname, GENmodel *kill)
{
B3SOIPDmodel **model = (B3SOIPDmodel**)inModel;
B3SOIPDmodel *modfast = (B3SOIPDmodel*)kill;
B3SOIPDinstance *here;
B3SOIPDinstance *prev = NULL;
B3SOIPDmodel **oldmod;
B3SOIPDmodel **model = (B3SOIPDmodel **) inModel;
B3SOIPDmodel *modfast = (B3SOIPDmodel *) kill;
B3SOIPDinstance *here;
B3SOIPDinstance *prev = NULL;
B3SOIPDmodel **oldmod;
oldmod = model;
for (; *model ; model = &((*model)->B3SOIPDnextModel))
{ if ((*model)->B3SOIPDmodName == modname ||
(modfast && *model == modfast))
goto delgot;
oldmod = model;
for (; *model; model = &((*model)->B3SOIPDnextModel))
{ if ((*model)->B3SOIPDmodName == modname ||
(modfast && *model == modfast))
goto delgot;
oldmod = model;
}
return(E_NOMOD);
delgot:
delgot:
*oldmod = (*model)->B3SOIPDnextModel; /* cut deleted device out of list */
for (here = (*model)->B3SOIPDinstances; here; here = here->B3SOIPDnextInstance)
{ if(prev) FREE(prev);
prev = here;
{ if (prev) FREE(prev);
prev = here;
}
if(prev) FREE(prev);
if (prev) FREE(prev);
FREE(*model);
return(OK);
}

View File

@ -3,8 +3,6 @@ Copyright 1990 Regents of the University of California. All rights reserved.
Author: 1995 Min-Chie Jeng and Mansun Chan.
File: b3v0del.c
**********/
/*
*/
#include "ngspice/ngspice.h"
#include "bsim3v0def.h"
@ -16,23 +14,22 @@ File: b3v0del.c
int
BSIM3v0delete(GENmodel *inModel, IFuid name, GENinstance **inInst)
{
BSIM3v0instance **fast = (BSIM3v0instance**)inInst;
BSIM3v0model *model = (BSIM3v0model*)inModel;
BSIM3v0instance **prev = NULL;
BSIM3v0instance *here;
BSIM3v0instance **fast = (BSIM3v0instance **) inInst;
BSIM3v0model *model = (BSIM3v0model *) inModel;
BSIM3v0instance **prev = NULL;
BSIM3v0instance *here;
for (; model ; model = model->BSIM3v0nextModel)
{ prev = &(model->BSIM3v0instances);
for (here = *prev; here ; here = *prev)
{ if (here->BSIM3v0name == name || (fast && here==*fast))
{ *prev= here->BSIM3v0nextInstance;
FREE(here);
return(OK);
}
prev = &(here->BSIM3v0nextInstance);
}
for (; model; model = model->BSIM3v0nextModel)
{ prev = &(model->BSIM3v0instances);
for (here = *prev; here; here = *prev)
{ if (here->BSIM3v0name == name || (fast && here == *fast))
{ *prev = here->BSIM3v0nextInstance;
FREE(here);
return(OK);
}
prev = &(here->BSIM3v0nextInstance);
}
}
return(E_NODEV);
}

View File

@ -9,34 +9,33 @@ File: b3v0mdel.c
#include "ngspice/sperror.h"
#include "ngspice/suffix.h"
int
BSIM3v0mDelete(GENmodel **inModel, IFuid modname, GENmodel *kill)
{
BSIM3v0model **model = (BSIM3v0model**)inModel;
BSIM3v0model *modfast = (BSIM3v0model*)kill;
BSIM3v0instance *here;
BSIM3v0instance *prev = NULL;
BSIM3v0model **oldmod;
BSIM3v0model **model = (BSIM3v0model **) inModel;
BSIM3v0model *modfast = (BSIM3v0model *) kill;
BSIM3v0instance *here;
BSIM3v0instance *prev = NULL;
BSIM3v0model **oldmod;
oldmod = model;
for (; *model ; model = &((*model)->BSIM3v0nextModel))
{ if ((*model)->BSIM3v0modName == modname ||
(modfast && *model == modfast))
goto delgot;
oldmod = model;
for (; *model; model = &((*model)->BSIM3v0nextModel))
{ if ((*model)->BSIM3v0modName == modname ||
(modfast && *model == modfast))
goto delgot;
oldmod = model;
}
return(E_NOMOD);
delgot:
delgot:
*oldmod = (*model)->BSIM3v0nextModel; /* cut deleted device out of list */
for (here = (*model)->BSIM3v0instances; here; here = here->BSIM3v0nextInstance)
{ if(prev) FREE(prev);
prev = here;
{ if (prev) FREE(prev);
prev = here;
}
if(prev) FREE(prev);
if (prev) FREE(prev);
FREE(*model);
return(OK);
}

View File

@ -1,16 +1,15 @@
/**********
* Copyright 1990 Regents of the University of California. All rights reserved.
* File: b3v1del.c
* Author: 1995 Min-Chie Jeng and Mansun Chan.
* Author: 1995 Min-Chie Jeng and Mansun Chan.
* Modified by Paolo Nenzi 2002
**********/
/*
* Release Notes:
/*
* Release Notes:
* BSIM3v3.1, Released by yuhua 96/12/08
*/
#include "ngspice/ngspice.h"
#include "bsim3v1def.h"
#include "ngspice/sperror.h"
@ -21,23 +20,22 @@
int
BSIM3v1delete(GENmodel *inModel, IFuid name, GENinstance **inInst)
{
BSIM3v1instance **fast = (BSIM3v1instance**)inInst;
BSIM3v1model *model = (BSIM3v1model*)inModel;
BSIM3v1instance **prev = NULL;
BSIM3v1instance *here;
BSIM3v1instance **fast = (BSIM3v1instance **) inInst;
BSIM3v1model *model = (BSIM3v1model *) inModel;
BSIM3v1instance **prev = NULL;
BSIM3v1instance *here;
for (; model ; model = model->BSIM3v1nextModel)
{ prev = &(model->BSIM3v1instances);
for (here = *prev; here ; here = *prev)
{ if (here->BSIM3v1name == name || (fast && here==*fast))
{ *prev= here->BSIM3v1nextInstance;
FREE(here);
return(OK);
}
prev = &(here->BSIM3v1nextInstance);
}
for (; model; model = model->BSIM3v1nextModel)
{ prev = &(model->BSIM3v1instances);
for (here = *prev; here; here = *prev)
{ if (here->BSIM3v1name == name || (fast && here == *fast))
{ *prev = here->BSIM3v1nextInstance;
FREE(here);
return(OK);
}
prev = &(here->BSIM3v1nextInstance);
}
}
return(E_NODEV);
}

View File

@ -1,12 +1,12 @@
/**********
* Copyright 1990 Regents of the University of California. All rights reserved.
* File: b3v1mdel.c
* Author: 1995 Min-Chie Jeng and Mansun Chan.
* Author: 1995 Min-Chie Jeng and Mansun Chan.
* Modified by Paolo Nenzi 2002
**********/
/*
* Release Notes:
/*
* Release Notes:
* BSIM3v3.1, Released by yuhua 96/12/08
*/
@ -15,34 +15,33 @@
#include "ngspice/sperror.h"
#include "ngspice/suffix.h"
int
BSIM3v1mDelete(GENmodel **inModel, IFuid modname, GENmodel *kill)
{
BSIM3v1model **model = (BSIM3v1model**)inModel;
BSIM3v1model *modfast = (BSIM3v1model*)kill;
BSIM3v1instance *here;
BSIM3v1instance *prev = NULL;
BSIM3v1model **oldmod;
BSIM3v1model **model = (BSIM3v1model **) inModel;
BSIM3v1model *modfast = (BSIM3v1model *) kill;
BSIM3v1instance *here;
BSIM3v1instance *prev = NULL;
BSIM3v1model **oldmod;
oldmod = model;
for (; *model ; model = &((*model)->BSIM3v1nextModel))
{ if ((*model)->BSIM3v1modName == modname ||
(modfast && *model == modfast))
goto delgot;
oldmod = model;
for (; *model; model = &((*model)->BSIM3v1nextModel))
{ if ((*model)->BSIM3v1modName == modname ||
(modfast && *model == modfast))
goto delgot;
oldmod = model;
}
return(E_NOMOD);
delgot:
delgot:
*oldmod = (*model)->BSIM3v1nextModel; /* cut deleted device out of list */
for (here = (*model)->BSIM3v1instances; here; here = here->BSIM3v1nextInstance)
{ if(prev) FREE(prev);
prev = here;
{ if (prev) FREE(prev);
prev = here;
}
if(prev) FREE(prev);
if (prev) FREE(prev);
FREE(*model);
return(OK);
}

View File

@ -18,23 +18,24 @@
int
BSIM3v32delete (GENmodel *inModel, IFuid name, GENinstance **inInst)
BSIM3v32delete(GENmodel *inModel, IFuid name, GENinstance **inInst)
{
BSIM3v32instance **fast = (BSIM3v32instance**)inInst;
BSIM3v32model *model = (BSIM3v32model*)inModel;
BSIM3v32instance **prev = NULL;
BSIM3v32instance *here;
BSIM3v32instance **fast = (BSIM3v32instance **) inInst;
BSIM3v32model *model = (BSIM3v32model *) inModel;
BSIM3v32instance **prev = NULL;
BSIM3v32instance *here;
for (; model ; model = model->BSIM3v32nextModel)
{ prev = &(model->BSIM3v32instances);
for (here = *prev; here ; here = *prev)
{ if (here->BSIM3v32name == name || (fast && here==*fast))
{ *prev= here->BSIM3v32nextInstance;
FREE(here);
return(OK);
}
prev = &(here->BSIM3v32nextInstance);
}
for (; model; model = model->BSIM3v32nextModel)
{ prev = &(model->BSIM3v32instances);
for (here = *prev; here; here = *prev)
{ if (here->BSIM3v32name == name || (fast && here == *fast))
{ *prev = here->BSIM3v32nextInstance;
FREE(here);
return(OK);
}
prev = &(here->BSIM3v32nextInstance);
}
}
return(E_NODEV);
}

View File

@ -14,33 +14,33 @@
#include "ngspice/sperror.h"
#include "ngspice/suffix.h"
int
BSIM3v32mDelete (GENmodel **inModel, IFuid modname, GENmodel *kill)
BSIM3v32mDelete(GENmodel **inModel, IFuid modname, GENmodel *kill)
{
BSIM3v32model **model = (BSIM3v32model**)inModel;
BSIM3v32model *modfast = (BSIM3v32model*)kill;
BSIM3v32instance *here;
BSIM3v32instance *prev = NULL;
BSIM3v32model **oldmod;
BSIM3v32model **model = (BSIM3v32model **) inModel;
BSIM3v32model *modfast = (BSIM3v32model *) kill;
BSIM3v32instance *here;
BSIM3v32instance *prev = NULL;
BSIM3v32model **oldmod;
oldmod = model;
for (; *model ; model = &((*model)->BSIM3v32nextModel))
{ if ((*model)->BSIM3v32modName == modname ||
(modfast && *model == modfast))
goto delgot;
oldmod = model;
for (; *model; model = &((*model)->BSIM3v32nextModel))
{ if ((*model)->BSIM3v32modName == modname ||
(modfast && *model == modfast))
goto delgot;
oldmod = model;
}
return(E_NOMOD);
delgot:
delgot:
*oldmod = (*model)->BSIM3v32nextModel; /* cut deleted device out of list */
for (here = (*model)->BSIM3v32instances; here; here = here->BSIM3v32nextInstance)
{ if(prev) FREE(prev);
prev = here;
{ if (prev) FREE(prev);
prev = here;
}
if(prev) FREE(prev);
if (prev) FREE(prev);
FREE(*model);
return(OK);
}

View File

@ -67,25 +67,26 @@
int
BSIM4delete(
GENmodel *inModel,
IFuid name,
GENinstance **inInst)
GENmodel *inModel,
IFuid name,
GENinstance **inInst)
{
BSIM4instance **fast = (BSIM4instance**)inInst;
BSIM4model *model = (BSIM4model*)inModel;
BSIM4instance **prev = NULL;
BSIM4instance *here;
BSIM4instance **fast = (BSIM4instance **) inInst;
BSIM4model *model = (BSIM4model *) inModel;
BSIM4instance **prev = NULL;
BSIM4instance *here;
for (; model ; model = model->BSIM4nextModel)
{ prev = &(model->BSIM4instances);
for (here = *prev; here ; here = *prev)
{ if (here->BSIM4name == name || (fast && here==*fast))
{ *prev= here->BSIM4nextInstance;
FREE(here);
return(OK);
}
prev = &(here->BSIM4nextInstance);
}
for (; model; model = model->BSIM4nextModel)
{ prev = &(model->BSIM4instances);
for (here = *prev; here; here = *prev)
{ if (here->BSIM4name == name || (fast && here == *fast))
{ *prev = here->BSIM4nextInstance;
FREE(here);
return(OK);
}
prev = &(here->BSIM4nextInstance);
}
}
return(E_NODEV);
}

View File

@ -63,34 +63,36 @@
#include "ngspice/sperror.h"
#include "ngspice/suffix.h"
int
BSIM4mDelete(
GENmodel **inModel,
IFuid modname,
GENmodel *kill)
GENmodel **inModel,
IFuid modname,
GENmodel *kill)
{
BSIM4model **model = (BSIM4model**)inModel;
BSIM4model *modfast = (BSIM4model*)kill;
BSIM4instance *here;
BSIM4instance *prev = NULL;
BSIM4model **oldmod;
BSIM4model **model = (BSIM4model **) inModel;
BSIM4model *modfast = (BSIM4model *) kill;
BSIM4instance *here;
BSIM4instance *prev = NULL;
BSIM4model **oldmod;
oldmod = model;
for (; *model ; model = &((*model)->BSIM4nextModel))
{ if ((*model)->BSIM4modName == modname ||
(modfast && *model == modfast))
goto delgot;
oldmod = model;
for (; *model; model = &((*model)->BSIM4nextModel))
{ if ((*model)->BSIM4modName == modname ||
(modfast && *model == modfast))
goto delgot;
oldmod = model;
}
return(E_NOMOD);
delgot:
delgot:
*oldmod = (*model)->BSIM4nextModel; /* cut deleted device out of list */
for (here = (*model)->BSIM4instances; here; here = here->BSIM4nextInstance)
{ if(prev) FREE(prev);
prev = here;
{ if (prev) FREE(prev);
prev = here;
}
if(prev) FREE(prev);
if (prev) FREE(prev);
FREE(*model);
return(OK);
}

View File

@ -17,25 +17,26 @@
int
BSIM4v5delete(
GENmodel *inModel,
IFuid name,
GENinstance **inInst)
GENmodel *inModel,
IFuid name,
GENinstance **inInst)
{
BSIM4v5instance **fast = (BSIM4v5instance**)inInst;
BSIM4v5model *model = (BSIM4v5model*)inModel;
BSIM4v5instance **prev = NULL;
BSIM4v5instance *here;
BSIM4v5instance **fast = (BSIM4v5instance **) inInst;
BSIM4v5model *model = (BSIM4v5model *) inModel;
BSIM4v5instance **prev = NULL;
BSIM4v5instance *here;
for (; model ; model = model->BSIM4v5nextModel)
{ prev = &(model->BSIM4v5instances);
for (here = *prev; here ; here = *prev)
{ if (here->BSIM4v5name == name || (fast && here==*fast))
{ *prev= here->BSIM4v5nextInstance;
FREE(here);
return(OK);
}
prev = &(here->BSIM4v5nextInstance);
}
for (; model; model = model->BSIM4v5nextModel)
{ prev = &(model->BSIM4v5instances);
for (here = *prev; here; here = *prev)
{ if (here->BSIM4v5name == name || (fast && here == *fast))
{ *prev = here->BSIM4v5nextInstance;
FREE(here);
return(OK);
}
prev = &(here->BSIM4v5nextInstance);
}
}
return(E_NODEV);
}

View File

@ -13,34 +13,36 @@
#include "ngspice/sperror.h"
#include "ngspice/suffix.h"
int
BSIM4v5mDelete(
GENmodel **inModel,
IFuid modname,
GENmodel *kill)
GENmodel **inModel,
IFuid modname,
GENmodel *kill)
{
BSIM4v5model **model = (BSIM4v5model**)inModel;
BSIM4v5model *modfast = (BSIM4v5model*)kill;
BSIM4v5instance *here;
BSIM4v5instance *prev = NULL;
BSIM4v5model **oldmod;
BSIM4v5model **model = (BSIM4v5model **) inModel;
BSIM4v5model *modfast = (BSIM4v5model *) kill;
BSIM4v5instance *here;
BSIM4v5instance *prev = NULL;
BSIM4v5model **oldmod;
oldmod = model;
for (; *model ; model = &((*model)->BSIM4v5nextModel))
{ if ((*model)->BSIM4v5modName == modname ||
(modfast && *model == modfast))
goto delgot;
oldmod = model;
for (; *model; model = &((*model)->BSIM4v5nextModel))
{ if ((*model)->BSIM4v5modName == modname ||
(modfast && *model == modfast))
goto delgot;
oldmod = model;
}
return(E_NOMOD);
delgot:
delgot:
*oldmod = (*model)->BSIM4v5nextModel; /* cut deleted device out of list */
for (here = (*model)->BSIM4v5instances; here; here = here->BSIM4v5nextInstance)
{ if(prev) FREE(prev);
prev = here;
{ if (prev) FREE(prev);
prev = here;
}
if(prev) FREE(prev);
if (prev) FREE(prev);
FREE(*model);
return(OK);
}

View File

@ -19,25 +19,26 @@
int
BSIM4v6delete(
GENmodel *inModel,
IFuid name,
GENinstance **inInst)
GENmodel *inModel,
IFuid name,
GENinstance **inInst)
{
BSIM4v6instance **fast = (BSIM4v6instance**)inInst;
BSIM4v6model *model = (BSIM4v6model*)inModel;
BSIM4v6instance **prev = NULL;
BSIM4v6instance *here;
BSIM4v6instance **fast = (BSIM4v6instance **) inInst;
BSIM4v6model *model = (BSIM4v6model *) inModel;
BSIM4v6instance **prev = NULL;
BSIM4v6instance *here;
for (; model ; model = model->BSIM4v6nextModel)
{ prev = &(model->BSIM4v6instances);
for (here = *prev; here ; here = *prev)
{ if (here->BSIM4v6name == name || (fast && here==*fast))
{ *prev= here->BSIM4v6nextInstance;
FREE(here);
return(OK);
}
prev = &(here->BSIM4v6nextInstance);
}
for (; model; model = model->BSIM4v6nextModel)
{ prev = &(model->BSIM4v6instances);
for (here = *prev; here; here = *prev)
{ if (here->BSIM4v6name == name || (fast && here == *fast))
{ *prev = here->BSIM4v6nextInstance;
FREE(here);
return(OK);
}
prev = &(here->BSIM4v6nextInstance);
}
}
return(E_NODEV);
}

View File

@ -15,34 +15,36 @@
#include "ngspice/sperror.h"
#include "ngspice/suffix.h"
int
BSIM4v6mDelete(
GENmodel **inModel,
IFuid modname,
GENmodel *kill)
GENmodel **inModel,
IFuid modname,
GENmodel *kill)
{
BSIM4v6model **model = (BSIM4v6model**)inModel;
BSIM4v6model *modfast = (BSIM4v6model*)kill;
BSIM4v6instance *here;
BSIM4v6instance *prev = NULL;
BSIM4v6model **oldmod;
BSIM4v6model **model = (BSIM4v6model **) inModel;
BSIM4v6model *modfast = (BSIM4v6model *) kill;
BSIM4v6instance *here;
BSIM4v6instance *prev = NULL;
BSIM4v6model **oldmod;
oldmod = model;
for (; *model ; model = &((*model)->BSIM4v6nextModel))
{ if ((*model)->BSIM4v6modName == modname ||
(modfast && *model == modfast))
goto delgot;
oldmod = model;
for (; *model; model = &((*model)->BSIM4v6nextModel))
{ if ((*model)->BSIM4v6modName == modname ||
(modfast && *model == modfast))
goto delgot;
oldmod = model;
}
return(E_NOMOD);
delgot:
delgot:
*oldmod = (*model)->BSIM4v6nextModel; /* cut deleted device out of list */
for (here = (*model)->BSIM4v6instances; here; here = here->BSIM4v6nextInstance)
{ if(prev) FREE(prev);
prev = here;
{ if (prev) FREE(prev);
prev = here;
}
if(prev) FREE(prev);
if (prev) FREE(prev);
FREE(*model);
return(OK);
}

View File

@ -19,25 +19,26 @@
int
BSIM4v7delete(
GENmodel *inModel,
IFuid name,
GENinstance **inInst)
GENmodel *inModel,
IFuid name,
GENinstance **inInst)
{
BSIM4v7instance **fast = (BSIM4v7instance**)inInst;
BSIM4v7model *model = (BSIM4v7model*)inModel;
BSIM4v7instance **prev = NULL;
BSIM4v7instance *here;
BSIM4v7instance **fast = (BSIM4v7instance **) inInst;
BSIM4v7model *model = (BSIM4v7model *) inModel;
BSIM4v7instance **prev = NULL;
BSIM4v7instance *here;
for (; model ; model = model->BSIM4v7nextModel)
{ prev = &(model->BSIM4v7instances);
for (here = *prev; here ; here = *prev)
{ if (here->BSIM4v7name == name || (fast && here==*fast))
{ *prev= here->BSIM4v7nextInstance;
FREE(here);
return(OK);
}
prev = &(here->BSIM4v7nextInstance);
}
for (; model; model = model->BSIM4v7nextModel)
{ prev = &(model->BSIM4v7instances);
for (here = *prev; here; here = *prev)
{ if (here->BSIM4v7name == name || (fast && here == *fast))
{ *prev = here->BSIM4v7nextInstance;
FREE(here);
return(OK);
}
prev = &(here->BSIM4v7nextInstance);
}
}
return(E_NODEV);
}

View File

@ -15,34 +15,36 @@
#include "ngspice/sperror.h"
#include "ngspice/suffix.h"
int
BSIM4v7mDelete(
GENmodel **inModel,
IFuid modname,
GENmodel *kill)
GENmodel **inModel,
IFuid modname,
GENmodel *kill)
{
BSIM4v7model **model = (BSIM4v7model**)inModel;
BSIM4v7model *modfast = (BSIM4v7model*)kill;
BSIM4v7instance *here;
BSIM4v7instance *prev = NULL;
BSIM4v7model **oldmod;
BSIM4v7model **model = (BSIM4v7model **) inModel;
BSIM4v7model *modfast = (BSIM4v7model *) kill;
BSIM4v7instance *here;
BSIM4v7instance *prev = NULL;
BSIM4v7model **oldmod;
oldmod = model;
for (; *model ; model = &((*model)->BSIM4v7nextModel))
{ if ((*model)->BSIM4v7modName == modname ||
(modfast && *model == modfast))
goto delgot;
oldmod = model;
for (; *model; model = &((*model)->BSIM4v7nextModel))
{ if ((*model)->BSIM4v7modName == modname ||
(modfast && *model == modfast))
goto delgot;
oldmod = model;
}
return(E_NOMOD);
delgot:
delgot:
*oldmod = (*model)->BSIM4v7nextModel; /* cut deleted device out of list */
for (here = (*model)->BSIM4v7instances; here; here = here->BSIM4v7nextInstance)
{ if(prev) FREE(prev);
prev = here;
{ if (prev) FREE(prev);
prev = here;
}
if(prev) FREE(prev);
if (prev) FREE(prev);
FREE(*model);
return(OK);
}

View File

@ -1,6 +1,5 @@
/*** B4SOI 12/16/2010 Released by Tanvir Morshed ***/
/**********
* Copyright 2010 Regents of the University of California. All rights reserved.
* Authors: 1998 Samuel Fung, Dennis Sinitsky and Stephen Tang
@ -15,7 +14,6 @@
**********/
#include "ngspice/ngspice.h"
#include "b4soidef.h"
#include "ngspice/sperror.h"
#include "ngspice/gendefs.h"
@ -24,27 +22,26 @@
int
B4SOIdelete(
GENmodel *inModel,
IFuid name,
GENinstance **inInst)
GENmodel *inModel,
IFuid name,
GENinstance **inInst)
{
B4SOIinstance **fast = (B4SOIinstance**)inInst;
B4SOImodel *model = (B4SOImodel*)inModel;
B4SOIinstance **prev = NULL;
B4SOIinstance *here;
B4SOIinstance **fast = (B4SOIinstance **) inInst;
B4SOImodel *model = (B4SOImodel *) inModel;
B4SOIinstance **prev = NULL;
B4SOIinstance *here;
for (; model ; model = model->B4SOInextModel)
{ prev = &(model->B4SOIinstances);
for (here = *prev; here ; here = *prev)
{ if (here->B4SOIname == name || (fast && here==*fast))
{ *prev= here->B4SOInextInstance;
FREE(here);
return(OK);
}
prev = &(here->B4SOInextInstance);
}
for (; model; model = model->B4SOInextModel)
{ prev = &(model->B4SOIinstances);
for (here = *prev; here; here = *prev)
{ if (here->B4SOIname == name || (fast && here == *fast))
{ *prev = here->B4SOInextInstance;
FREE(here);
return(OK);
}
prev = &(here->B4SOInextInstance);
}
}
return(E_NODEV);
}

View File

@ -15,40 +15,41 @@
**********/
#include "ngspice/ngspice.h"
#include "b4soidef.h"
#include "ngspice/sperror.h"
#include "ngspice/suffix.h"
int
B4SOImDelete(
GENmodel **inModel,
IFuid modname,
GENmodel *kill)
GENmodel **inModel,
IFuid modname,
GENmodel *kill)
{
B4SOImodel **model = (B4SOImodel**)inModel;
B4SOImodel *modfast = (B4SOImodel*)kill;
B4SOIinstance *here;
B4SOIinstance *prev = NULL;
B4SOImodel **oldmod;
B4SOImodel **model = (B4SOImodel **) inModel;
B4SOImodel *modfast = (B4SOImodel *) kill;
B4SOIinstance *here;
B4SOIinstance *prev = NULL;
B4SOImodel **oldmod;
oldmod = model;
for (; *model ; model = &((*model)->B4SOInextModel))
{ if ((*model)->B4SOImodName == modname ||
(modfast && *model == modfast))
goto delgot;
oldmod = model;
for (; *model; model = &((*model)->B4SOInextModel))
{ if ((*model)->B4SOImodName == modname ||
(modfast && *model == modfast))
goto delgot;
oldmod = model;
}
return(E_NOMOD);
delgot:
delgot:
*oldmod = (*model)->B4SOInextModel; /* cut deleted device out of list */
for (here = (*model)->B4SOIinstances; here; here = here->B4SOInextInstance)
{
if(prev) FREE(prev);
prev = here;
if (prev) FREE(prev);
prev = here;
}
if(prev) FREE(prev);
if (prev) FREE(prev);
FREE(*model);
return(OK);
}

View File

@ -1,10 +1,8 @@
/**********
Copyright 1990 Regents of the University of California. All rights reserved.
Author: 1985 Thomas L. Quarles
Modified: September 2003 Paolo Nenzi
Modified: September 2003 Paolo Nenzi
**********/
/*
*/
#include "ngspice/ngspice.h"
#include "capdefs.h"
@ -15,22 +13,22 @@ Modified: September 2003 Paolo Nenzi
int
CAPdelete(GENmodel *inModel, IFuid name, GENinstance **inst)
{
CAPinstance **fast = (CAPinstance**)inst;
CAPmodel *model = (CAPmodel*)inModel;
CAPinstance **fast = (CAPinstance **) inst;
CAPmodel *model = (CAPmodel *) inModel;
CAPinstance **prev = NULL;
CAPinstance *here;
for( ; model ; model = model->CAPnextModel) {
for (; model; model = model->CAPnextModel) {
prev = &(model->CAPinstances);
for(here = *prev; here ; here = *prev) {
if(here->CAPname == name || (fast && here==*fast) ) {
*prev= here->CAPnextInstance;
for (here = *prev; here; here = *prev) {
if (here->CAPname == name || (fast && here == *fast)) {
*prev = here->CAPnextInstance;
FREE(here);
return(OK);
}
prev = &(here->CAPnextInstance);
}
}
return(E_NODEV);
}

View File

@ -3,8 +3,6 @@ Copyright 1990 Regents of the University of California. All rights reserved.
Author: 1985 Thomas L. Quarles
Modified: Spetember 2003 Paolo Nenzi
**********/
/*
*/
#include "ngspice/ngspice.h"
#include "capdefs.h"
@ -15,29 +13,28 @@ Modified: Spetember 2003 Paolo Nenzi
int
CAPmDelete(GENmodel **inModel, IFuid modname, GENmodel *kill)
{
CAPmodel *modfast = (CAPmodel*)kill;
CAPmodel **model = (CAPmodel**)inModel;
CAPmodel *modfast = (CAPmodel *) kill;
CAPmodel **model = (CAPmodel **) inModel;
CAPinstance *here;
CAPinstance *prev = NULL;
CAPmodel **oldmod;
oldmod = model;
for( ; *model ; model = &((*model)->CAPnextModel)) {
if( (*model)->CAPmodName == modname ||
(modfast && *model == modfast) ) goto delgot;
for (; *model; model = &((*model)->CAPnextModel)) {
if ((*model)->CAPmodName == modname ||
(modfast && *model == modfast)) goto delgot;
oldmod = model;
}
return(E_NOMOD);
delgot:
delgot:
*oldmod = (*model)->CAPnextModel; /* cut deleted device out of list */
for(here = (*model)->CAPinstances ; here ; here = here->CAPnextInstance) {
if(prev) FREE(prev);
for (here = (*model)->CAPinstances; here; here = here->CAPnextInstance) {
if (prev) FREE(prev);
prev = here;
}
if(prev) FREE(prev);
if (prev) FREE(prev);
FREE(*model);
return(OK);
}

View File

@ -2,8 +2,6 @@
Copyright 1990 Regents of the University of California. All rights reserved.
Author: 1985 Thomas L. Quarles
**********/
/*
*/
#include "ngspice/ngspice.h"
#include "cccsdefs.h"
@ -14,22 +12,22 @@ Author: 1985 Thomas L. Quarles
int
CCCSdelete(GENmodel *inModel, IFuid name, GENinstance **inst)
{
CCCSmodel *model = (CCCSmodel*)inModel;
CCCSinstance **fast = (CCCSinstance**)inst;
CCCSmodel *model = (CCCSmodel *) inModel;
CCCSinstance **fast = (CCCSinstance **) inst;
CCCSinstance **prev = NULL;
CCCSinstance *here;
for( ; model ; model = model->CCCSnextModel) {
for (; model; model = model->CCCSnextModel) {
prev = &(model->CCCSinstances);
for(here = *prev; here ; here = *prev) {
if(here->CCCSname == name || (fast && here==*fast) ) {
*prev= here->CCCSnextInstance;
for (here = *prev; here; here = *prev) {
if (here->CCCSname == name || (fast && here == *fast)) {
*prev = here->CCCSnextInstance;
FREE(here);
return(OK);
}
prev = &(here->CCCSnextInstance);
}
}
return(E_NODEV);
}

View File

@ -2,8 +2,6 @@
Copyright 1990 Regents of the University of California. All rights reserved.
Author: 1985 Thomas L. Quarles
**********/
/*
*/
#include "ngspice/ngspice.h"
#include "cccsdefs.h"
@ -14,28 +12,28 @@ Author: 1985 Thomas L. Quarles
int
CCCSmDelete(GENmodel **inModel, IFuid modname, GENmodel *kill)
{
CCCSmodel **model = (CCCSmodel**)inModel;
CCCSmodel *modfast = (CCCSmodel*)kill;
CCCSmodel **model = (CCCSmodel **) inModel;
CCCSmodel *modfast = (CCCSmodel *) kill;
CCCSinstance *here;
CCCSinstance *prev = NULL;
CCCSmodel **oldmod;
oldmod = model;
for( ; *model ; model = &((*model)->CCCSnextModel)) {
if( (*model)->CCCSmodName == modname ||
(modfast && *model == modfast) ) goto delgot;
for (; *model; model = &((*model)->CCCSnextModel)) {
if ((*model)->CCCSmodName == modname ||
(modfast && *model == modfast)) goto delgot;
oldmod = model;
}
return(E_NOMOD);
delgot:
delgot:
*oldmod = (*model)->CCCSnextModel; /* cut deleted device out of list */
for(here = (*model)->CCCSinstances ; here ; here = here->CCCSnextInstance) {
if(prev) FREE(prev);
for (here = (*model)->CCCSinstances; here; here = here->CCCSnextInstance) {
if (prev) FREE(prev);
prev = here;
}
if(prev) FREE(prev);
if (prev) FREE(prev);
FREE(*model);
return(OK);
}

View File

@ -2,8 +2,6 @@
Copyright 1990 Regents of the University of California. All rights reserved.
Author: 1985 Thomas L. Quarles
**********/
/*
*/
#include "ngspice/ngspice.h"
#include "ccvsdefs.h"
@ -14,21 +12,22 @@ Author: 1985 Thomas L. Quarles
int
CCVSdelete(GENmodel *inModel, IFuid name, GENinstance **kill)
{
CCVSmodel *model = (CCVSmodel*)inModel;
CCVSinstance **fast = (CCVSinstance**)kill;
CCVSmodel *model = (CCVSmodel *) inModel;
CCVSinstance **fast = (CCVSinstance **) kill;
CCVSinstance **prev = NULL;
CCVSinstance *here;
for( ; model ; model = model->CCVSnextModel) {
for (; model; model = model->CCVSnextModel) {
prev = &(model->CCVSinstances);
for(here = *prev; here ; here = *prev) {
if(here->CCVSname == name || (fast && here==*fast) ) {
*prev= here->CCVSnextInstance;
for (here = *prev; here; here = *prev) {
if (here->CCVSname == name || (fast && here == *fast)) {
*prev = here->CCVSnextInstance;
FREE(here);
return(OK);
}
prev = &(here->CCVSnextInstance);
}
}
return(E_NODEV);
}

View File

@ -2,8 +2,6 @@
Copyright 1990 Regents of the University of California. All rights reserved.
Author: 1985 Thomas L. Quarles
**********/
/*
*/
#include "ngspice/ngspice.h"
#include "ccvsdefs.h"
@ -14,27 +12,28 @@ Author: 1985 Thomas L. Quarles
int
CCVSmDelete(GENmodel **inModel, IFuid modname, GENmodel *kill)
{
CCVSmodel **model = (CCVSmodel**)inModel;
CCVSmodel *modfast = (CCVSmodel*)kill;
CCVSmodel **model = (CCVSmodel **) inModel;
CCVSmodel *modfast = (CCVSmodel *) kill;
CCVSinstance *here;
CCVSinstance *prev = NULL;
CCVSmodel **oldmod;
oldmod = model;
for( ; *model ; model = &((*model)->CCVSnextModel)) {
if( (*model)->CCVSmodName == modname ||
(modfast && *model == modfast) ) goto delgot;
for (; *model; model = &((*model)->CCVSnextModel)) {
if ((*model)->CCVSmodName == modname ||
(modfast && *model == modfast)) goto delgot;
oldmod = model;
}
return(E_NOMOD);
delgot:
delgot:
*oldmod = (*model)->CCVSnextModel; /* cut deleted device out of list */
for(here = (*model)->CCVSinstances ; here ; here = here->CCVSnextInstance) {
if(prev) FREE(prev);
for (here = (*model)->CCVSinstances; here; here = here->CCVSnextInstance) {
if (prev) FREE(prev);
prev = here;
}
if(prev) FREE(prev);
if (prev) FREE(prev);
FREE(*model);
return(OK);
}

View File

@ -4,7 +4,6 @@ reserved.
Author: 1992 Charles Hough
**********/
#include "ngspice/ngspice.h"
#include "cpldefs.h"
#include "ngspice/sperror.h"
@ -14,21 +13,22 @@ Author: 1992 Charles Hough
int
CPLdelete(GENmodel *inModel, IFuid name, GENinstance **inst)
{
CPLmodel *model = (CPLmodel *)inModel;
CPLinstance **fast = (CPLinstance **)inst;
CPLmodel *model = (CPLmodel *) inModel;
CPLinstance **fast = (CPLinstance **) inst;
CPLinstance **prev = NULL;
CPLinstance *here;
for( ; model ; model = model->CPLnextModel) {
for (; model; model = model->CPLnextModel) {
prev = &(model->CPLinstances);
for(here = *prev; here ; here = *prev) {
if(here->CPLname == name || (fast && here==*fast) ) {
*prev= here->CPLnextInstance;
for (here = *prev; here; here = *prev) {
if (here->CPLname == name || (fast && here == *fast)) {
*prev = here->CPLnextInstance;
FREE(here);
return(OK);
}
prev = &(here->CPLnextInstance);
}
}
return(E_NODEV);
}

View File

@ -14,28 +14,28 @@ Author: 1992 Charles Hough
int
CPLmDelete(GENmodel **inModel, IFuid modname, GENmodel *kill)
{
CPLmodel **model = (CPLmodel **)inModel;
CPLmodel *modfast = (CPLmodel *)kill;
CPLmodel **model = (CPLmodel **) inModel;
CPLmodel *modfast = (CPLmodel *) kill;
CPLinstance *here;
CPLinstance *prev = NULL;
CPLmodel **oldmod;
oldmod = model;
for( ; *model ; model = &((*model)->CPLnextModel)) {
if( (*model)->CPLmodName == modname ||
(modfast && *model == modfast) ) goto delgot;
oldmod = model;
for (; *model; model = &((*model)->CPLnextModel)) {
if ((*model)->CPLmodName == modname ||
(modfast && *model == modfast)) goto delgot;
oldmod = model;
}
return(E_NOMOD);
delgot:
delgot:
*oldmod = (*model)->CPLnextModel; /* cut deleted device out of list */
for(here = (*model)->CPLinstances ; here ; here = here->CPLnextInstance) {
if(prev) FREE(prev);
for (here = (*model)->CPLinstances; here; here = here->CPLnextInstance) {
if (prev) FREE(prev);
prev = here;
}
if(prev) FREE(prev);
if (prev) FREE(prev);
FREE(*model);
return(OK);
}

View File

@ -2,8 +2,6 @@
Copyright 1990 Regents of the University of California. All rights reserved.
Author: 1985 Gordon Jacobs
**********/
/*
*/
#include "ngspice/ngspice.h"
#include "cswdefs.h"
@ -13,23 +11,23 @@ Author: 1985 Gordon Jacobs
int
CSWdelete(GENmodel *inModel, IFuid name, GENinstance **inst)
{
CSWmodel *model = (CSWmodel*)inModel;
CSWinstance **fast = (CSWinstance**)inst;
CSWmodel *model = (CSWmodel *) inModel;
CSWinstance **fast = (CSWinstance **) inst;
CSWinstance **prev = NULL;
CSWinstance *here;
for( ; model ; model = model->CSWnextModel) {
for (; model; model = model->CSWnextModel) {
prev = &(model->CSWinstances);
for(here = *prev; here ; here = *prev) {
if(here->CSWname == name || (fast && here==*fast) ) {
*prev= here->CSWnextInstance;
for (here = *prev; here; here = *prev) {
if (here->CSWname == name || (fast && here == *fast)) {
*prev = here->CSWnextInstance;
FREE(here);
return(OK);
}
prev = &(here->CSWnextInstance);
}
}
return(E_NODEV);
}

View File

@ -2,8 +2,6 @@
Copyright 1990 Regents of the University of California. All rights reserved.
Author: 1985 Gordon Jacobs
**********/
/*
*/
#include "ngspice/ngspice.h"
#include "cswdefs.h"
@ -14,27 +12,28 @@ Author: 1985 Gordon Jacobs
int
CSWmDelete(GENmodel **inModel, IFuid modname, GENmodel *kill)
{
CSWmodel **model = (CSWmodel**)inModel;
CSWmodel *modfast = (CSWmodel*)kill;
CSWmodel **model = (CSWmodel **) inModel;
CSWmodel *modfast = (CSWmodel *) kill;
CSWinstance *here;
CSWinstance *prev = NULL;
CSWmodel **oldmod;
oldmod = model;
for( ; *model ; model = &((*model)->CSWnextModel)) {
if( (*model)->CSWmodName == modname ||
(modfast && *model == modfast) ) goto delgot;
for (; *model; model = &((*model)->CSWnextModel)) {
if ((*model)->CSWmodName == modname ||
(modfast && *model == modfast)) goto delgot;
oldmod = model;
}
return(E_NOMOD);
delgot:
delgot:
*oldmod = (*model)->CSWnextModel; /* cut deleted device out of list */
for(here = (*model)->CSWinstances ; here ; here = here->CSWnextInstance) {
if(prev) FREE(prev);
for (here = (*model)->CSWinstances; here; here = here->CSWnextInstance) {
if (prev) FREE(prev);
prev = here;
}
if(prev) FREE(prev);
if (prev) FREE(prev);
FREE(*model);
return(OK);
}

View File

@ -2,8 +2,6 @@
Copyright 1990 Regents of the University of California. All rights reserved.
Author: 1985 Thomas L. Quarles
**********/
/*
*/
#include "ngspice/ngspice.h"
#include "diodefs.h"
@ -14,21 +12,22 @@ Author: 1985 Thomas L. Quarles
int
DIOdelete(GENmodel *inModel, IFuid name, GENinstance **kill)
{
DIOmodel *model = (DIOmodel*)inModel;
DIOinstance **fast = (DIOinstance**)kill;
DIOmodel *model = (DIOmodel *) inModel;
DIOinstance **fast = (DIOinstance **) kill;
DIOinstance **prev = NULL;
DIOinstance *here;
for( ; model ; model = model->DIOnextModel) {
for (; model; model = model->DIOnextModel) {
prev = &(model->DIOinstances);
for(here = *prev; here ; here = *prev) {
if(here->DIOname == name || (fast && here==*fast) ) {
*prev= here->DIOnextInstance;
for (here = *prev; here; here = *prev) {
if (here->DIOname == name || (fast && here == *fast)) {
*prev = here->DIOnextInstance;
FREE(here);
return(OK);
}
prev = &(here->DIOnextInstance);
}
}
return(E_NODEV);
}

View File

@ -2,8 +2,6 @@
Copyright 1990 Regents of the University of California. All rights reserved.
Author: 1985 Thomas L. Quarles
**********/
/*
*/
#include "ngspice/ngspice.h"
#include "diodefs.h"
@ -14,27 +12,28 @@ Author: 1985 Thomas L. Quarles
int
DIOmDelete(GENmodel **inModel, IFuid modname, GENmodel *kill)
{
DIOmodel **model = (DIOmodel**)inModel;
DIOmodel *modfast = (DIOmodel*)kill;
DIOmodel **model = (DIOmodel **) inModel;
DIOmodel *modfast = (DIOmodel *) kill;
DIOinstance *here;
DIOinstance *prev = NULL;
DIOmodel **oldmod;
oldmod = model;
for( ; *model ; model = &((*model)->DIOnextModel)) {
if( (*model)->DIOmodName == modname ||
(modfast && *model == modfast) ) goto delgot;
for (; *model; model = &((*model)->DIOnextModel)) {
if ((*model)->DIOmodName == modname ||
(modfast && *model == modfast)) goto delgot;
oldmod = model;
}
return(E_NOMOD);
delgot:
delgot:
*oldmod = (*model)->DIOnextModel; /* cut deleted device out of list */
for(here = (*model)->DIOinstances ; here ; here = here->DIOnextInstance) {
if(prev) FREE(prev);
for (here = (*model)->DIOinstances; here; here = here->DIOnextInstance) {
if (prev) FREE(prev);
prev = here;
}
if(prev) FREE(prev);
if (prev) FREE(prev);
FREE(*model);
return(OK);
}

View File

@ -2,9 +2,10 @@
Copyright 1990 Regents of the University of California. All rights reserved.
Author: 1985 S. Hwang
**********/
/*
Imported into hfeta model: Paolo Nenzi 2001
*/
Imported into hfeta model: Paolo Nenzi 2001
*/
#include "ngspice/ngspice.h"
#include "hfetdefs.h"
@ -15,21 +16,22 @@ Imported into hfeta model: Paolo Nenzi 2001
int
HFETAdelete(GENmodel *inModel, IFuid name, GENinstance **inst)
{
HFETAmodel *model = (HFETAmodel*)inModel;
HFETAinstance **fast = (HFETAinstance**)inst;
HFETAmodel *model = (HFETAmodel *) inModel;
HFETAinstance **fast = (HFETAinstance **) inst;
HFETAinstance **prev = NULL;
HFETAinstance *here;
for( ; model ; model = model->HFETAnextModel) {
for (; model; model = model->HFETAnextModel) {
prev = &(model->HFETAinstances);
for(here = *prev; here ; here = *prev) {
if(here->HFETAname == name || (fast && here==*fast) ) {
*prev= here->HFETAnextInstance;
for (here = *prev; here; here = *prev) {
if (here->HFETAname == name || (fast && here == *fast)) {
*prev = here->HFETAnextInstance;
FREE(here);
return(OK);
}
prev = &(here->HFETAnextInstance);
}
}
return(E_NODEV);
}

View File

@ -2,9 +2,10 @@
Copyright 1990 Regents of the University of California. All rights reserved.
Author: 1985 S. Hwang
**********/
/*
Imported into hfeta model: Paolo Nenzi 2001
*/
Imported into hfeta model: Paolo Nenzi 2001
*/
#include "ngspice/ngspice.h"
#include "hfetdefs.h"
@ -15,27 +16,28 @@ Imported into hfeta model: Paolo Nenzi 2001
int
HFETAmDelete(GENmodel **inModel, IFuid modname, GENmodel *kill)
{
HFETAmodel **model = (HFETAmodel**)inModel;
HFETAmodel *modfast = (HFETAmodel*)kill;
HFETAmodel **model = (HFETAmodel **) inModel;
HFETAmodel *modfast = (HFETAmodel *) kill;
HFETAinstance *here;
HFETAinstance *prev = NULL;
HFETAmodel **oldmod;
oldmod = model;
for( ; *model ; model = &((*model)->HFETAnextModel)) {
if( (*model)->HFETAmodName == modname ||
(modfast && *model == modfast) ) goto delgot;
for (; *model; model = &((*model)->HFETAnextModel)) {
if ((*model)->HFETAmodName == modname ||
(modfast && *model == modfast)) goto delgot;
oldmod = model;
}
return(E_NOMOD);
delgot:
delgot:
*oldmod = (*model)->HFETAnextModel; /* cut deleted device out of list */
for(here = (*model)->HFETAinstances ; here ; here = here->HFETAnextInstance) {
if(prev) FREE(prev);
for (here = (*model)->HFETAinstances; here; here = here->HFETAnextInstance) {
if (prev) FREE(prev);
prev = here;
}
if(prev) FREE(prev);
if (prev) FREE(prev);
FREE(*model);
return(OK);
}

View File

@ -2,9 +2,10 @@
Copyright 1990 Regents of the University of California. All rights reserved.
Author: 1985 S. Hwang
**********/
/*
Imported into hfet2 model: Paolo Nenzi 2001
*/
Imported into hfet2 model: Paolo Nenzi 2001
*/
#include "ngspice/ngspice.h"
#include "hfet2defs.h"
@ -15,21 +16,22 @@ Imported into hfet2 model: Paolo Nenzi 2001
int
HFET2delete(GENmodel *inModel, IFuid name, GENinstance **inst)
{
HFET2model *model = (HFET2model*)inModel;
HFET2instance **fast = (HFET2instance**)inst;
HFET2model *model = (HFET2model *) inModel;
HFET2instance **fast = (HFET2instance **) inst;
HFET2instance **prev = NULL;
HFET2instance *here;
for( ; model ; model = model->HFET2nextModel) {
for (; model; model = model->HFET2nextModel) {
prev = &(model->HFET2instances);
for(here = *prev; here ; here = *prev) {
if(here->HFET2name == name || (fast && here==*fast) ) {
*prev= here->HFET2nextInstance;
for (here = *prev; here; here = *prev) {
if (here->HFET2name == name || (fast && here == *fast)) {
*prev = here->HFET2nextInstance;
FREE(here);
return(OK);
}
prev = &(here->HFET2nextInstance);
}
}
return(E_NODEV);
}

View File

@ -2,9 +2,10 @@
Copyright 1990 Regents of the University of California. All rights reserved.
Author: 1985 S. Hwang
**********/
/*
Imported into hfet2 model: Paolo Nenzi 2001
*/
Imported into hfet2 model: Paolo Nenzi 2001
*/
#include "ngspice/ngspice.h"
#include "hfet2defs.h"
@ -15,27 +16,28 @@ Imported into hfet2 model: Paolo Nenzi 2001
int
HFET2mDelete(GENmodel **inModel, IFuid modname, GENmodel *kill)
{
HFET2model **model = (HFET2model**)inModel;
HFET2model *modfast = (HFET2model*)kill;
HFET2model **model = (HFET2model **) inModel;
HFET2model *modfast = (HFET2model *) kill;
HFET2instance *here;
HFET2instance *prev = NULL;
HFET2model **oldmod;
oldmod = model;
for( ; *model ; model = &((*model)->HFET2nextModel)) {
if( (*model)->HFET2modName == modname ||
(modfast && *model == modfast) ) goto delgot;
for (; *model; model = &((*model)->HFET2nextModel)) {
if ((*model)->HFET2modName == modname ||
(modfast && *model == modfast)) goto delgot;
oldmod = model;
}
return(E_NOMOD);
delgot:
delgot:
*oldmod = (*model)->HFET2nextModel; /* cut deleted device out of list */
for(here = (*model)->HFET2instances ; here ; here = here->HFET2nextInstance) {
if(prev) FREE(prev);
for (here = (*model)->HFET2instances; here; here = here->HFET2nextInstance) {
if (prev) FREE(prev);
prev = here;
}
if(prev) FREE(prev);
if (prev) FREE(prev);
FREE(*model);
return(OK);
}

View File

@ -5,12 +5,12 @@
MODEL NAME : HiSIM
( VERSION : 2 SUBVERSION : 8 REVISION : 0 )
FILE : hsm2del.c
Date : 2014.6.5
released by
released by
Hiroshima University &
Semiconductor Technology Academic Research Center (STARC)
***********************************************************************/
@ -31,8 +31,8 @@ support. Hiroshima University or STARC and its employees are not liable
for the condition or performance of the software.
Hiroshima University and STARC own the copyright and grant users a perpetual,
irrevocable, worldwide, non-exclusive, royalty-free license with respect
to the software as set forth below.
irrevocable, worldwide, non-exclusive, royalty-free license with respect
to the software as set forth below.
Hiroshima University and STARC hereby disclaim all implied warranties.
@ -60,26 +60,29 @@ to others."
#include "ngspice/gendefs.h"
#include "ngspice/suffix.h"
int HSM2delete(
GENmodel *inModel,
IFuid name,
GENinstance **inInst)
{
HSM2instance **fast = (HSM2instance**)inInst;
HSM2model *model = (HSM2model*)inModel;
HSM2instance **prev = NULL;
HSM2instance *here;
for( ;model ;model = model->HSM2nextModel ) {
prev = &(model->HSM2instances);
for ( here = *prev ;here ;here = *prev ) {
if ( here->HSM2name == name || (fast && here==*fast) ) {
*prev= here->HSM2nextInstance;
FREE(here);
return(OK);
}
prev = &(here->HSM2nextInstance);
int
HSM2delete(
GENmodel *inModel,
IFuid name,
GENinstance **inInst)
{
HSM2instance **fast = (HSM2instance **) inInst;
HSM2model *model = (HSM2model *) inModel;
HSM2instance **prev = NULL;
HSM2instance *here;
for (; model; model = model->HSM2nextModel) {
prev = &(model->HSM2instances);
for (here = *prev; here; here = *prev) {
if (here->HSM2name == name || (fast && here == *fast)) {
*prev = here->HSM2nextInstance;
FREE(here);
return(OK);
}
prev = &(here->HSM2nextInstance);
}
}
}
return(E_NODEV);
return(E_NODEV);
}

View File

@ -5,12 +5,12 @@
MODEL NAME : HiSIM
( VERSION : 2 SUBVERSION : 8 REVISION : 0 )
FILE : hsm2mdel.c
Date : 2014.6.5
released by
released by
Hiroshima University &
Semiconductor Technology Academic Research Center (STARC)
***********************************************************************/
@ -31,8 +31,8 @@ support. Hiroshima University or STARC and its employees are not liable
for the condition or performance of the software.
Hiroshima University and STARC own the copyright and grant users a perpetual,
irrevocable, worldwide, non-exclusive, royalty-free license with respect
to the software as set forth below.
irrevocable, worldwide, non-exclusive, royalty-free license with respect
to the software as set forth below.
Hiroshima University and STARC hereby disclaim all implied warranties.
@ -59,34 +59,36 @@ to others."
#include "ngspice/sperror.h"
#include "ngspice/suffix.h"
int HSM2mDelete(
GENmodel **inModel,
IFuid modname,
GENmodel *kill)
{
HSM2model **model = (HSM2model**)inModel;
HSM2model *modfast = (HSM2model*)kill;
HSM2instance *here;
HSM2instance *prev = NULL;
HSM2model **oldmod;
oldmod = model;
for ( ;*model ;model = &((*model)->HSM2nextModel) ) {
if ( (*model)->HSM2modName == modname ||
(modfast && *model == modfast) ) goto delgot;
int
HSM2mDelete(
GENmodel **inModel,
IFuid modname,
GENmodel *kill)
{
HSM2model **model = (HSM2model **) inModel;
HSM2model *modfast = (HSM2model *) kill;
HSM2instance *here;
HSM2instance *prev = NULL;
HSM2model **oldmod;
oldmod = model;
}
return(E_NOMOD);
for (; *model; model = &((*model)->HSM2nextModel)) {
if ((*model)->HSM2modName == modname ||
(modfast && *model == modfast)) goto delgot;
oldmod = model;
}
return(E_NOMOD);
delgot:
*oldmod = (*model)->HSM2nextModel; /* cut deleted device out of list */
for ( here = (*model)->HSM2instances ;
here ;here = here->HSM2nextInstance ) {
*oldmod = (*model)->HSM2nextModel; /* cut deleted device out of list */
for (here = (*model)->HSM2instances;
here; here = here->HSM2nextInstance) {
if (prev) FREE(prev);
prev = here;
}
if (prev) FREE(prev);
prev = here;
}
if (prev) FREE(prev);
FREE(*model);
return(OK);
FREE(*model);
return(OK);
}

View File

@ -3,14 +3,14 @@
HiSIM (Hiroshima University STARC IGFET Model)
Copyright (C) 2012 Hiroshima University & STARC
MODEL NAME : HiSIM_HV
MODEL NAME : HiSIM_HV
( VERSION : 1 SUBVERSION : 2 REVISION : 4 )
Model Parameter VERSION : 1.23
FILE : hsmhvdel.c
DATE : 2013.04.30
released by
released by
Hiroshima University &
Semiconductor Technology Academic Research Center (STARC)
***********************************************************************/
@ -21,26 +21,29 @@
#include "ngspice/gendefs.h"
#include "ngspice/suffix.h"
int HSMHVdelete(
GENmodel *inModel,
IFuid name,
GENinstance **inInst)
{
HSMHVinstance **fast = (HSMHVinstance**)inInst;
HSMHVmodel *model = (HSMHVmodel*)inModel;
HSMHVinstance **prev = NULL;
HSMHVinstance *here;
for( ;model ;model = model->HSMHVnextModel ) {
prev = &(model->HSMHVinstances);
for ( here = *prev ;here ;here = *prev ) {
if ( here->HSMHVname == name || (fast && here==*fast) ) {
*prev= here->HSMHVnextInstance;
FREE(here);
return(OK);
}
prev = &(here->HSMHVnextInstance);
int
HSMHVdelete(
GENmodel *inModel,
IFuid name,
GENinstance **inInst)
{
HSMHVinstance **fast = (HSMHVinstance **) inInst;
HSMHVmodel *model = (HSMHVmodel *) inModel;
HSMHVinstance **prev = NULL;
HSMHVinstance *here;
for (; model; model = model->HSMHVnextModel) {
prev = &(model->HSMHVinstances);
for (here = *prev; here; here = *prev) {
if (here->HSMHVname == name || (fast && here == *fast)) {
*prev = here->HSMHVnextInstance;
FREE(here);
return(OK);
}
prev = &(here->HSMHVnextInstance);
}
}
}
return(E_NODEV);
return(E_NODEV);
}

View File

@ -3,14 +3,14 @@
HiSIM (Hiroshima University STARC IGFET Model)
Copyright (C) 2012 Hiroshima University & STARC
MODEL NAME : HiSIM_HV
MODEL NAME : HiSIM_HV
( VERSION : 1 SUBVERSION : 2 REVISION : 4 )
Model Parameter VERSION : 1.23
FILE : hsmhvmdel.c
DATE : 2013.04.30
released by
released by
Hiroshima University &
Semiconductor Technology Academic Research Center (STARC)
***********************************************************************/
@ -20,34 +20,36 @@
#include "ngspice/sperror.h"
#include "ngspice/suffix.h"
int HSMHVmDelete(
GENmodel **inModel,
IFuid modname,
GENmodel *kill)
{
HSMHVmodel **model = (HSMHVmodel**)inModel;
HSMHVmodel *modfast = (HSMHVmodel*)kill;
HSMHVinstance *here;
HSMHVinstance *prev = NULL;
HSMHVmodel **oldmod;
oldmod = model;
for ( ;*model ;model = &((*model)->HSMHVnextModel) ) {
if ( (*model)->HSMHVmodName == modname ||
(modfast && *model == modfast) ) goto delgot;
int
HSMHVmDelete(
GENmodel **inModel,
IFuid modname,
GENmodel *kill)
{
HSMHVmodel **model = (HSMHVmodel **) inModel;
HSMHVmodel *modfast = (HSMHVmodel *) kill;
HSMHVinstance *here;
HSMHVinstance *prev = NULL;
HSMHVmodel **oldmod;
oldmod = model;
}
return(E_NOMOD);
for (; *model; model = &((*model)->HSMHVnextModel)) {
if ((*model)->HSMHVmodName == modname ||
(modfast && *model == modfast)) goto delgot;
oldmod = model;
}
return(E_NOMOD);
delgot:
*oldmod = (*model)->HSMHVnextModel; /* cut deleted device out of list */
for ( here = (*model)->HSMHVinstances ;
here ;here = here->HSMHVnextInstance ) {
*oldmod = (*model)->HSMHVnextModel; /* cut deleted device out of list */
for (here = (*model)->HSMHVinstances;
here; here = here->HSMHVnextInstance) {
if (prev) FREE(prev);
prev = here;
}
if (prev) FREE(prev);
prev = here;
}
if (prev) FREE(prev);
FREE(*model);
return(OK);
FREE(*model);
return(OK);
}

View File

@ -3,14 +3,14 @@
HiSIM (Hiroshima University STARC IGFET Model)
Copyright (C) 2014 Hiroshima University & STARC
MODEL NAME : HiSIM_HV
( VERSION : 2 SUBVERSION : 2 REVISION : 0 )
MODEL NAME : HiSIM_HV
( VERSION : 2 SUBVERSION : 2 REVISION : 0 )
Model Parameter 'VERSION' : 2.20
FILE : hsmhvdel.c
DATE : 2014.6.11
released by
released by
Hiroshima University &
Semiconductor Technology Academic Research Center (STARC)
***********************************************************************/
@ -31,8 +31,8 @@ support. Hiroshima University or STARC and its employees are not liable
for the condition or performance of the software.
Hiroshima University and STARC own the copyright and grant users a perpetual,
irrevocable, worldwide, non-exclusive, royalty-free license with respect
to the software as set forth below.
irrevocable, worldwide, non-exclusive, royalty-free license with respect
to the software as set forth below.
Hiroshima University and STARC hereby disclaims all implied warranties.
@ -54,7 +54,7 @@ to others."
Toshimasa Asahara, President, Hiroshima University
Mitiko Miura-Mattausch, Professor, Hiroshima University
Katsuhiro Shimohigashi, President&CEO, STARC
June 2008 (revised October 2011)
June 2008 (revised October 2011)
*************************************************************************/
#include "ngspice/ngspice.h"
@ -63,26 +63,29 @@ June 2008 (revised October 2011)
#include "ngspice/gendefs.h"
#include "ngspice/suffix.h"
int HSMHV2delete(
GENmodel *inModel,
IFuid name,
GENinstance **inInst)
{
HSMHV2instance **fast = (HSMHV2instance**)inInst;
HSMHV2model *model = (HSMHV2model*)inModel;
HSMHV2instance **prev = NULL;
HSMHV2instance *here;
for( ;model ;model = model->HSMHV2nextModel ) {
prev = &(model->HSMHV2instances);
for ( here = *prev ;here ;here = *prev ) {
if ( here->HSMHV2name == name || (fast && here==*fast) ) {
*prev= here->HSMHV2nextInstance;
FREE(here);
return(OK);
}
prev = &(here->HSMHV2nextInstance);
int
HSMHV2delete(
GENmodel *inModel,
IFuid name,
GENinstance **inInst)
{
HSMHV2instance **fast = (HSMHV2instance **) inInst;
HSMHV2model *model = (HSMHV2model *) inModel;
HSMHV2instance **prev = NULL;
HSMHV2instance *here;
for (; model; model = model->HSMHV2nextModel) {
prev = &(model->HSMHV2instances);
for (here = *prev; here; here = *prev) {
if (here->HSMHV2name == name || (fast && here == *fast)) {
*prev = here->HSMHV2nextInstance;
FREE(here);
return(OK);
}
prev = &(here->HSMHV2nextInstance);
}
}
}
return(E_NODEV);
return(E_NODEV);
}

View File

@ -3,14 +3,14 @@
HiSIM (Hiroshima University STARC IGFET Model)
Copyright (C) 2014 Hiroshima University & STARC
MODEL NAME : HiSIM_HV
( VERSION : 2 SUBVERSION : 2 REVISION : 0 )
MODEL NAME : HiSIM_HV
( VERSION : 2 SUBVERSION : 2 REVISION : 0 )
Model Parameter 'VERSION' : 2.20
FILE : hsmhvmdel.c
DATE : 2014.6.11
released by
released by
Hiroshima University &
Semiconductor Technology Academic Research Center (STARC)
***********************************************************************/
@ -31,8 +31,8 @@ support. Hiroshima University or STARC and its employees are not liable
for the condition or performance of the software.
Hiroshima University and STARC own the copyright and grant users a perpetual,
irrevocable, worldwide, non-exclusive, royalty-free license with respect
to the software as set forth below.
irrevocable, worldwide, non-exclusive, royalty-free license with respect
to the software as set forth below.
Hiroshima University and STARC hereby disclaims all implied warranties.
@ -54,7 +54,7 @@ to others."
Toshimasa Asahara, President, Hiroshima University
Mitiko Miura-Mattausch, Professor, Hiroshima University
Katsuhiro Shimohigashi, President&CEO, STARC
June 2008 (revised October 2011)
June 2008 (revised October 2011)
*************************************************************************/
#include "ngspice/ngspice.h"
@ -62,34 +62,36 @@ June 2008 (revised October 2011)
#include "ngspice/sperror.h"
#include "ngspice/suffix.h"
int HSMHV2mDelete(
GENmodel **inModel,
IFuid modname,
GENmodel *kill)
{
HSMHV2model **model = (HSMHV2model**)inModel;
HSMHV2model *modfast = (HSMHV2model*)kill;
HSMHV2instance *here;
HSMHV2instance *prev = NULL;
HSMHV2model **oldmod;
oldmod = model;
for ( ;*model ;model = &((*model)->HSMHV2nextModel) ) {
if ( (*model)->HSMHV2modName == modname ||
(modfast && *model == modfast) ) goto delgot;
int
HSMHV2mDelete(
GENmodel **inModel,
IFuid modname,
GENmodel *kill)
{
HSMHV2model **model = (HSMHV2model **) inModel;
HSMHV2model *modfast = (HSMHV2model *) kill;
HSMHV2instance *here;
HSMHV2instance *prev = NULL;
HSMHV2model **oldmod;
oldmod = model;
}
return(E_NOMOD);
for (; *model; model = &((*model)->HSMHV2nextModel)) {
if ((*model)->HSMHV2modName == modname ||
(modfast && *model == modfast)) goto delgot;
oldmod = model;
}
return(E_NOMOD);
delgot:
*oldmod = (*model)->HSMHV2nextModel; /* cut deleted device out of list */
for ( here = (*model)->HSMHV2instances ;
here ;here = here->HSMHV2nextInstance ) {
*oldmod = (*model)->HSMHV2nextModel; /* cut deleted device out of list */
for (here = (*model)->HSMHV2instances;
here; here = here->HSMHV2nextInstance) {
if (prev) FREE(prev);
prev = here;
}
if (prev) FREE(prev);
prev = here;
}
if (prev) FREE(prev);
FREE(*model);
return(OK);
FREE(*model);
return(OK);
}

View File

@ -2,8 +2,6 @@
Copyright 1990 Regents of the University of California. All rights reserved.
Author: 1985 Thomas L. Quarles
**********/
/*
*/
#include "ngspice/ngspice.h"
#include "inddefs.h"
@ -14,21 +12,22 @@ Author: 1985 Thomas L. Quarles
int
INDdelete(GENmodel *inModel, IFuid name, GENinstance **kill)
{
INDmodel *model = (INDmodel*)inModel;
INDinstance **fast = (INDinstance**)kill;
INDmodel *model = (INDmodel *) inModel;
INDinstance **fast = (INDinstance **) kill;
INDinstance **prev = NULL;
INDinstance *here;
for( ; model ; model = model->INDnextModel) {
for (; model; model = model->INDnextModel) {
prev = &(model->INDinstances);
for(here = *prev; here ; here = *prev) {
if(here->INDname == name || (fast && here==*fast) ) {
*prev= here->INDnextInstance;
for (here = *prev; here; here = *prev) {
if (here->INDname == name || (fast && here == *fast)) {
*prev = here->INDnextInstance;
FREE(here);
return(OK);
}
prev = &(here->INDnextInstance);
}
}
return(E_NODEV);
}

View File

@ -2,8 +2,6 @@
Copyright 1990 Regents of the University of California. All rights reserved.
Author: 1985 Thomas L. Quarles
**********/
/*
*/
#include "ngspice/ngspice.h"
#include "inddefs.h"
@ -14,27 +12,28 @@ Author: 1985 Thomas L. Quarles
int
INDmDelete(GENmodel **inModel, IFuid modname, GENmodel *kill)
{
INDmodel **model = (INDmodel**)inModel;
INDmodel *modfast = (INDmodel*)kill;
INDmodel **model = (INDmodel **) inModel;
INDmodel *modfast = (INDmodel *) kill;
INDinstance *here;
INDinstance *prev = NULL;
INDmodel **oldmod;
oldmod = model;
for( ; *model ; model = &((*model)->INDnextModel)) {
if( (*model)->INDmodName == modname ||
(modfast && *model == modfast) ) goto delgot;
for (; *model; model = &((*model)->INDnextModel)) {
if ((*model)->INDmodName == modname ||
(modfast && *model == modfast)) goto delgot;
oldmod = model;
}
return(E_NOMOD);
delgot:
delgot:
*oldmod = (*model)->INDnextModel; /* cut deleted device out of list */
for(here = (*model)->INDinstances ; here ; here = here->INDnextInstance) {
if(prev) FREE(prev);
for (here = (*model)->INDinstances; here; here = here->INDnextInstance) {
if (prev) FREE(prev);
prev = here;
}
if(prev) FREE(prev);
if (prev) FREE(prev);
FREE(*model);
return(OK);
}

View File

@ -2,8 +2,6 @@
Copyright 1990 Regents of the University of California. All rights reserved.
Author: 1985 Thomas L. Quarles
**********/
/*
*/
#include "ngspice/ngspice.h"
#include "inddefs.h"
@ -15,22 +13,23 @@ Author: 1985 Thomas L. Quarles
int
MUTdelete(GENmodel *inModel, IFuid name, GENinstance **kill)
{
MUTmodel *model = (MUTmodel*)inModel;
MUTinstance **fast = (MUTinstance**)kill;
MUTmodel *model = (MUTmodel *) inModel;
MUTinstance **fast = (MUTinstance **) kill;
MUTinstance **prev = NULL;
MUTinstance *here;
for( ; model ; model = model->MUTnextModel) {
for (; model; model = model->MUTnextModel) {
prev = &(model->MUTinstances);
for(here = *prev; here ; here = *prev) {
if(here->MUTname == name || (fast && here==*fast) ) {
*prev= here->MUTnextInstance;
for (here = *prev; here; here = *prev) {
if (here->MUTname == name || (fast && here == *fast)) {
*prev = here->MUTnextInstance;
FREE(here);
return(OK);
}
prev = &(here->MUTnextInstance);
}
}
return(E_NODEV);
}
#endif /*MUTUAL*/

View File

@ -2,8 +2,6 @@
Copyright 1990 Regents of the University of California. All rights reserved.
Author: 1985 Thomas L. Quarles
**********/
/*
*/
#include "ngspice/ngspice.h"
#include "inddefs.h"
@ -15,28 +13,29 @@ Author: 1985 Thomas L. Quarles
int
MUTmDelete(GENmodel **inModel, IFuid modname, GENmodel *kill)
{
MUTmodel **model = (MUTmodel**)inModel;
MUTmodel *modfast = (MUTmodel*)kill;
MUTmodel **model = (MUTmodel **) inModel;
MUTmodel *modfast = (MUTmodel *) kill;
MUTinstance *here;
MUTinstance *prev = NULL;
MUTmodel **oldmod;
oldmod = model;
for( ; *model ; model = &((*model)->MUTnextModel)) {
if( (*model)->MUTmodName == modname ||
(modfast && *model == modfast) ) goto delgot;
for (; *model; model = &((*model)->MUTnextModel)) {
if ((*model)->MUTmodName == modname ||
(modfast && *model == modfast)) goto delgot;
oldmod = model;
}
return(E_NOMOD);
delgot:
delgot:
*oldmod = (*model)->MUTnextModel; /* cut deleted device out of list */
for(here = (*model)->MUTinstances ; here ; here = here->MUTnextInstance) {
if(prev) FREE(prev);
for (here = (*model)->MUTinstances; here; here = here->MUTnextInstance) {
if (prev) FREE(prev);
prev = here;
}
if(prev) FREE(prev);
if (prev) FREE(prev);
FREE(*model);
return(OK);
}
#endif /* MUTUAL */

View File

@ -2,8 +2,6 @@
Copyright 1990 Regents of the University of California. All rights reserved.
Author: 1985 Thomas L. Quarles
**********/
/*
*/
#include "ngspice/ngspice.h"
#include "isrcdefs.h"
@ -19,16 +17,17 @@ ISRCdelete(GENmodel *inModel, IFuid name, GENinstance **inst)
ISRCinstance **prev = NULL;
ISRCinstance *here;
for( ; model ; model = model->ISRCnextModel) {
for (; model; model = model->ISRCnextModel) {
prev = &(model->ISRCinstances);
for(here = *prev; here ; here = *prev) {
if(here->ISRCname == name || (fast && here==*fast) ) {
*prev= here->ISRCnextInstance;
for (here = *prev; here; here = *prev) {
if (here->ISRCname == name || (fast && here == *fast)) {
*prev = here->ISRCnextInstance;
FREE(here);
return(OK);
}
prev = &(here->ISRCnextInstance);
}
}
return(E_NODEV);
}

View File

@ -2,8 +2,6 @@
Copyright 1990 Regents of the University of California. All rights reserved.
Author: 1985 Thomas L. Quarles
**********/
/*
*/
#include "ngspice/ngspice.h"
#include "isrcdefs.h"
@ -19,22 +17,23 @@ ISRCmDelete(GENmodel **inModel, IFuid modname, GENmodel *fast)
ISRCinstance *here;
ISRCinstance *prev = NULL;
ISRCmodel **oldmod;
oldmod = model;
for( ; *model ; model = &((*model)->ISRCnextModel)) {
if( (*model)->ISRCmodName == modname ||
(modfast && *model == modfast) ) goto delgot;
for (; *model; model = &((*model)->ISRCnextModel)) {
if ((*model)->ISRCmodName == modname ||
(modfast && *model == modfast)) goto delgot;
oldmod = model;
}
return(E_NOMOD);
delgot:
delgot:
*oldmod = (*model)->ISRCnextModel; /* cut deleted device out of list */
for(here = (*model)->ISRCinstances ; here ; here = here->ISRCnextInstance) {
if(prev) FREE(prev);
for (here = (*model)->ISRCinstances; here; here = here->ISRCnextInstance) {
if (prev) FREE(prev);
prev = here;
}
if(prev) FREE(prev);
if (prev) FREE(prev);
FREE(*model);
return(OK);
}

View File

@ -2,8 +2,6 @@
Copyright 1990 Regents of the University of California. All rights reserved.
Author: 1985 Thomas L. Quarles
**********/
/*
*/
#include "ngspice/ngspice.h"
#include "jfetdefs.h"
@ -14,21 +12,22 @@ Author: 1985 Thomas L. Quarles
int
JFETdelete(GENmodel *inModel, IFuid name, GENinstance **inst)
{
JFETmodel *model = (JFETmodel*)inModel;
JFETinstance **fast = (JFETinstance**)inst;
JFETmodel *model = (JFETmodel *) inModel;
JFETinstance **fast = (JFETinstance **) inst;
JFETinstance **prev = NULL;
JFETinstance *here;
for( ; model ; model = model->JFETnextModel) {
for (; model; model = model->JFETnextModel) {
prev = &(model->JFETinstances);
for(here = *prev; here ; here = *prev) {
if(here->JFETname == name || (fast && here==*fast) ) {
*prev= here->JFETnextInstance;
for (here = *prev; here; here = *prev) {
if (here->JFETname == name || (fast && here == *fast)) {
*prev = here->JFETnextInstance;
FREE(here);
return(OK);
}
prev = &(here->JFETnextInstance);
}
}
return(E_NODEV);
}

View File

@ -2,8 +2,6 @@
Copyright 1990 Regents of the University of California. All rights reserved.
Author: 1985 Thomas L. Quarles
**********/
/*
*/
#include "ngspice/ngspice.h"
#include "jfetdefs.h"
@ -14,27 +12,28 @@ Author: 1985 Thomas L. Quarles
int
JFETmDelete(GENmodel **inModel, IFuid modname, GENmodel *kill)
{
JFETmodel **model = (JFETmodel**)inModel;
JFETmodel *modfast = (JFETmodel*)kill;
JFETmodel **model = (JFETmodel **) inModel;
JFETmodel *modfast = (JFETmodel *) kill;
JFETinstance *here;
JFETinstance *prev = NULL;
JFETmodel **oldmod;
oldmod = model;
for( ; *model ; model = &((*model)->JFETnextModel)) {
if( (*model)->JFETmodName == modname ||
(modfast && *model == modfast) ) goto delgot;
for (; *model; model = &((*model)->JFETnextModel)) {
if ((*model)->JFETmodName == modname ||
(modfast && *model == modfast)) goto delgot;
oldmod = model;
}
return(E_NOMOD);
delgot:
delgot:
*oldmod = (*model)->JFETnextModel; /* cut deleted device out of list */
for(here = (*model)->JFETinstances ; here ; here = here->JFETnextInstance) {
if(prev) FREE(prev);
for (here = (*model)->JFETinstances; here; here = here->JFETnextInstance) {
if (prev) FREE(prev);
prev = here;
}
if(prev) FREE(prev);
if (prev) FREE(prev);
FREE(*model);
return(OK);
}

View File

@ -16,21 +16,22 @@ Modified to jfet2 for PS model definition ( Anthony E. Parker )
int
JFET2delete(GENmodel *inModel, IFuid name, GENinstance **inst)
{
JFET2model *model = (JFET2model*)inModel;
JFET2instance **fast = (JFET2instance**)inst;
JFET2model *model = (JFET2model *) inModel;
JFET2instance **fast = (JFET2instance **) inst;
JFET2instance **prev = NULL;
JFET2instance *here;
for( ; model ; model = model->JFET2nextModel) {
for (; model; model = model->JFET2nextModel) {
prev = &(model->JFET2instances);
for(here = *prev; here ; here = *prev) {
if(here->JFET2name == name || (fast && here==*fast) ) {
*prev= here->JFET2nextInstance;
for (here = *prev; here; here = *prev) {
if (here->JFET2name == name || (fast && here == *fast)) {
*prev = here->JFET2nextInstance;
FREE(here);
return(OK);
}
prev = &(here->JFET2nextInstance);
}
}
return(E_NODEV);
}

View File

@ -6,8 +6,6 @@ Author: 1985 Thomas L. Quarles
Modified to jfet2 for PS model definition ( Anthony E. Parker )
Copyright 1994 Macquarie University, Sydney Australia.
**********/
/*
*/
#include "ngspice/ngspice.h"
#include "jfet2defs.h"
@ -18,27 +16,28 @@ Modified to jfet2 for PS model definition ( Anthony E. Parker )
int
JFET2mDelete(GENmodel **inModel, IFuid modname, GENmodel *kill)
{
JFET2model **model = (JFET2model**)inModel;
JFET2model *modfast = (JFET2model*)kill;
JFET2model **model = (JFET2model **) inModel;
JFET2model *modfast = (JFET2model *) kill;
JFET2instance *here;
JFET2instance *prev = NULL;
JFET2model **oldmod;
oldmod = model;
for( ; *model ; model = &((*model)->JFET2nextModel)) {
if( (*model)->JFET2modName == modname ||
(modfast && *model == modfast) ) goto delgot;
for (; *model; model = &((*model)->JFET2nextModel)) {
if ((*model)->JFET2modName == modname ||
(modfast && *model == modfast)) goto delgot;
oldmod = model;
}
return(E_NOMOD);
delgot:
delgot:
*oldmod = (*model)->JFET2nextModel; /* cut deleted device out of list */
for(here = (*model)->JFET2instances ; here ; here = here->JFET2nextInstance) {
if(prev) FREE(prev);
for (here = (*model)->JFET2instances; here; here = here->JFET2nextInstance) {
if (prev) FREE(prev);
prev = here;
}
if(prev) FREE(prev);
if (prev) FREE(prev);
FREE(*model);
return(OK);
}

View File

@ -8,24 +8,26 @@ Author: 1990 Jaijeet S. Roychowdhury
#include "ngspice/sperror.h"
#include "ngspice/suffix.h"
int
LTRAdelete(GENmodel *inModel, IFuid name, GENinstance **kill)
{
LTRAinstance **fast = (LTRAinstance **) kill;
LTRAmodel *model = (LTRAmodel *) inModel;
LTRAinstance **prev = NULL;
LTRAinstance *here;
LTRAinstance **fast = (LTRAinstance **) kill;
LTRAmodel *model = (LTRAmodel *) inModel;
LTRAinstance **prev = NULL;
LTRAinstance *here;
for (; model; model = model->LTRAnextModel) {
prev = &(model->LTRAinstances);
for (here = *prev; here; here = *prev) {
if (here->LTRAname == name || (fast && here == *fast)) {
*prev = here->LTRAnextInstance;
FREE(here);
return (OK);
}
prev = &(here->LTRAnextInstance);
for (; model; model = model->LTRAnextModel) {
prev = &(model->LTRAinstances);
for (here = *prev; here; here = *prev) {
if (here->LTRAname == name || (fast && here == *fast)) {
*prev = here->LTRAnextInstance;
FREE(here);
return(OK);
}
prev = &(here->LTRAnextInstance);
}
}
}
return (E_NODEV);
return(E_NODEV);
}

View File

@ -8,33 +8,35 @@ Author: 1990 Jaijeet S. Roychowdhury
#include "ngspice/sperror.h"
#include "ngspice/suffix.h"
int
LTRAmDelete(GENmodel **inModel, IFuid modname, GENmodel *kill)
{
LTRAmodel **model = (LTRAmodel **) inModel;
LTRAmodel *modfast = (LTRAmodel *) kill;
LTRAinstance *here;
LTRAinstance *prev = NULL;
LTRAmodel **oldmod;
oldmod = model;
for (; *model; model = &((*model)->LTRAnextModel)) {
if ((*model)->LTRAmodName == modname ||
(modfast && *model == modfast))
goto delgot;
LTRAmodel **model = (LTRAmodel **) inModel;
LTRAmodel *modfast = (LTRAmodel *) kill;
LTRAinstance *here;
LTRAinstance *prev = NULL;
LTRAmodel **oldmod;
oldmod = model;
}
return (E_NOMOD);
for (; *model; model = &((*model)->LTRAnextModel)) {
if ((*model)->LTRAmodName == modname ||
(modfast && *model == modfast))
goto delgot;
oldmod = model;
}
delgot:
*oldmod = (*model)->LTRAnextModel; /* cut deleted device out of list */
for (here = (*model)->LTRAinstances; here; here = here->LTRAnextInstance) {
return(E_NOMOD);
delgot:
*oldmod = (*model)->LTRAnextModel; /* cut deleted device out of list */
for (here = (*model)->LTRAinstances; here; here = here->LTRAnextInstance) {
if (prev)
FREE(prev);
prev = here;
}
if (prev)
FREE(prev);
prev = here;
}
if (prev)
FREE(prev);
FREE(*model);
return (OK);
FREE(prev);
FREE(*model);
return(OK);
}

View File

@ -2,8 +2,6 @@
Copyright 1990 Regents of the University of California. All rights reserved.
Author: 1985 S. Hwang
**********/
/*
*/
#include "ngspice/ngspice.h"
#include "mesdefs.h"
@ -14,21 +12,22 @@ Author: 1985 S. Hwang
int
MESdelete(GENmodel *inModel, IFuid name, GENinstance **inst)
{
MESmodel *model = (MESmodel*)inModel;
MESinstance **fast = (MESinstance**)inst;
MESmodel *model = (MESmodel *) inModel;
MESinstance **fast = (MESinstance **) inst;
MESinstance **prev = NULL;
MESinstance *here;
for( ; model ; model = model->MESnextModel) {
for (; model; model = model->MESnextModel) {
prev = &(model->MESinstances);
for(here = *prev; here ; here = *prev) {
if(here->MESname == name || (fast && here==*fast) ) {
*prev= here->MESnextInstance;
for (here = *prev; here; here = *prev) {
if (here->MESname == name || (fast && here == *fast)) {
*prev = here->MESnextInstance;
FREE(here);
return(OK);
}
prev = &(here->MESnextInstance);
}
}
return(E_NODEV);
}

View File

@ -2,8 +2,6 @@
Copyright 1990 Regents of the University of California. All rights reserved.
Author: 1985 S. Hwang
**********/
/*
*/
#include "ngspice/ngspice.h"
#include "mesdefs.h"
@ -14,27 +12,28 @@ Author: 1985 S. Hwang
int
MESmDelete(GENmodel **inModel, IFuid modname, GENmodel *kill)
{
MESmodel **model = (MESmodel**)inModel;
MESmodel *modfast = (MESmodel*)kill;
MESmodel **model = (MESmodel **) inModel;
MESmodel *modfast = (MESmodel *) kill;
MESinstance *here;
MESinstance *prev = NULL;
MESmodel **oldmod;
oldmod = model;
for( ; *model ; model = &((*model)->MESnextModel)) {
if( (*model)->MESmodName == modname ||
(modfast && *model == modfast) ) goto delgot;
for (; *model; model = &((*model)->MESnextModel)) {
if ((*model)->MESmodName == modname ||
(modfast && *model == modfast)) goto delgot;
oldmod = model;
}
return(E_NOMOD);
delgot:
delgot:
*oldmod = (*model)->MESnextModel; /* cut deleted device out of list */
for(here = (*model)->MESinstances ; here ; here = here->MESnextInstance) {
if(prev) FREE(prev);
for (here = (*model)->MESinstances; here; here = here->MESnextInstance) {
if (prev) FREE(prev);
prev = here;
}
if(prev) FREE(prev);
if (prev) FREE(prev);
FREE(*model);
return(OK);
}

View File

@ -2,9 +2,10 @@
Copyright 1990 Regents of the University of California. All rights reserved.
Author: 1985 S. Hwang
**********/
/*
Imported into mesa model: 2001 Paolo Nenzi
*/
Imported into mesa model: 2001 Paolo Nenzi
*/
#include "ngspice/ngspice.h"
#include "mesadefs.h"
@ -15,21 +16,22 @@ Imported into mesa model: 2001 Paolo Nenzi
int
MESAdelete(GENmodel *inModel, IFuid name, GENinstance **inst)
{
MESAmodel *model = (MESAmodel*)inModel;
MESAinstance **fast = (MESAinstance**)inst;
MESAmodel *model = (MESAmodel *) inModel;
MESAinstance **fast = (MESAinstance **) inst;
MESAinstance **prev = NULL;
MESAinstance *here;
for( ; model ; model = model->MESAnextModel) {
for (; model; model = model->MESAnextModel) {
prev = &(model->MESAinstances);
for(here = *prev; here ; here = *prev) {
if(here->MESAname == name || (fast && here==*fast) ) {
*prev= here->MESAnextInstance;
for (here = *prev; here; here = *prev) {
if (here->MESAname == name || (fast && here == *fast)) {
*prev = here->MESAnextInstance;
FREE(here);
return(OK);
}
prev = &(here->MESAnextInstance);
}
}
return(E_NODEV);
}

View File

@ -2,9 +2,10 @@
Copyright 1990 Regents of the University of California. All rights reserved.
Author: 1985 S. Hwang
**********/
/*
Imported into mesa model: 2001 Paolo Nenzi
*/
Imported into mesa model: 2001 Paolo Nenzi
*/
#include "ngspice/ngspice.h"
#include "mesadefs.h"
@ -15,27 +16,28 @@ Author: 1985 S. Hwang
int
MESAmDelete(GENmodel **inModel, IFuid modname, GENmodel *kill)
{
MESAmodel **model = (MESAmodel**)inModel;
MESAmodel *modfast = (MESAmodel*)kill;
MESAmodel **model = (MESAmodel **) inModel;
MESAmodel *modfast = (MESAmodel *) kill;
MESAinstance *here;
MESAinstance *prev = NULL;
MESAmodel **oldmod;
oldmod = model;
for( ; *model ; model = &((*model)->MESAnextModel)) {
if( (*model)->MESAmodName == modname ||
(modfast && *model == modfast) ) goto delgot;
for (; *model; model = &((*model)->MESAnextModel)) {
if ((*model)->MESAmodName == modname ||
(modfast && *model == modfast)) goto delgot;
oldmod = model;
}
return(E_NOMOD);
delgot:
delgot:
*oldmod = (*model)->MESAnextModel; /* cut deleted device out of list */
for(here = (*model)->MESAinstances ; here ; here = here->MESAnextInstance) {
if(prev) FREE(prev);
for (here = (*model)->MESAinstances; here; here = here->MESAnextInstance) {
if (prev) FREE(prev);
prev = here;
}
if(prev) FREE(prev);
if (prev) FREE(prev);
FREE(*model);
return(OK);
}

View File

@ -2,8 +2,6 @@
Copyright 1990 Regents of the University of California. All rights reserved.
Author: 1985 Thomas L. Quarles
**********/
/*
*/
#include "ngspice/ngspice.h"
#include "mos1defs.h"
@ -14,21 +12,22 @@ Author: 1985 Thomas L. Quarles
int
MOS1delete(GENmodel *inModel, IFuid name, GENinstance **inst)
{
MOS1model *model = (MOS1model *)inModel;
MOS1instance **fast = (MOS1instance **)inst;
MOS1model *model = (MOS1model *) inModel;
MOS1instance **fast = (MOS1instance **) inst;
MOS1instance **prev = NULL;
MOS1instance *here;
for( ; model ; model = model->MOS1nextModel) {
for (; model; model = model->MOS1nextModel) {
prev = &(model->MOS1instances);
for(here = *prev; here ; here = *prev) {
if(here->MOS1name == name || (fast && here==*fast) ) {
*prev= here->MOS1nextInstance;
for (here = *prev; here; here = *prev) {
if (here->MOS1name == name || (fast && here == *fast)) {
*prev = here->MOS1nextInstance;
FREE(here);
return(OK);
}
prev = &(here->MOS1nextInstance);
}
}
return(E_NODEV);
}

View File

@ -2,8 +2,6 @@
Copyright 1990 Regents of the University of California. All rights reserved.
Author: 1985 Thomas L. Quarles
**********/
/*
*/
#include "ngspice/ngspice.h"
#include "mos1defs.h"
@ -14,27 +12,28 @@ Author: 1985 Thomas L. Quarles
int
MOS1mDelete(GENmodel **inModel, IFuid modname, GENmodel *kill)
{
MOS1model **model = (MOS1model **)inModel;
MOS1model *modfast = (MOS1model *)kill;
MOS1model **model = (MOS1model **) inModel;
MOS1model *modfast = (MOS1model *) kill;
MOS1instance *here;
MOS1instance *prev = NULL;
MOS1model **oldmod;
oldmod = model;
for( ; *model ; model = &((*model)->MOS1nextModel)) {
if( (*model)->MOS1modName == modname ||
(modfast && *model == modfast) ) goto delgot;
for (; *model; model = &((*model)->MOS1nextModel)) {
if ((*model)->MOS1modName == modname ||
(modfast && *model == modfast)) goto delgot;
oldmod = model;
}
return(E_NOMOD);
delgot:
delgot:
*oldmod = (*model)->MOS1nextModel; /* cut deleted device out of list */
for(here = (*model)->MOS1instances ; here ; here = here->MOS1nextInstance) {
if(prev) FREE(prev);
for (here = (*model)->MOS1instances; here; here = here->MOS1nextInstance) {
if (prev) FREE(prev);
prev = here;
}
if(prev) FREE(prev);
if (prev) FREE(prev);
FREE(*model);
return(OK);
}

View File

@ -2,8 +2,6 @@
Copyright 1990 Regents of the University of California. All rights reserved.
Author: 1985 Thomas L. Quarles
**********/
/*
*/
#include "ngspice/ngspice.h"
#include "mos2defs.h"
@ -14,21 +12,22 @@ Author: 1985 Thomas L. Quarles
int
MOS2delete(GENmodel *inModel, IFuid name, GENinstance **inst)
{
MOS2model *model = (MOS2model *)inModel;
MOS2instance **fast = (MOS2instance **)inst;
MOS2model *model = (MOS2model *) inModel;
MOS2instance **fast = (MOS2instance **) inst;
MOS2instance **prev = NULL;
MOS2instance *here;
for( ; model ; model = model->MOS2nextModel) {
for (; model; model = model->MOS2nextModel) {
prev = &(model->MOS2instances);
for(here = *prev; here ; here = *prev) {
if(here->MOS2name == name || (fast && here==*fast) ) {
*prev= here->MOS2nextInstance;
for (here = *prev; here; here = *prev) {
if (here->MOS2name == name || (fast && here == *fast)) {
*prev = here->MOS2nextInstance;
FREE(here);
return(OK);
}
prev = &(here->MOS2nextInstance);
}
}
return(E_NODEV);
}

View File

@ -2,8 +2,6 @@
Copyright 1990 Regents of the University of California. All rights reserved.
Author: 1985 Thomas L. Quarles
**********/
/*
*/
#include "ngspice/ngspice.h"
#include "mos2defs.h"
@ -14,27 +12,28 @@ Author: 1985 Thomas L. Quarles
int
MOS2mDelete(GENmodel **inModel, IFuid modname, GENmodel *kill)
{
MOS2model **model = (MOS2model **)inModel;
MOS2model *modfast = (MOS2model *)kill;
MOS2model **model = (MOS2model **) inModel;
MOS2model *modfast = (MOS2model *) kill;
MOS2instance *here;
MOS2instance *prev = NULL;
MOS2model **oldmod;
oldmod = model;
for( ; *model ; model = &((*model)->MOS2nextModel)) {
if( (*model)->MOS2modName == modname ||
(modfast && *model == modfast) ) goto delgot;
for (; *model; model = &((*model)->MOS2nextModel)) {
if ((*model)->MOS2modName == modname ||
(modfast && *model == modfast)) goto delgot;
oldmod = model;
}
return(E_NOMOD);
delgot:
delgot:
*oldmod = (*model)->MOS2nextModel; /* cut deleted device out of list */
for(here = (*model)->MOS2instances ; here ; here = here->MOS2nextInstance) {
if(prev) FREE(prev);
for (here = (*model)->MOS2instances; here; here = here->MOS2nextInstance) {
if (prev) FREE(prev);
prev = here;
}
if(prev) FREE(prev);
if (prev) FREE(prev);
FREE(*model);
return(OK);
}

View File

@ -2,8 +2,6 @@
Copyright 1990 Regents of the University of California. All rights reserved.
Author: 1985 Thomas L. Quarles
**********/
/*
*/
#include "ngspice/ngspice.h"
#include "mos3defs.h"
@ -14,21 +12,22 @@ Author: 1985 Thomas L. Quarles
int
MOS3delete(GENmodel *inModel, IFuid name, GENinstance **inst)
{
MOS3model *model = (MOS3model *)inModel;
MOS3instance **fast = (MOS3instance **)inst;
MOS3model *model = (MOS3model *) inModel;
MOS3instance **fast = (MOS3instance **) inst;
MOS3instance **prev = NULL;
MOS3instance *here;
for( ; model ; model = model->MOS3nextModel) {
for (; model; model = model->MOS3nextModel) {
prev = &(model->MOS3instances);
for(here = *prev; here ; here = *prev) {
if(here->MOS3name == name || (fast && here==*fast) ) {
*prev= here->MOS3nextInstance;
for (here = *prev; here; here = *prev) {
if (here->MOS3name == name || (fast && here == *fast)) {
*prev = here->MOS3nextInstance;
FREE(here);
return(OK);
}
prev = &(here->MOS3nextInstance);
}
}
return(E_NODEV);
}

View File

@ -2,8 +2,6 @@
Copyright 1990 Regents of the University of California. All rights reserved.
Author: 1985 Thomas L. Quarles
**********/
/*
*/
#include "ngspice/ngspice.h"
#include "mos3defs.h"
@ -14,27 +12,28 @@ Author: 1985 Thomas L. Quarles
int
MOS3mDelete(GENmodel **inModel, IFuid modname, GENmodel *kill)
{
MOS3model **model = (MOS3model **)inModel;
MOS3model *modfast = (MOS3model *)kill;
MOS3model **model = (MOS3model **) inModel;
MOS3model *modfast = (MOS3model *) kill;
MOS3instance *here;
MOS3instance *prev = NULL;
MOS3model **oldmod;
oldmod = model;
for( ; *model ; model = &((*model)->MOS3nextModel)) {
if( (*model)->MOS3modName == modname ||
(modfast && *model == modfast) ) goto delgot;
for (; *model; model = &((*model)->MOS3nextModel)) {
if ((*model)->MOS3modName == modname ||
(modfast && *model == modfast)) goto delgot;
oldmod = model;
}
return(E_NOMOD);
delgot:
delgot:
*oldmod = (*model)->MOS3nextModel; /* cut deleted device out of list */
for(here = (*model)->MOS3instances ; here ; here = here->MOS3nextInstance) {
if(prev) FREE(prev);
for (here = (*model)->MOS3instances; here; here = here->MOS3nextInstance) {
if (prev) FREE(prev);
prev = here;
}
if(prev) FREE(prev);
if (prev) FREE(prev);
FREE(*model);
return(OK);
}

View File

@ -2,8 +2,6 @@
Copyright 1990 Regents of the University of California. All rights reserved.
Author: 1985 Thomas L. Quarles
**********/
/*
*/
#include "ngspice/ngspice.h"
#include "mos6defs.h"
@ -14,21 +12,22 @@ Author: 1985 Thomas L. Quarles
int
MOS6delete(GENmodel *inModel, IFuid name, GENinstance **inst)
{
MOS6model *model = (MOS6model *)inModel;
MOS6instance **fast = (MOS6instance **)inst;
MOS6model *model = (MOS6model *) inModel;
MOS6instance **fast = (MOS6instance **) inst;
MOS6instance **prev = NULL;
MOS6instance *here;
for( ; model ; model = model->MOS6nextModel) {
for (; model; model = model->MOS6nextModel) {
prev = &(model->MOS6instances);
for(here = *prev; here ; here = *prev) {
if(here->MOS6name == name || (fast && here==*fast) ) {
*prev= here->MOS6nextInstance;
for (here = *prev; here; here = *prev) {
if (here->MOS6name == name || (fast && here == *fast)) {
*prev = here->MOS6nextInstance;
FREE(here);
return(OK);
}
prev = &(here->MOS6nextInstance);
}
}
return(E_NODEV);
}

View File

@ -2,8 +2,6 @@
Copyright 1990 Regents of the University of California. All rights reserved.
Author: 1985 Thomas L. Quarles
**********/
/*
*/
#include "ngspice/ngspice.h"
#include "mos6defs.h"
@ -14,27 +12,28 @@ Author: 1985 Thomas L. Quarles
int
MOS6mDelete(GENmodel **inModel, IFuid modname, GENmodel *kill)
{
MOS6model **model = (MOS6model **)inModel;
MOS6model *modfast = (MOS6model *)kill;
MOS6model **model = (MOS6model **) inModel;
MOS6model *modfast = (MOS6model *) kill;
MOS6instance *here;
MOS6instance *prev = NULL;
MOS6model **oldmod;
oldmod = model;
for( ; *model ; model = &((*model)->MOS6nextModel)) {
if( (*model)->MOS6modName == modname ||
(modfast && *model == modfast) ) goto delgot;
for (; *model; model = &((*model)->MOS6nextModel)) {
if ((*model)->MOS6modName == modname ||
(modfast && *model == modfast)) goto delgot;
oldmod = model;
}
return(E_NOMOD);
delgot:
delgot:
*oldmod = (*model)->MOS6nextModel; /* cut deleted device out of list */
for(here = (*model)->MOS6instances ; here ; here = here->MOS6nextInstance) {
if(prev) FREE(prev);
for (here = (*model)->MOS6instances; here; here = here->MOS6nextInstance) {
if (prev) FREE(prev);
prev = here;
}
if(prev) FREE(prev);
if (prev) FREE(prev);
FREE(*model);
return(OK);
}

View File

@ -3,8 +3,6 @@ Copyright 1990 Regents of the University of California. All rights reserved.
Author: 1985 Thomas L. Quarles
Modified: Alan Gillespie
**********/
/*
*/
#include "ngspice/ngspice.h"
#include "mos9defs.h"
@ -15,21 +13,22 @@ Modified: Alan Gillespie
int
MOS9delete(GENmodel *inModel, IFuid name, GENinstance **inst)
{
MOS9model *model = (MOS9model *)inModel;
MOS9instance **fast = (MOS9instance **)inst;
MOS9model *model = (MOS9model *) inModel;
MOS9instance **fast = (MOS9instance **) inst;
MOS9instance **prev = NULL;
MOS9instance *here;
for( ; model ; model = model->MOS9nextModel) {
for (; model; model = model->MOS9nextModel) {
prev = &(model->MOS9instances);
for(here = *prev; here ; here = *prev) {
if(here->MOS9name == name || (fast && here==*fast) ) {
*prev= here->MOS9nextInstance;
for (here = *prev; here; here = *prev) {
if (here->MOS9name == name || (fast && here == *fast)) {
*prev = here->MOS9nextInstance;
FREE(here);
return(OK);
}
prev = &(here->MOS9nextInstance);
}
}
return(E_NODEV);
}

View File

@ -3,8 +3,6 @@ Copyright 1990 Regents of the University of California. All rights reserved.
Author: 1985 Thomas L. Quarles
Modified: Alan Gillespie
**********/
/*
*/
#include "ngspice/ngspice.h"
#include "mos9defs.h"
@ -15,27 +13,28 @@ Modified: Alan Gillespie
int
MOS9mDelete(GENmodel **inModel, IFuid modname, GENmodel *kill)
{
MOS9model **model = (MOS9model **)inModel;
MOS9model *modfast = (MOS9model *)kill;
MOS9model **model = (MOS9model **) inModel;
MOS9model *modfast = (MOS9model *) kill;
MOS9instance *here;
MOS9instance *prev = NULL;
MOS9model **oldmod;
oldmod = model;
for( ; *model ; model = &((*model)->MOS9nextModel)) {
if( (*model)->MOS9modName == modname ||
(modfast && *model == modfast) ) goto delgot;
for (; *model; model = &((*model)->MOS9nextModel)) {
if ((*model)->MOS9modName == modname ||
(modfast && *model == modfast)) goto delgot;
oldmod = model;
}
return(E_NOMOD);
delgot:
delgot:
*oldmod = (*model)->MOS9nextModel; /* cut deleted device out of list */
for(here = (*model)->MOS9instances ; here ; here = here->MOS9nextInstance) {
if(prev) FREE(prev);
for (here = (*model)->MOS9instances; here; here = here->MOS9nextInstance) {
if (prev) FREE(prev);
prev = here;
}
if(prev) FREE(prev);
if (prev) FREE(prev);
FREE(*model);
return(OK);
}

View File

@ -1,6 +1,6 @@
/**********
Copyright 1992 Regents of the University of California. All rights reserved.
Author: 1987 Kartikeya Mayaram, U. C. Berkeley CAD Group
Author: 1987 Kartikeya Mayaram, U. C. Berkeley CAD Group
**********/
/*
@ -13,24 +13,26 @@ Author: 1987 Kartikeya Mayaram, U. C. Berkeley CAD Group
#include "ngspice/sperror.h"
#include "ngspice/suffix.h"
int
NBJTdelete(GENmodel *inModel, IFuid name, GENinstance **kill)
{
NBJTmodel *model = (NBJTmodel *) inModel;
NBJTinstance **fast = (NBJTinstance **) kill;
NBJTinstance **prev = NULL;
NBJTinstance *inst;
NBJTmodel *model = (NBJTmodel *) inModel;
NBJTinstance **fast = (NBJTinstance **) kill;
NBJTinstance **prev = NULL;
NBJTinstance *inst;
for (; model; model = model->NBJTnextModel) {
prev = &(model->NBJTinstances);
for (inst = *prev; inst; inst = *prev) {
if (inst->NBJTname == name || (fast && inst == *fast)) {
*prev = inst->NBJTnextInstance;
FREE(inst);
return (OK);
}
prev = &(inst->NBJTnextInstance);
for (; model; model = model->NBJTnextModel) {
prev = &(model->NBJTinstances);
for (inst = *prev; inst; inst = *prev) {
if (inst->NBJTname == name || (fast && inst == *fast)) {
*prev = inst->NBJTnextInstance;
FREE(inst);
return(OK);
}
prev = &(inst->NBJTnextInstance);
}
}
}
return (E_NODEV);
return(E_NODEV);
}

View File

@ -1,6 +1,6 @@
/**********
Copyright 1992 Regents of the University of California. All rights reserved.
Author: 1987 Kartikeya Mayaram, U. C. Berkeley CAD Group
Author: 1987 Kartikeya Mayaram, U. C. Berkeley CAD Group
**********/
/*
@ -13,27 +13,28 @@ Author: 1987 Kartikeya Mayaram, U. C. Berkeley CAD Group
#include "ngspice/sperror.h"
#include "ngspice/suffix.h"
int
NBJTmDelete(GENmodel **inModel, IFuid modname, GENmodel *kill)
{
NBJTmodel **model = (NBJTmodel **) inModel;
NBJTmodel *modfast = (NBJTmodel *) kill;
NBJTmodel **oldmod;
NBJTmodel **model = (NBJTmodel **) inModel;
NBJTmodel *modfast = (NBJTmodel *) kill;
NBJTmodel **oldmod;
oldmod = model;
for (; *model; model = &((*model)->NBJTnextModel)) {
if ((*model)->NBJTmodName == modname ||
(modfast && *model == modfast))
goto delgot;
oldmod = model;
}
return (E_NOMOD);
for (; *model; model = &((*model)->NBJTnextModel)) {
if ((*model)->NBJTmodName == modname ||
(modfast && *model == modfast))
goto delgot;
oldmod = model;
}
delgot:
if ((*model)->NBJTinstances)
return (E_NOTEMPTY);
*oldmod = (*model)->NBJTnextModel; /* cut deleted device out of list */
FREE(*model);
return (OK);
return(E_NOMOD);
delgot:
if ((*model)->NBJTinstances)
return(E_NOTEMPTY);
*oldmod = (*model)->NBJTnextModel; /* cut deleted device out of list */
FREE(*model);
return(OK);
}

View File

@ -1,6 +1,6 @@
/**********
Copyright 1992 Regents of the University of California. All rights reserved.
Author: 1987 Kartikeya Mayaram, U. C. Berkeley CAD Group
Author: 1987 Kartikeya Mayaram, U. C. Berkeley CAD Group
**********/
/*
@ -13,25 +13,26 @@ Author: 1987 Kartikeya Mayaram, U. C. Berkeley CAD Group
#include "ngspice/sperror.h"
#include "ngspice/suffix.h"
int
NBJT2delete(GENmodel *inModel, IFuid name, GENinstance **kill)
{
NBJT2model *model = (NBJT2model *) inModel;
NBJT2instance **fast = (NBJT2instance **) kill;
NBJT2instance **prev = NULL;
NBJT2instance *inst;
NBJT2model *model = (NBJT2model *) inModel;
NBJT2instance **fast = (NBJT2instance **) kill;
NBJT2instance **prev = NULL;
NBJT2instance *inst;
for (; model; model = model->NBJT2nextModel) {
prev = &(model->NBJT2instances);
for (inst = *prev; inst; inst = *prev) {
if (inst->NBJT2name == name || (fast && inst == *fast)) {
*prev = inst->NBJT2nextInstance;
FREE(inst);
return (OK);
}
prev = &(inst->NBJT2nextInstance);
for (; model; model = model->NBJT2nextModel) {
prev = &(model->NBJT2instances);
for (inst = *prev; inst; inst = *prev) {
if (inst->NBJT2name == name || (fast && inst == *fast)) {
*prev = inst->NBJT2nextInstance;
FREE(inst);
return(OK);
}
prev = &(inst->NBJT2nextInstance);
}
}
}
return (E_NODEV);
return(E_NODEV);
}

View File

@ -1,6 +1,6 @@
/**********
Copyright 1992 Regents of the University of California. All rights reserved.
Author: 1987 Kartikeya Mayaram, U. C. Berkeley CAD Group
Author: 1987 Kartikeya Mayaram, U. C. Berkeley CAD Group
**********/
/*
@ -13,27 +13,28 @@ Author: 1987 Kartikeya Mayaram, U. C. Berkeley CAD Group
#include "ngspice/sperror.h"
#include "ngspice/suffix.h"
int
NBJT2mDelete(GENmodel **inModel, IFuid modname, GENmodel *kill)
{
NBJT2model **model = (NBJT2model **) inModel;
NBJT2model *modfast = (NBJT2model *) kill;
NBJT2model **oldmod;
NBJT2model **model = (NBJT2model **) inModel;
NBJT2model *modfast = (NBJT2model *) kill;
NBJT2model **oldmod;
oldmod = model;
for (; *model; model = &((*model)->NBJT2nextModel)) {
if ((*model)->NBJT2modName == modname ||
(modfast && *model == modfast))
goto delgot;
oldmod = model;
}
return (E_NOMOD);
for (; *model; model = &((*model)->NBJT2nextModel)) {
if ((*model)->NBJT2modName == modname ||
(modfast && *model == modfast))
goto delgot;
oldmod = model;
}
delgot:
if ((*model)->NBJT2instances)
return (E_NOTEMPTY);
*oldmod = (*model)->NBJT2nextModel; /* cut deleted device out of list */
FREE(*model);
return (OK);
return(E_NOMOD);
delgot:
if ((*model)->NBJT2instances)
return(E_NOTEMPTY);
*oldmod = (*model)->NBJT2nextModel; /* cut deleted device out of list */
FREE(*model);
return(OK);
}

View File

@ -1,7 +1,7 @@
/**********
Permit to use it as your wish.
Author: 2007 Gong Ding, gdiso@ustc.edu
University of Science and Technology of China
Author: 2007 Gong Ding, gdiso@ustc.edu
University of Science and Technology of China
**********/
#include "ngspice/ngspice.h"
@ -9,29 +9,29 @@ University of Science and Technology of China
#include "ngspice/sperror.h"
#include "ngspice/suffix.h"
int
NDEVdelete(
GENmodel *inModel,
IFuid name,
GENinstance **kill )
GENmodel *inModel,
IFuid name,
GENinstance **kill)
{
NDEVmodel *model = (NDEVmodel *)inModel;
NDEVinstance **fast = (NDEVinstance **)kill;
NDEVmodel *model = (NDEVmodel *) inModel;
NDEVinstance **fast = (NDEVinstance **) kill;
NDEVinstance **prev = NULL;
NDEVinstance *here;
for( ; model ; model = model->NDEVnextModel) {
for (; model; model = model->NDEVnextModel) {
prev = &(model->NDEVinstances);
for(here = *prev; here ; here = *prev) {
if(here->NDEVname == name || (fast && here==*fast) ) {
*prev= here->NDEVnextInstance;
for (here = *prev; here; here = *prev) {
if (here->NDEVname == name || (fast && here == *fast)) {
*prev = here->NDEVnextInstance;
FREE(here);
return(OK);
}
prev = &(here->NDEVnextInstance);
}
}
return (E_NODEV);
return(E_NODEV);
}

View File

@ -1,6 +1,6 @@
/**********
Copyright 1992 Regents of the University of California. All rights reserved.
Author: 1987 Kartikeya Mayaram, U. C. Berkeley CAD Group
Author: 1987 Kartikeya Mayaram, U. C. Berkeley CAD Group
**********/
#include "ngspice/ngspice.h"
@ -8,16 +8,16 @@ Author: 1987 Kartikeya Mayaram, U. C. Berkeley CAD Group
#include "ngspice/sperror.h"
#include "ngspice/suffix.h"
int
NDEVmDelete(
GENmodel **inModel,
IFuid modname,
GENmodel *kill )
GENmodel **inModel,
IFuid modname,
GENmodel *kill)
{
NG_IGNORE(inModel);
NG_IGNORE(modname);
NG_IGNORE(kill);
NG_IGNORE(inModel);
NG_IGNORE(modname);
NG_IGNORE(kill);
return (OK);
return(OK);
}

View File

@ -1,6 +1,6 @@
/**********
Copyright 1992 Regents of the University of California. All rights reserved.
Author: 1987 Kartikeya Mayaram, U. C. Berkeley CAD Group
Author: 1987 Kartikeya Mayaram, U. C. Berkeley CAD Group
**********/
#include "ngspice/ngspice.h"
@ -8,25 +8,26 @@ Author: 1987 Kartikeya Mayaram, U. C. Berkeley CAD Group
#include "ngspice/sperror.h"
#include "ngspice/suffix.h"
int
NUMDdelete(GENmodel *inModel, IFuid name, GENinstance **kill)
{
NUMDmodel *model = (NUMDmodel *) inModel;
NUMDinstance **fast = (NUMDinstance **) kill;
NUMDinstance **prev = NULL;
NUMDinstance *inst;
NUMDmodel *model = (NUMDmodel *) inModel;
NUMDinstance **fast = (NUMDinstance **) kill;
NUMDinstance **prev = NULL;
NUMDinstance *inst;
for (; model; model = model->NUMDnextModel) {
prev = &(model->NUMDinstances);
for (inst = *prev; inst; inst = *prev) {
if (inst->NUMDname == name || (fast && inst == *fast)) {
*prev = inst->NUMDnextInstance;
FREE(inst);
return (OK);
}
prev = &(inst->NUMDnextInstance);
for (; model; model = model->NUMDnextModel) {
prev = &(model->NUMDinstances);
for (inst = *prev; inst; inst = *prev) {
if (inst->NUMDname == name || (fast && inst == *fast)) {
*prev = inst->NUMDnextInstance;
FREE(inst);
return(OK);
}
prev = &(inst->NUMDnextInstance);
}
}
}
return (E_NODEV);
return(E_NODEV);
}

View File

@ -1,6 +1,6 @@
/**********
Copyright 1992 Regents of the University of California. All rights reserved.
Author: 1987 Kartikeya Mayaram, U. C. Berkeley CAD Group
Author: 1987 Kartikeya Mayaram, U. C. Berkeley CAD Group
**********/
#include "ngspice/ngspice.h"
@ -8,33 +8,35 @@ Author: 1987 Kartikeya Mayaram, U. C. Berkeley CAD Group
#include "ngspice/sperror.h"
#include "ngspice/suffix.h"
int
NUMDmDelete(GENmodel **inModel, IFuid modname, GENmodel *kill)
{
NUMDmodel **model = (NUMDmodel **) inModel;
NUMDmodel *modfast = (NUMDmodel *) kill;
NUMDinstance *inst;
NUMDinstance *prev = NULL;
NUMDmodel **oldmod;
NUMDmodel **model = (NUMDmodel **) inModel;
NUMDmodel *modfast = (NUMDmodel *) kill;
NUMDinstance *inst;
NUMDinstance *prev = NULL;
NUMDmodel **oldmod;
oldmod = model;
for (; *model; model = &((*model)->NUMDnextModel)) {
if ((*model)->NUMDmodName == modname ||
(modfast && *model == modfast))
goto delgot;
oldmod = model;
}
return (E_NOMOD);
for (; *model; model = &((*model)->NUMDnextModel)) {
if ((*model)->NUMDmodName == modname ||
(modfast && *model == modfast))
goto delgot;
oldmod = model;
}
delgot:
*oldmod = (*model)->NUMDnextModel; /* cut deleted device out of list */
for (inst = (*model)->NUMDinstances; inst; inst = inst->NUMDnextInstance) {
return(E_NOMOD);
delgot:
*oldmod = (*model)->NUMDnextModel; /* cut deleted device out of list */
for (inst = (*model)->NUMDinstances; inst; inst = inst->NUMDnextInstance) {
if (prev)
FREE(prev);
prev = inst;
}
if (prev)
FREE(prev);
prev = inst;
}
if (prev)
FREE(prev);
FREE(*model);
return (OK);
FREE(prev);
FREE(*model);
return(OK);
}

View File

@ -1,6 +1,6 @@
/**********
Copyright 1992 Regents of the University of California. All rights reserved.
Author: 1987 Kartikeya Mayaram, U. C. Berkeley CAD Group
Author: 1987 Kartikeya Mayaram, U. C. Berkeley CAD Group
**********/
#include "ngspice/ngspice.h"
@ -8,24 +8,26 @@ Author: 1987 Kartikeya Mayaram, U. C. Berkeley CAD Group
#include "ngspice/sperror.h"
#include "ngspice/suffix.h"
int
NUMD2delete(GENmodel *inModel, IFuid name, GENinstance **kill)
{
NUMD2model *model = (NUMD2model *) inModel;
NUMD2instance **fast = (NUMD2instance **) kill;
NUMD2instance **prev = NULL;
NUMD2instance *inst;
NUMD2model *model = (NUMD2model *) inModel;
NUMD2instance **fast = (NUMD2instance **) kill;
NUMD2instance **prev = NULL;
NUMD2instance *inst;
for (; model; model = model->NUMD2nextModel) {
prev = &(model->NUMD2instances);
for (inst = *prev; inst; inst = *prev) {
if (inst->NUMD2name == name || (fast && inst == *fast)) {
*prev = inst->NUMD2nextInstance;
FREE(inst);
return (OK);
}
prev = &(inst->NUMD2nextInstance);
for (; model; model = model->NUMD2nextModel) {
prev = &(model->NUMD2instances);
for (inst = *prev; inst; inst = *prev) {
if (inst->NUMD2name == name || (fast && inst == *fast)) {
*prev = inst->NUMD2nextInstance;
FREE(inst);
return(OK);
}
prev = &(inst->NUMD2nextInstance);
}
}
}
return (E_NODEV);
return(E_NODEV);
}

View File

@ -1,6 +1,6 @@
/**********
Copyright 1992 Regents of the University of California. All rights reserved.
Author: 1987 Kartikeya Mayaram, U. C. Berkeley CAD Group
Author: 1987 Kartikeya Mayaram, U. C. Berkeley CAD Group
**********/
#include "ngspice/ngspice.h"
@ -8,33 +8,35 @@ Author: 1987 Kartikeya Mayaram, U. C. Berkeley CAD Group
#include "ngspice/sperror.h"
#include "ngspice/suffix.h"
int
NUMD2mDelete(GENmodel **inModel, IFuid modname, GENmodel *kill)
{
NUMD2model **model = (NUMD2model **) inModel;
NUMD2model *modfast = (NUMD2model *) kill;
NUMD2instance *inst;
NUMD2instance *prev = NULL;
NUMD2model **oldmod;
oldmod = model;
for (; *model; model = &((*model)->NUMD2nextModel)) {
if ((*model)->NUMD2modName == modname ||
(modfast && *model == modfast))
goto delgot;
NUMD2model **model = (NUMD2model **) inModel;
NUMD2model *modfast = (NUMD2model *) kill;
NUMD2instance *inst;
NUMD2instance *prev = NULL;
NUMD2model **oldmod;
oldmod = model;
}
return (E_NOMOD);
for (; *model; model = &((*model)->NUMD2nextModel)) {
if ((*model)->NUMD2modName == modname ||
(modfast && *model == modfast))
goto delgot;
oldmod = model;
}
delgot:
*oldmod = (*model)->NUMD2nextModel; /* cut deleted device out of list */
for (inst = (*model)->NUMD2instances; inst; inst = inst->NUMD2nextInstance) {
return(E_NOMOD);
delgot:
*oldmod = (*model)->NUMD2nextModel; /* cut deleted device out of list */
for (inst = (*model)->NUMD2instances; inst; inst = inst->NUMD2nextInstance) {
if (prev)
FREE(prev);
prev = inst;
}
if (prev)
FREE(prev);
prev = inst;
}
if (prev)
FREE(prev);
FREE(*model);
return (OK);
FREE(prev);
FREE(*model);
return(OK);
}

View File

@ -1,6 +1,6 @@
/**********
Copyright 1991 Regents of the University of California. All rights reserved.
Author: 1987 Kartikeya Mayaram, U. C. Berkeley CAD Group
Author: 1987 Kartikeya Mayaram, U. C. Berkeley CAD Group
**********/
/*
@ -13,25 +13,26 @@ Author: 1987 Kartikeya Mayaram, U. C. Berkeley CAD Group
#include "ngspice/sperror.h"
#include "ngspice/suffix.h"
int
NUMOSdelete(GENmodel *inModel, IFuid name, GENinstance **kill)
{
NUMOSmodel *model = (NUMOSmodel *) inModel;
NUMOSinstance **fast = (NUMOSinstance **) kill;
NUMOSinstance **prev = NULL;
NUMOSinstance *inst;
NUMOSmodel *model = (NUMOSmodel *) inModel;
NUMOSinstance **fast = (NUMOSinstance **) kill;
NUMOSinstance **prev = NULL;
NUMOSinstance *inst;
for (; model; model = model->NUMOSnextModel) {
prev = &(model->NUMOSinstances);
for (inst = *prev; inst; inst = *prev) {
if (inst->NUMOSname == name || (fast && inst == *fast)) {
*prev = inst->NUMOSnextInstance;
FREE(inst);
return (OK);
}
prev = &(inst->NUMOSnextInstance);
for (; model; model = model->NUMOSnextModel) {
prev = &(model->NUMOSinstances);
for (inst = *prev; inst; inst = *prev) {
if (inst->NUMOSname == name || (fast && inst == *fast)) {
*prev = inst->NUMOSnextInstance;
FREE(inst);
return(OK);
}
prev = &(inst->NUMOSnextInstance);
}
}
}
return (E_NODEV);
return(E_NODEV);
}

View File

@ -1,6 +1,6 @@
/**********
Copyright 1991 Regents of the University of California. All rights reserved.
Author: 1987 Kartikeya Mayaram, U. C. Berkeley CAD Group
Author: 1987 Kartikeya Mayaram, U. C. Berkeley CAD Group
**********/
/*
@ -13,27 +13,28 @@ Author: 1987 Kartikeya Mayaram, U. C. Berkeley CAD Group
#include "ngspice/sperror.h"
#include "ngspice/suffix.h"
int
NUMOSmDelete(GENmodel **inModel, IFuid modname, GENmodel *kill)
{
NUMOSmodel **model = (NUMOSmodel **) inModel;
NUMOSmodel *modfast = (NUMOSmodel *) kill;
NUMOSmodel **oldmod;
NUMOSmodel **model = (NUMOSmodel **) inModel;
NUMOSmodel *modfast = (NUMOSmodel *) kill;
NUMOSmodel **oldmod;
oldmod = model;
for (; *model; model = &((*model)->NUMOSnextModel)) {
if ((*model)->NUMOSmodName == modname ||
(modfast && *model == modfast))
goto delgot;
oldmod = model;
}
return (E_NOMOD);
for (; *model; model = &((*model)->NUMOSnextModel)) {
if ((*model)->NUMOSmodName == modname ||
(modfast && *model == modfast))
goto delgot;
oldmod = model;
}
delgot:
if ((*model)->NUMOSinstances)
return (E_NOTEMPTY);
*oldmod = (*model)->NUMOSnextModel; /* cut deleted device out of list */
FREE(*model);
return (OK);
return(E_NOMOD);
delgot:
if ((*model)->NUMOSinstances)
return(E_NOTEMPTY);
*oldmod = (*model)->NUMOSnextModel; /* cut deleted device out of list */
FREE(*model);
return(OK);
}

View File

@ -3,8 +3,6 @@ Copyright 1990 Regents of the University of California. All rights reserved.
Author: 1985 Thomas L. Quarles
Modified: Apr 2000 - Paolo Nenzi
**********/
/*
*/
#include "ngspice/ngspice.h"
#include "resdefs.h"
@ -14,21 +12,22 @@ Modified: Apr 2000 - Paolo Nenzi
int
RESdelete(GENmodel *inModel, IFuid name, GENinstance **inst)
{
RESmodel *model = (RESmodel *)inModel;
RESinstance **fast = (RESinstance **)inst;
RESmodel *model = (RESmodel *) inModel;
RESinstance **fast = (RESinstance **) inst;
RESinstance **prev = NULL;
RESinstance *here;
for( ; model ; model = model->RESnextModel) {
for (; model; model = model->RESnextModel) {
prev = &(model->RESinstances);
for(here = *prev; here ; here = *prev) {
if(here->RESname == name || (fast && here==*fast) ) {
*prev= here->RESnextInstance;
for (here = *prev; here; here = *prev) {
if (here->RESname == name || (fast && here == *fast)) {
*prev = here->RESnextInstance;
FREE(here);
return(OK);
}
prev = &(here->RESnextInstance);
}
}
return(E_NODEV);
}

View File

@ -12,27 +12,28 @@ Modified: Apr 2000 - Paolo Nenzi
int
RESmDelete(GENmodel **inModel, IFuid modname, GENmodel *kill)
{
RESmodel **model = (RESmodel **)inModel;
RESmodel *modfast = (RESmodel *)kill;
RESmodel **model = (RESmodel **) inModel;
RESmodel *modfast = (RESmodel *) kill;
RESinstance *here;
RESinstance *prev = NULL;
RESmodel **oldmod;
oldmod = model;
for( ; *model ; model = &((*model)->RESnextModel)) {
if( (*model)->RESmodName == modname ||
(modfast && *model == modfast) ) goto delgot;
for (; *model; model = &((*model)->RESnextModel)) {
if ((*model)->RESmodName == modname ||
(modfast && *model == modfast)) goto delgot;
oldmod = model;
}
return(E_NOMOD);
delgot:
delgot:
*oldmod = (*model)->RESnextModel; /* cut deleted device out of list */
for(here = (*model)->RESinstances ; here ; here = here->RESnextInstance) {
if(prev) FREE(prev);
for (here = (*model)->RESinstances; here; here = here->RESnextInstance) {
if (prev) FREE(prev);
prev = here;
}
if(prev) FREE(prev);
if (prev) FREE(prev);
FREE(*model);
return(OK);
}

View File

@ -15,7 +15,7 @@ With help from : Bernard Tenbroek, Bill Redman-White, Mike Uren, Chris Edwards
Acknowledgements : Rupert Howes and Pete Mole.
**********/
/**********
/**********
Modified by Paolo Nenzi 2002
ngspice integration
**********/
@ -29,21 +29,22 @@ ngspice integration
int
SOI3delete(GENmodel *inModel, IFuid name, GENinstance **inst)
{
SOI3model *model = (SOI3model *)inModel;
SOI3instance **fast = (SOI3instance **)inst;
SOI3model *model = (SOI3model *) inModel;
SOI3instance **fast = (SOI3instance **) inst;
SOI3instance **prev = NULL;
SOI3instance *here;
for( ; model ; model = model->SOI3nextModel) {
for (; model; model = model->SOI3nextModel) {
prev = &(model->SOI3instances);
for(here = *prev; here ; here = *prev) {
if(here->SOI3name == name || (fast && here==*fast) ) {
*prev= here->SOI3nextInstance;
for (here = *prev; here; here = *prev) {
if (here->SOI3name == name || (fast && here == *fast)) {
*prev = here->SOI3nextInstance;
FREE(here);
return(OK);
}
prev = &(here->SOI3nextInstance);
}
}
return(E_NODEV);
}

View File

@ -15,9 +15,9 @@ With help from : Bernard Tenbroek, Bill Redman-White, Mike Uren, Chris Edwards
Acknowledgements : Rupert Howes and Pete Mole.
**********/
/**********
Modified by Paolo Nenzi 2002
ngspice integration
/**********
Modified by Paolo Nenzi 2002
ngspice integration
**********/
#include "ngspice/ngspice.h"
@ -29,27 +29,28 @@ ngspice integration
int
SOI3mDelete(GENmodel **inModel, IFuid modname, GENmodel *kill)
{
SOI3model **model = (SOI3model **)inModel;
SOI3model *modfast = (SOI3model *)kill;
SOI3model **model = (SOI3model **) inModel;
SOI3model *modfast = (SOI3model *) kill;
SOI3instance *here;
SOI3instance *prev = NULL;
SOI3model **oldmod;
oldmod = model;
for( ; *model ; model = &((*model)->SOI3nextModel)) {
if( (*model)->SOI3modName == modname ||
(modfast && *model == modfast) ) goto delgot;
for (; *model; model = &((*model)->SOI3nextModel)) {
if ((*model)->SOI3modName == modname ||
(modfast && *model == modfast)) goto delgot;
oldmod = model;
}
return(E_NOMOD);
delgot:
delgot:
*oldmod = (*model)->SOI3nextModel; /* cut deleted device out of list */
for(here = (*model)->SOI3instances ; here ; here = here->SOI3nextInstance) {
if(prev) FREE(prev);
for (here = (*model)->SOI3instances; here; here = here->SOI3nextInstance) {
if (prev) FREE(prev);
prev = here;
}
if(prev) FREE(prev);
if (prev) FREE(prev);
FREE(*model);
return(OK);
}

View File

@ -2,8 +2,6 @@
Copyright 1990 Regents of the University of California. All rights reserved.
Author: 1985 Gordon Jacobs
**********/
/*
*/
#include "ngspice/ngspice.h"
#include "swdefs.h"
@ -14,21 +12,22 @@ Author: 1985 Gordon Jacobs
int
SWdelete(GENmodel *inModel, IFuid name, GENinstance **inst)
{
SWmodel *model = (SWmodel *)inModel;
SWinstance **fast = (SWinstance **)inst;
SWmodel *model = (SWmodel *) inModel;
SWinstance **fast = (SWinstance **) inst;
SWinstance **prev = NULL;
SWinstance *here;
for( ; model ; model = model->SWnextModel) {
for (; model; model = model->SWnextModel) {
prev = &(model->SWinstances);
for(here = *prev; here ; here = *prev) {
if(here->SWname == name || (fast && here==*fast) ) {
*prev= here->SWnextInstance;
for (here = *prev; here; here = *prev) {
if (here->SWname == name || (fast && here == *fast)) {
*prev = here->SWnextInstance;
FREE(here);
return(OK);
}
prev = &(here->SWnextInstance);
}
}
return(E_NODEV);
}

View File

@ -2,8 +2,6 @@
Copyright 1990 Regents of the University of California. All rights reserved.
Author: 1985 Gordon Jacobs
**********/
/*
*/
#include "ngspice/ngspice.h"
#include "swdefs.h"
@ -14,27 +12,28 @@ Author: 1985 Gordon Jacobs
int
SWmDelete(GENmodel **inModel, IFuid modname, GENmodel *kill)
{
SWmodel **model = (SWmodel **)inModel;
SWmodel *modfast = (SWmodel *)kill;
SWmodel **model = (SWmodel **) inModel;
SWmodel *modfast = (SWmodel *) kill;
SWinstance *here;
SWinstance *prev = NULL;
SWmodel **oldmod;
oldmod = model;
for( ; *model ; model = &((*model)->SWnextModel)) {
if( (*model)->SWmodName == modname ||
(modfast && *model == modfast) ) goto delgot;
for (; *model; model = &((*model)->SWnextModel)) {
if ((*model)->SWmodName == modname ||
(modfast && *model == modfast)) goto delgot;
oldmod = model;
}
return(E_NOMOD);
delgot:
delgot:
*oldmod = (*model)->SWnextModel; /* cut deleted device out of list */
for(here = (*model)->SWinstances ; here ; here = here->SWnextInstance) {
if(prev) FREE(prev);
for (here = (*model)->SWinstances; here; here = here->SWnextInstance) {
if (prev) FREE(prev);
prev = here;
}
if(prev) FREE(prev);
if (prev) FREE(prev);
FREE(*model);
return(OK);
}

Some files were not shown because too many files have changed in this diff Show More