Lines Matching refs:tem

5010         XML_Char *tem  in doProlog()  local
5013 if (! tem) in doProlog()
5015 normalizePublicId(tem); in doProlog()
5016 parser->m_declEntity->publicId = tem; in doProlog()
5477 XML_Char *tem = poolStoreString(&parser->m_tempPool, enc, in doProlog() local
5480 if (! tem) in doProlog()
5482 normalizePublicId(tem); in doProlog()
5483 parser->m_declNotationPublicId = tem; in doProlog()
6701 const char *tem; in reportProcessingInstruction() local
6708 tem = start + XmlNameLength(enc, start); in reportProcessingInstruction()
6709 target = poolStoreString(&parser->m_tempPool, enc, start, tem); in reportProcessingInstruction()
6713 data = poolStoreString(&parser->m_tempPool, enc, XmlSkipS(enc, tem), in reportProcessingInstruction()
7385 const XML_Char *tem = poolCopyString(newPool, oldE->systemId); in copyEntityTable() local
7386 if (! tem) in copyEntityTable()
7388 newE->systemId = tem; in copyEntityTable()
7394 tem = poolCopyString(newPool, cachedOldBase); in copyEntityTable()
7395 if (! tem) in copyEntityTable()
7397 cachedNewBase = newE->base = tem; in copyEntityTable()
7401 tem = poolCopyString(newPool, oldE->publicId); in copyEntityTable()
7402 if (! tem) in copyEntityTable()
7404 newE->publicId = tem; in copyEntityTable()
7407 const XML_Char *tem in copyEntityTable() local
7409 if (! tem) in copyEntityTable()
7411 newE->textPtr = tem; in copyEntityTable()
7415 const XML_Char *tem = poolCopyString(newPool, oldE->notation); in copyEntityTable() local
7416 if (! tem) in copyEntityTable()
7418 newE->notation = tem; in copyEntityTable()
7586 NAMED *tem = *(iter->p)++; in hashTableIterNext() local
7587 if (tem) in hashTableIterNext()
7588 return tem; in hashTableIterNext()
7610 BLOCK *tem = p->next; in poolClear() local
7613 p = tem; in poolClear()
7626 BLOCK *tem = p->next; in poolDestroy() local
7628 p = tem; in poolDestroy()
7632 BLOCK *tem = p->next; in poolDestroy() local
7634 p = tem; in poolDestroy()
7753 BLOCK *tem = pool->freeBlocks->next; in poolGrow() local
7756 pool->freeBlocks = tem; in poolGrow()
7798 BLOCK *tem; in poolGrow() local
7829 tem = pool->mem->malloc_fcn(bytesToAllocate); in poolGrow()
7830 if (! tem) in poolGrow()
7832 tem->size = blockSize; in poolGrow()
7833 tem->next = pool->blocks; in poolGrow()
7834 pool->blocks = tem; in poolGrow()
7836 memcpy(tem->s, pool->start, (pool->ptr - pool->start) * sizeof(XML_Char)); in poolGrow()
7837 pool->ptr = tem->s + (pool->ptr - pool->start); in poolGrow()
7838 pool->start = tem->s; in poolGrow()
7839 pool->end = tem->s + blockSize; in poolGrow()