Home | History | Annotate | Download | only in lib

Lines Matching defs:tem

3926         XML_Char *tem = poolStoreString(&dtd->pool,
3930 if (!tem)
3932 normalizePublicId(tem);
3933 declEntity->publicId = tem;
4365 XML_Char *tem = poolStoreString(&tempPool,
4369 if (!tem)
4371 normalizePublicId(tem);
4372 declNotationPublicId = tem;
5295 const char *tem;
5302 tem = start + XmlNameLength(enc, start);
5303 target = poolStoreString(&tempPool, enc, start, tem);
5308 XmlSkipS(enc, tem),
5923 const XML_Char *tem = poolCopyString(newPool, oldE->systemId);
5924 if (!tem)
5926 newE->systemId = tem;
5932 tem = poolCopyString(newPool, cachedOldBase);
5933 if (!tem)
5935 cachedNewBase = newE->base = tem;
5939 tem = poolCopyString(newPool, oldE->publicId);
5940 if (!tem)
5942 newE->publicId = tem;
5946 const XML_Char *tem = poolCopyStringN(newPool, oldE->textPtr,
5948 if (!tem)
5950 newE->textPtr = tem;
5954 const XML_Char *tem = poolCopyString(newPool, oldE->notation);
5955 if (!tem)
5957 newE->notation = tem;
6105 NAMED *tem = *(iter->p)++;
6106 if (tem)
6107 return tem;
6131 BLOCK *tem = p->next;
6134 p = tem;
6148 BLOCK *tem = p->next;
6150 p = tem;
6154 BLOCK *tem = p->next;
6156 p = tem;
6239 BLOCK *tem = pool->freeBlocks->next;
6242 pool->freeBlocks = tem;
6271 BLOCK *tem;
6281 tem = (BLOCK *)pool->mem->malloc_fcn(offsetof(BLOCK, s)
6283 if (!tem)
6285 tem->size = blockSize;
6286 tem->next = pool->blocks;
6287 pool->blocks = tem;
6289 memcpy(tem->s, pool->start,
6291 pool->ptr = tem->s + (pool->ptr - pool->start);
6292 pool->start = tem->s;
6293 pool->end = tem->s + blockSize;