Lines Matching defs:zPool
27077 int nBlock; /* Number of szAtom sized blocks in zPool */
27078 u8 *zPool; /* Memory available to be allocated */
27120 ** Assuming mem5.zPool is divided up into an array of Mem5Link
27123 #define MEM5LINK(idx) ((Mem5Link *)(&mem5.zPool[(idx)*mem5.szAtom]))
27184 i = (int)(((u8 *)p-mem5.zPool)/mem5.szAtom);
27260 memset(&mem5.zPool[i*mem5.szAtom], 0xAA, iFullSz);
27264 return (void*)&mem5.zPool[i*mem5.szAtom];
27275 ** the array of mem5.szAtom byte blocks pointed to by mem5.zPool.
27277 iBlock = (int)(((u8 *)pOld-mem5.zPool)/mem5.szAtom);
27281 assert( ((u8 *)pOld-mem5.zPool)%mem5.szAtom==0 );
27327 memset(&mem5.zPool[iBlock*mem5.szAtom], 0x55, size);
27468 mem5.zPool = zByte;
27469 mem5.aCtrl = (u8 *)&mem5.zPool[mem5.nBlock*mem5.szAtom];