Lines Matching refs:tem

4792         XML_Char *tem
4795 if (! tem)
4797 normalizePublicId(tem);
4798 parser->m_declEntity->publicId = tem;
5227 XML_Char *tem = poolStoreString(&parser->m_tempPool, enc,
5230 if (! tem)
5232 normalizePublicId(tem);
5233 parser->m_declNotationPublicId = tem;
6294 const char *tem;
6301 tem = start + XmlNameLength(enc, start);
6302 target = poolStoreString(&parser->m_tempPool, enc, start, tem);
6306 data = poolStoreString(&parser->m_tempPool, enc, XmlSkipS(enc, tem),
6963 const XML_Char *tem = poolCopyString(newPool, oldE->systemId);
6964 if (! tem)
6966 newE->systemId = tem;
6972 tem = poolCopyString(newPool, cachedOldBase);
6973 if (! tem)
6975 cachedNewBase = newE->base = tem;
6979 tem = poolCopyString(newPool, oldE->publicId);
6980 if (! tem)
6982 newE->publicId = tem;
6985 const XML_Char *tem
6987 if (! tem)
6989 newE->textPtr = tem;
6993 const XML_Char *tem = poolCopyString(newPool, oldE->notation);
6994 if (! tem)
6996 newE->notation = tem;
7164 NAMED *tem = *(iter->p)++;
7165 if (tem)
7166 return tem;
7188 BLOCK *tem = p->next;
7191 p = tem;
7204 BLOCK *tem = p->next;
7206 p = tem;
7210 BLOCK *tem = p->next;
7212 p = tem;
7331 BLOCK *tem = pool->freeBlocks->next;
7334 pool->freeBlocks = tem;
7376 BLOCK *tem;
7407 tem = pool->mem->malloc_fcn(bytesToAllocate);
7408 if (! tem)
7410 tem->size = blockSize;
7411 tem->next = pool->blocks;
7412 pool->blocks = tem;
7414 memcpy(tem->s, pool->start, (pool->ptr - pool->start) * sizeof(XML_Char));
7415 pool->ptr = tem->s + (pool->ptr - pool->start);
7416 pool->start = tem->s;
7417 pool->end = tem->s + blockSize;