Lines Matching refs:initsize
1472 \param initsize Initialize WMF in memory to hold this many bytes
1480 const uint32_t initsize,
1487 if(initsize < 1)return(1);
1492 wtl->buf = malloc(initsize); // no need to zero the memory
1504 wtl->allocated = initsize;
1731 \param initsize Initialize with space for this number of handles
1736 uint32_t initsize,
1742 if(initsize<1)return(1);
1746 whtl->table = malloc(initsize * sizeof(uint32_t));
1751 memset(whtl->table , 0, initsize * sizeof(uint32_t)); // zero all slots in the table
1752 whtl->allocated = initsize;