Home
last modified time | relevance | path

Searched refs:iobj (Results 1 – 7 of 7) sorted by relevance

/external/python/cpython2/Modules/
D_randommodule.c405 PyObject *iobj; in random_jumpahead() local
418 iobj = PyInt_FromLong(i); in random_jumpahead()
419 if (iobj == NULL) in random_jumpahead()
421 remobj = PyNumber_Remainder(n, iobj); in random_jumpahead()
422 Py_DECREF(iobj); in random_jumpahead()
Dmathmodule.c1090 PyObject *result, *iobj, *newresult; in math_factorial() local
1121 iobj = (PyObject *)PyInt_FromLong(i); in math_factorial()
1122 if (iobj == NULL) in math_factorial()
1124 newresult = PyNumber_Multiply(result, iobj); in math_factorial()
1125 Py_DECREF(iobj); in math_factorial()
/external/python/cpython2/Objects/
Dstringobject.c4508 PyObject *iobj=NULL; in PyString_Format() local
4511 iobj = v; in PyString_Format()
4512 Py_INCREF(iobj); in PyString_Format()
4515 iobj = PyNumber_Int(v); in PyString_Format()
4516 if (iobj==NULL) { in PyString_Format()
4518 iobj = PyNumber_Long(v); in PyString_Format()
4521 if (iobj!=NULL) { in PyString_Format()
4522 if (PyInt_Check(iobj)) { in PyString_Format()
4527 flags, prec, c, iobj); in PyString_Format()
4528 Py_DECREF(iobj); in PyString_Format()
[all …]
Dunicodeobject.c8633 PyObject *iobj=NULL; in PyUnicode_Format() local
8636 iobj = v; in PyUnicode_Format()
8637 Py_INCREF(iobj); in PyUnicode_Format()
8640 iobj = PyNumber_Int(v); in PyUnicode_Format()
8641 if (iobj==NULL) { in PyUnicode_Format()
8643 iobj = PyNumber_Long(v); in PyUnicode_Format()
8646 if (iobj!=NULL) { in PyUnicode_Format()
8647 if (PyInt_Check(iobj)) { in PyUnicode_Format()
8651 flags, prec, c, iobj); in PyUnicode_Format()
8652 Py_DECREF(iobj); in PyUnicode_Format()
[all …]
/external/apache-xml/src/main/java/org/apache/xml/serializer/dom3/
DDOM3TreeWalker.java2064 final Object iobj = s_propKeys.get(key); in initProperties() local
2065 if (iobj != null) { in initProperties()
2066 if (iobj instanceof Integer) { in initProperties()
2079 final int BITFLAG = ((Integer) iobj).intValue(); in initProperties()
/external/mesa3d/src/mesa/drivers/dri/i915/
Dintel_screen.c371 struct intel_texture_object *iobj; in intel_create_image_from_texture() local
384 iobj = intel_texture_object(obj); in intel_create_image_from_texture()
408 intel_setup_image_from_mipmap_tree(intel, image, iobj->mt, level, zoffset); in intel_create_image_from_texture()
/external/mesa3d/src/mesa/drivers/dri/i965/
Dintel_screen.c485 struct intel_texture_object *iobj; in intel_create_image_from_texture() local
498 iobj = intel_texture_object(obj); in intel_create_image_from_texture()
522 intel_setup_image_from_mipmap_tree(brw, image, iobj->mt, level, zoffset); in intel_create_image_from_texture()
524 image->has_depthstencil = iobj->mt->stencil_mt? true : false; in intel_create_image_from_texture()