Lines Matching refs:temp

2002       void *const temp = XML_GetBuffer(parser, nLeftOver);  in XML_Parse()  local
2007 if (temp == NULL) { in XML_Parse()
2671 char *temp = (char *)REALLOC(parser, tag->buf, bufSize); in storeRawNames() local
2672 if (temp == NULL) in storeRawNames()
2678 tag->name.str = (XML_Char *)temp; in storeRawNames()
2684 = (XML_Char *)temp + (tag->name.localPart - (XML_Char *)tag->buf); in storeRawNames()
2685 tag->buf = temp; in storeRawNames()
2686 tag->bufEnd = temp + bufSize; in storeRawNames()
2687 rawNameBuf = temp + nameLen; in storeRawNames()
3027 char *temp = (char *)REALLOC(parser, tag->buf, bufSize); in doContent() local
3028 if (temp == NULL) in doContent()
3030 tag->buf = temp; in doContent()
3031 tag->bufEnd = temp + bufSize; in doContent()
3032 toPtr = (XML_Char *)temp + convLen; in doContent()
3370 ATTRIBUTE *temp; in storeAtts() local
3394 temp = (ATTRIBUTE *)REALLOC(parser, (void *)parser->m_atts, in storeAtts()
3396 if (temp == NULL) { in storeAtts()
3400 parser->m_atts = temp; in storeAtts()
3562 NS_ATT *temp; in storeAtts() local
3590 temp = (NS_ATT *)REALLOC(parser, parser->m_nsAtts, in storeAtts()
3592 if (! temp) { in storeAtts()
3597 parser->m_nsAtts = temp; in storeAtts()
4018 XML_Char *temp = (XML_Char *)REALLOC( in addBinding() local
4020 if (temp == NULL) in addBinding()
4022 b->uri = temp; in addBinding()
6539 DEFAULT_ATTRIBUTE *temp; in defineAttribute() local
6558 temp = (DEFAULT_ATTRIBUTE *)REALLOC(parser, type->defaultAtts, in defineAttribute()
6560 if (temp == NULL) in defineAttribute()
6563 type->defaultAtts = temp; in defineAttribute()
7491 BLOCK *temp; in poolGrow() local
7513 temp = (BLOCK *)pool->mem->realloc_fcn(pool->blocks, in poolGrow()
7515 if (temp == NULL) in poolGrow()
7517 pool->blocks = temp; in poolGrow()
7592 CONTENT_SCAFFOLD *temp; in nextScaffoldPart() local
7608 temp = (CONTENT_SCAFFOLD *)REALLOC( in nextScaffoldPart()
7610 if (temp == NULL) in nextScaffoldPart()
7614 temp = (CONTENT_SCAFFOLD *)MALLOC(parser, INIT_SCAFFOLD_ELEMENTS in nextScaffoldPart()
7616 if (temp == NULL) in nextScaffoldPart()
7620 dtd->scaffold = temp; in nextScaffoldPart()