Home | History | Annotate | Download | only in lib

Lines Matching refs:tem

4444         XML_Char *tem = poolStoreString(&dtd->pool,
4448 if (!tem)
4450 normalizePublicId(tem);
4451 parser->m_declEntity->publicId = tem;
4895 XML_Char *tem = poolStoreString(&parser->m_tempPool,
4899 if (!tem)
4901 normalizePublicId(tem);
4902 parser->m_declNotationPublicId = tem;
5899 const char *tem;
5906 tem = start + XmlNameLength(enc, start);
5907 target = poolStoreString(&parser->m_tempPool, enc, start, tem);
5912 XmlSkipS(enc, tem),
6573 const XML_Char *tem = poolCopyString(newPool, oldE->systemId);
6574 if (!tem)
6576 newE->systemId = tem;
6582 tem = poolCopyString(newPool, cachedOldBase);
6583 if (!tem)
6585 cachedNewBase = newE->base = tem;
6589 tem = poolCopyString(newPool, oldE->publicId);
6590 if (!tem)
6592 newE->publicId = tem;
6596 const XML_Char *tem = poolCopyStringN(newPool, oldE->textPtr,
6598 if (!tem)
6600 newE->textPtr = tem;
6604 const XML_Char *tem = poolCopyString(newPool, oldE->notation);
6605 if (!tem)
6607 newE->notation = tem;
6774 NAMED *tem = *(iter->p)++;
6775 if (tem)
6776 return tem;
6800 BLOCK *tem = p->next;
6803 p = tem;
6817 BLOCK *tem = p->next;
6819 p = tem;
6823 BLOCK *tem = p->next;
6825 p = tem;
6949 BLOCK *tem = pool->freeBlocks->next;
6952 pool->freeBlocks = tem;
6995 BLOCK *tem;
7026 tem = (BLOCK *)pool->mem->malloc_fcn(bytesToAllocate);
7027 if (!tem)
7029 tem->size = blockSize;
7030 tem->next = pool->blocks;
7031 pool->blocks = tem;
7033 memcpy(tem->s, pool->start,
7035 pool->ptr = tem->s + (pool->ptr - pool->start);
7036 pool->start = tem->s;
7037 pool->end = tem->s + blockSize;