libflame  12600
Functions
bl1_allocv.c File Reference

(r12600)

Functions

void * bl1_vallocv (unsigned int n_elem, unsigned int elem_size)
int * bl1_iallocv (unsigned int n_elem)
float * bl1_sallocv (unsigned int n_elem)
double * bl1_dallocv (unsigned int n_elem)
scomplexbl1_callocv (unsigned int n_elem)
dcomplexbl1_zallocv (unsigned int n_elem)

Function Documentation

scomplex* bl1_callocv ( unsigned int  n_elem)
double* bl1_dallocv ( unsigned int  n_elem)

Referenced by bl1_dtrmvsx(), and bl1_dtrsvsx().

{
    return ( double* ) BLIS1_MALLOC( n_elem * sizeof( double ) );
}
int* bl1_iallocv ( unsigned int  n_elem)
{
    return ( int*   ) BLIS1_MALLOC( n_elem * sizeof( int ) );
}
float* bl1_sallocv ( unsigned int  n_elem)

Referenced by bl1_strmvsx(), and bl1_strsvsx().

{
    return ( float* ) BLIS1_MALLOC( n_elem * sizeof( float ) );
}
void* bl1_vallocv ( unsigned int  n_elem,
unsigned int  elem_size 
)
{
    return ( void*  ) BLIS1_MALLOC( n_elem * elem_size );
}
dcomplex* bl1_zallocv ( unsigned int  n_elem)