Home
last modified time | relevance | path

Searched refs:oldbase (Results 1 – 3 of 3) sorted by relevance

/external/libxml2/
Dtree.c5262 xmlChar *oldbase = NULL; in xmlNodeGetBase() local
5300 if (oldbase != NULL) { in xmlNodeGetBase()
5301 newbase = xmlBuildURI(oldbase, base); in xmlNodeGetBase()
5303 xmlFree(oldbase); in xmlNodeGetBase()
5305 oldbase = newbase; in xmlNodeGetBase()
5307 xmlFree(oldbase); in xmlNodeGetBase()
5312 oldbase = base; in xmlNodeGetBase()
5314 if ((!xmlStrncmp(oldbase, BAD_CAST "http://", 7)) || in xmlNodeGetBase()
5315 (!xmlStrncmp(oldbase, BAD_CAST "ftp://", 6)) || in xmlNodeGetBase()
5316 (!xmlStrncmp(oldbase, BAD_CAST "urn:", 4))) in xmlNodeGetBase()
[all …]
Dparser.c9079 const xmlChar *oldbase = ctxt->input->base; in xmlParseAttValueInternal() local
9081 if (oldbase != ctxt->input->base) { in xmlParseAttValueInternal()
9082 long delta = ctxt->input->base - oldbase; in xmlParseAttValueInternal()
9103 const xmlChar *oldbase = ctxt->input->base; in xmlParseAttValueInternal() local
9107 if (oldbase != ctxt->input->base) { in xmlParseAttValueInternal()
9108 long delta = ctxt->input->base - oldbase; in xmlParseAttValueInternal()
9126 const xmlChar *oldbase = ctxt->input->base; in xmlParseAttValueInternal() local
9130 if (oldbase != ctxt->input->base) { in xmlParseAttValueInternal()
9131 long delta = ctxt->input->base - oldbase; in xmlParseAttValueInternal()
9159 const xmlChar *oldbase = ctxt->input->base; in xmlParseAttValueInternal() local
[all …]
/external/dlmalloc/
Dmalloc.c3956 static void* prepend_alloc(mstate m, char* newbase, char* oldbase, in prepend_alloc() argument
3959 mchunkptr oldfirst = align_as_chunk(oldbase); in prepend_alloc()
4243 char* oldbase = sp->base; in sys_alloc() local
4246 return prepend_alloc(m, tbase, oldbase, nb); in sys_alloc()