Beispiel #1
0
static void RebuildHashTable( symbol **table, unsigned size )
/***********************************************************/
{
    while( size > 0 ) {
        *table = CarveMapIndex( CarveSymbol, *table );
        table++;
        size--;
    }
}
Beispiel #2
0
POOL_CON *ConstantPoolMapIndex( POOL_CON *e )
{
    return( CarveMapIndex( carvePOOL_CON, e ) );
}
Beispiel #3
0
TYPE_SIG *TypeSigMapIndex( TYPE_SIG *e )
{
    return( CarveMapIndex( carveTYPE_SIG, e ) );
}
Beispiel #4
0
static REWRITE_TOKENS *RewriteTokensMapIndex( REWRITE_TOKENS *i )
/***************************************************************/
{
    return( CarveMapIndex( carveREWRITE_TOKENS, i ) );
}
Beispiel #5
0
REWRITE *RewriteMapIndex( REWRITE *i )
/************************************/
{
    return( CarveMapIndex( carveREWRITE, i ) );
}
Beispiel #6
0
SYM_TOKEN_LOCN *SymTokenLocnMapIndex( SYM_TOKEN_LOCN *e )
/*****************************************************/
{
    return( CarveMapIndex( carveSYMBOL_LOCN, e ) );
}