Lines Matching defs:tem

5370         XML_Char *tem
5373 if (! tem)
5375 normalizePublicId(tem);
5376 parser->m_declEntity->publicId = tem;
5837 XML_Char *tem = poolStoreString(&parser->m_tempPool, enc,
5840 if (! tem)
5842 normalizePublicId(tem);
5843 parser->m_declNotationPublicId = tem;
7066 const char *tem;
7073 tem = start + XmlNameLength(enc, start);
7074 target = poolStoreString(&parser->m_tempPool, enc, start, tem);
7078 data = poolStoreString(&parser->m_tempPool, enc, XmlSkipS(enc, tem),
7750 const XML_Char *tem = poolCopyString(newPool, oldE->systemId);
7751 if (! tem)
7753 newE->systemId = tem;
7759 tem = poolCopyString(newPool, cachedOldBase);
7760 if (! tem)
7762 cachedNewBase = newE->base = tem;
7766 tem = poolCopyString(newPool, oldE->publicId);
7767 if (! tem)
7769 newE->publicId = tem;
7772 const XML_Char *tem
7774 if (! tem)
7776 newE->textPtr = tem;
7780 const XML_Char *tem = poolCopyString(newPool, oldE->notation);
7781 if (! tem)
7783 newE->notation = tem;
7951 NAMED *tem = *(iter->p)++;
7952 if (tem)
7953 return tem;
7975 BLOCK *tem = p->next;
7978 p = tem;
7991 BLOCK *tem = p->next;
7993 p = tem;
7997 BLOCK *tem = p->next;
7999 p = tem;
8118 BLOCK *tem = pool->freeBlocks->next;
8121 pool->freeBlocks = tem;
8162 BLOCK *tem;
8193 tem = MALLOC(pool->parser, bytesToAllocate);
8194 if (! tem)
8196 tem->size = blockSize;
8197 tem->next = pool->blocks;
8198 pool->blocks = tem;
8200 memcpy(tem->s, pool->start, (pool->ptr - pool->start) * sizeof(XML_Char));
8201 pool->ptr = tem->s + (pool->ptr - pool->start);
8202 pool->start = tem->s;
8203 pool->end = tem->s + blockSize;