Lines Matching refs:tem
3965 XML_Char *tem = poolStoreString(&dtd->pool, in doProlog() local
3969 if (!tem) in doProlog()
3971 normalizePublicId(tem); in doProlog()
3972 declEntity->publicId = tem; in doProlog()
4404 XML_Char *tem = poolStoreString(&tempPool, in doProlog() local
4408 if (!tem) in doProlog()
4410 normalizePublicId(tem); in doProlog()
4411 declNotationPublicId = tem; in doProlog()
5334 const char *tem; in reportProcessingInstruction() local
5341 tem = start + XmlNameLength(enc, start); in reportProcessingInstruction()
5342 target = poolStoreString(&tempPool, enc, start, tem); in reportProcessingInstruction()
5347 XmlSkipS(enc, tem), in reportProcessingInstruction()
5962 const XML_Char *tem = poolCopyString(newPool, oldE->systemId); in copyEntityTable() local
5963 if (!tem) in copyEntityTable()
5965 newE->systemId = tem; in copyEntityTable()
5971 tem = poolCopyString(newPool, cachedOldBase); in copyEntityTable()
5972 if (!tem) in copyEntityTable()
5974 cachedNewBase = newE->base = tem; in copyEntityTable()
5978 tem = poolCopyString(newPool, oldE->publicId); in copyEntityTable()
5979 if (!tem) in copyEntityTable()
5981 newE->publicId = tem; in copyEntityTable()
5985 const XML_Char *tem = poolCopyStringN(newPool, oldE->textPtr, in copyEntityTable() local
5987 if (!tem) in copyEntityTable()
5989 newE->textPtr = tem; in copyEntityTable()
5993 const XML_Char *tem = poolCopyString(newPool, oldE->notation); in copyEntityTable() local
5994 if (!tem) in copyEntityTable()
5996 newE->notation = tem; in copyEntityTable()
6144 NAMED *tem = *(iter->p)++; in hashTableIterNext() local
6145 if (tem) in hashTableIterNext()
6146 return tem; in hashTableIterNext()
6170 BLOCK *tem = p->next; in poolClear() local
6173 p = tem; in poolClear()
6187 BLOCK *tem = p->next; in poolDestroy() local
6189 p = tem; in poolDestroy()
6193 BLOCK *tem = p->next; in poolDestroy() local
6195 p = tem; in poolDestroy()
6278 BLOCK *tem = pool->freeBlocks->next; in poolGrow() local
6281 pool->freeBlocks = tem; in poolGrow()
6310 BLOCK *tem; in poolGrow() local
6320 tem = (BLOCK *)pool->mem->malloc_fcn(offsetof(BLOCK, s) in poolGrow()
6322 if (!tem) in poolGrow()
6324 tem->size = blockSize; in poolGrow()
6325 tem->next = pool->blocks; in poolGrow()
6326 pool->blocks = tem; in poolGrow()
6328 memcpy(tem->s, pool->start, in poolGrow()
6330 pool->ptr = tem->s + (pool->ptr - pool->start); in poolGrow()
6331 pool->start = tem->s; in poolGrow()
6332 pool->end = tem->s + blockSize; in poolGrow()