Lines Matching refs:initsize
1153 \param initsize Initialize EMF in memory to hold this many bytes
1161 const uint32_t initsize,
1168 if(initsize < 1)return(1);
1173 etl->buf = malloc(initsize); // no need to zero the memory
1185 etl->allocated = initsize;
1357 \param initsize Initialize with space for this number of handles
1362 uint32_t initsize,
1369 if(initsize<1)return(1);
1373 ehtl->table = malloc(initsize * sizeof(uint32_t));
1378 ehtl->stack = malloc(initsize * sizeof(uint32_t));
1384 memset(ehtl->table , 0, initsize * sizeof(uint32_t)); // zero all slots in the table
1385 for(i=1; i<initsize; i++){ehtl->stack[i]=i;} // preset the stack
1386 ehtl->allocated = initsize;