Lines Matching defs:tem
3913 XML_Char *tem = poolStoreString(&dtd->pool,
3917 if (!tem)
3919 normalizePublicId(tem);
3920 declEntity->publicId = tem;
4352 XML_Char *tem = poolStoreString(&tempPool,
4356 if (!tem)
4358 normalizePublicId(tem);
4359 declNotationPublicId = tem;
5282 const char *tem;
5289 tem = start + XmlNameLength(enc, start);
5290 target = poolStoreString(&tempPool, enc, start, tem);
5295 XmlSkipS(enc, tem),
5907 const XML_Char *tem = poolCopyString(newPool, oldE->systemId);
5908 if (!tem)
5910 newE->systemId = tem;
5916 tem = poolCopyString(newPool, cachedOldBase);
5917 if (!tem)
5919 cachedNewBase = newE->base = tem;
5923 tem = poolCopyString(newPool, oldE->publicId);
5924 if (!tem)
5926 newE->publicId = tem;
5930 const XML_Char *tem = poolCopyStringN(newPool, oldE->textPtr,
5932 if (!tem)
5934 newE->textPtr = tem;
5938 const XML_Char *tem = poolCopyString(newPool, oldE->notation);
5939 if (!tem)
5941 newE->notation = tem;
6089 NAMED *tem = *(iter->p)++;
6090 if (tem)
6091 return tem;
6115 BLOCK *tem = p->next;
6118 p = tem;
6132 BLOCK *tem = p->next;
6134 p = tem;
6138 BLOCK *tem = p->next;
6140 p = tem;
6223 BLOCK *tem = pool->freeBlocks->next;
6226 pool->freeBlocks = tem;
6250 BLOCK *tem;
6256 tem = (BLOCK *)pool->mem->malloc_fcn(offsetof(BLOCK, s)
6258 if (!tem)
6260 tem->size = blockSize;
6261 tem->next = pool->blocks;
6262 pool->blocks = tem;
6264 memcpy(tem->s, pool->start,
6266 pool->ptr = tem->s + (pool->ptr - pool->start);
6267 pool->start = tem->s;
6268 pool->end = tem->s + blockSize;