Home
last modified time | relevance | path

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

/external/scapy/scapy/
Ddata.py277 oldbase = self.base
281 self.base = oldbase
/external/libxml2/
Dtree.c5272 xmlChar *oldbase = NULL; in xmlNodeGetBase() local
5310 if (oldbase != NULL) { in xmlNodeGetBase()
5311 newbase = xmlBuildURI(oldbase, base); in xmlNodeGetBase()
5313 xmlFree(oldbase); in xmlNodeGetBase()
5315 oldbase = newbase; in xmlNodeGetBase()
5317 xmlFree(oldbase); in xmlNodeGetBase()
5322 oldbase = base; in xmlNodeGetBase()
5324 if ((!xmlStrncmp(oldbase, BAD_CAST "http://", 7)) || in xmlNodeGetBase()
5325 (!xmlStrncmp(oldbase, BAD_CAST "ftp://", 6)) || in xmlNodeGetBase()
5326 (!xmlStrncmp(oldbase, BAD_CAST "urn:", 4))) in xmlNodeGetBase()
[all …]
Dparser.c8872 const xmlChar *oldbase = ctxt->input->base; in xmlParseAttValueInternal() local
8874 if (oldbase != ctxt->input->base) { in xmlParseAttValueInternal()
8875 long delta = ctxt->input->base - oldbase; in xmlParseAttValueInternal()
8896 const xmlChar *oldbase = ctxt->input->base; in xmlParseAttValueInternal() local
8900 if (oldbase != ctxt->input->base) { in xmlParseAttValueInternal()
8901 long delta = ctxt->input->base - oldbase; in xmlParseAttValueInternal()
8919 const xmlChar *oldbase = ctxt->input->base; in xmlParseAttValueInternal() local
8923 if (oldbase != ctxt->input->base) { in xmlParseAttValueInternal()
8924 long delta = ctxt->input->base - oldbase; in xmlParseAttValueInternal()
8952 const xmlChar *oldbase = ctxt->input->base; in xmlParseAttValueInternal() local
[all …]
/external/python/cpython2/Objects/
Dtypeobject.c3174 PyTypeObject *newbase, *oldbase; in compatible_for_assignment() local
3188 oldbase = oldto; in compatible_for_assignment()
3191 while (equiv_structs(oldbase, oldbase->tp_base)) in compatible_for_assignment()
3192 oldbase = oldbase->tp_base; in compatible_for_assignment()
3193 if (newbase != oldbase && in compatible_for_assignment()
3194 (newbase->tp_base != oldbase->tp_base || in compatible_for_assignment()
3195 !same_slots_added(newbase, oldbase))) { in compatible_for_assignment()
/external/python/cpython3/Objects/
Dtypeobject.c3882 PyTypeObject *newbase, *oldbase; in compatible_for_assignment() local
3904 oldbase = oldto; in compatible_for_assignment()
3907 while (compatible_with_tp_base(oldbase)) in compatible_for_assignment()
3908 oldbase = oldbase->tp_base; in compatible_for_assignment()
3909 if (newbase != oldbase && in compatible_for_assignment()
3910 (newbase->tp_base != oldbase->tp_base || in compatible_for_assignment()
3911 !same_slots_added(newbase, oldbase))) { in compatible_for_assignment()
/external/python/cpython2/Modules/_ctypes/libffi/src/
Ddlmalloc.c3328 static void* prepend_alloc(mstate m, char* newbase, char* oldbase, in prepend_alloc() argument
3331 mchunkptr oldfirst = align_as_chunk(oldbase); in prepend_alloc()
3591 char* oldbase = sp->base; in sys_alloc() local
3594 return prepend_alloc(m, tbase, oldbase, nb); in sys_alloc()
/external/libffi/src/
Ddlmalloc.c3323 static void* prepend_alloc(mstate m, char* newbase, char* oldbase, in prepend_alloc() argument
3326 mchunkptr oldfirst = align_as_chunk(oldbase); in prepend_alloc()
3586 char* oldbase = sp->base; in sys_alloc() local
3589 return prepend_alloc(m, tbase, oldbase, nb); in sys_alloc()
/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()