Lines Matching defs:tem

4879         XML_Char *tem
4882 if (! tem)
4884 normalizePublicId(tem);
4885 parser->m_declEntity->publicId = tem;
5346 XML_Char *tem = poolStoreString(&parser->m_tempPool, enc,
5349 if (! tem)
5351 normalizePublicId(tem);
5352 parser->m_declNotationPublicId = tem;
6433 const char *tem;
6440 tem = start + XmlNameLength(enc, start);
6441 target = poolStoreString(&parser->m_tempPool, enc, start, tem);
6445 data = poolStoreString(&parser->m_tempPool, enc, XmlSkipS(enc, tem),
7117 const XML_Char *tem = poolCopyString(newPool, oldE->systemId);
7118 if (! tem)
7120 newE->systemId = tem;
7126 tem = poolCopyString(newPool, cachedOldBase);
7127 if (! tem)
7129 cachedNewBase = newE->base = tem;
7133 tem = poolCopyString(newPool, oldE->publicId);
7134 if (! tem)
7136 newE->publicId = tem;
7139 const XML_Char *tem
7141 if (! tem)
7143 newE->textPtr = tem;
7147 const XML_Char *tem = poolCopyString(newPool, oldE->notation);
7148 if (! tem)
7150 newE->notation = tem;
7318 NAMED *tem = *(iter->p)++;
7319 if (tem)
7320 return tem;
7342 BLOCK *tem = p->next;
7345 p = tem;
7358 BLOCK *tem = p->next;
7360 p = tem;
7364 BLOCK *tem = p->next;
7366 p = tem;
7485 BLOCK *tem = pool->freeBlocks->next;
7488 pool->freeBlocks = tem;
7530 BLOCK *tem;
7561 tem = pool->mem->malloc_fcn(bytesToAllocate);
7562 if (! tem)
7564 tem->size = blockSize;
7565 tem->next = pool->blocks;
7566 pool->blocks = tem;
7568 memcpy(tem->s, pool->start, (pool->ptr - pool->start) * sizeof(XML_Char));
7569 pool->ptr = tem->s + (pool->ptr - pool->start);
7570 pool->start = tem->s;
7571 pool->end = tem->s + blockSize;