SCALAPACK 2.2.2
LAPACK: Linear Algebra PACKage
Loading...
Searching...
No Matches

◆ setmemory()

void setmemory ( complex **  adpointer,
Int  blocksize 
)

Definition at line 116 of file pctrmr2.c.

117{
118 assert(blocksize >= 0);
119 if (blocksize == 0) {
120 *adpointer = NULL;
121 return;
122 }
123 *adpointer = (complex *) mr2d_malloc(
124 blocksize * sizeof(complex));
125}
void * mr2d_malloc()
Here is the call graph for this function: