Home | History | Annotate | Download | only in dist

Lines Matching refs:zPool

15654   int nBlock;      /* Number of szAtom sized blocks in zPool */
15655 u8 *zPool; /* Memory available to be allocated */
15695 ** Assuming mem5.zPool is divided up into an array of Mem5Link
15698 #define MEM5LINK(idx) ((Mem5Link *)(&mem5.zPool[(idx)*mem5.szAtom]))
15762 int i = ((u8 *)p-mem5.zPool)/mem5.szAtom;
15854 return (void*)&mem5.zPool[i*mem5.szAtom];
15865 ** the array of mem5.szAtom byte blocks pointed to by mem5.zPool.
15867 iBlock = ((u8 *)pOld-mem5.zPool)/mem5.szAtom;
15871 assert( ((u8 *)pOld-mem5.zPool)%mem5.szAtom==0 );
16040 mem5.zPool = zByte;
16041 mem5.aCtrl = (u8 *)&mem5.zPool[mem5.nBlock*mem5.szAtom];