33 std::vector<void*> prevTabs;
40 inline void* newConf()
42 if (currentConf >= endOfTablePtr)
47 void* ret = currentConf;
48 currentConf =
reinterpret_cast<char*
>(currentConf) + cellSize;
53 inline void* makeCopy(
const void* conf)
55 void* currentPlace = newConf();
57 memcpy(currentPlace, conf, cellSize);
62 inline void* makeExternalCopy(
const void* conf)
64 void* res = malloc(cellSize);
66 memcpy(res, conf, cellSize);