mirror of
https://github.com/YosysHQ/abc.git
synced 2026-09-07 03:05:36 +02:00
Version abc80922
This commit is contained in:
@@ -413,6 +413,25 @@ static inline void Vec_IntFillExtra( Vec_Int_t * p, int nSize, int Entry )
|
||||
p->nSize = nSize;
|
||||
}
|
||||
|
||||
/**Function*************************************************************
|
||||
|
||||
Synopsis []
|
||||
|
||||
Description []
|
||||
|
||||
SideEffects []
|
||||
|
||||
SeeAlso []
|
||||
|
||||
***********************************************************************/
|
||||
static inline void Vec_IntWriteEntryFill( Vec_Int_t * p, int i, int Entry )
|
||||
{
|
||||
assert( i >= 0 );
|
||||
if ( i >= p->nSize )
|
||||
Vec_IntFillExtra( p, 2 * i, 0 );
|
||||
Vec_IntWriteEntry( p, i, Entry );
|
||||
}
|
||||
|
||||
/**Function*************************************************************
|
||||
|
||||
Synopsis []
|
||||
|
||||
Reference in New Issue
Block a user