Searched refs:iobj (Results 1 - 11 of 11) sorted by relevance

/external/python/cpython2/Modules/
H A D_randommodule.c405 PyObject *iobj; local
418 iobj = PyInt_FromLong(i);
419 if (iobj == NULL)
421 remobj = PyNumber_Remainder(n, iobj);
422 Py_DECREF(iobj);
H A Dmathmodule.c1090 PyObject *result, *iobj, *newresult; local
1121 iobj = (PyObject *)PyInt_FromLong(i);
1122 if (iobj == NULL)
1124 newresult = PyNumber_Multiply(result, iobj);
1125 Py_DECREF(iobj);
/external/python/cpython3/Objects/
H A Dbytesobject.c455 PyObject *result, *iobj; local
463 iobj = PyNumber_Index(v);
465 iobj = PyNumber_Long(v);
466 if (iobj == NULL) {
470 else if (!PyLong_Check(iobj))
471 Py_CLEAR(iobj);
472 if (iobj != NULL) {
473 result = _PyUnicode_FormatLong(iobj, flags & F_ALT, prec, type);
474 Py_DECREF(iobj);
498 PyObject *iobj; local
[all...]
H A Dunicodeobject.c14216 PyObject *iobj, *res; local
14225 iobj = PyNumber_Index(v);
14226 if (iobj == NULL) {
14233 iobj = PyNumber_Long(v);
14234 if (iobj == NULL ) {
14240 assert(PyLong_Check(iobj));
14243 iobj = v;
14244 Py_INCREF(iobj);
14275 Py_DECREF(iobj);
14278 Py_DECREF(iobj);
14321 PyObject *iobj; local
[all...]
/external/python/cpython2/Objects/
H A Dstringobject.c4508 PyObject *iobj=NULL; local
4511 iobj = v;
4512 Py_INCREF(iobj);
4515 iobj = PyNumber_Int(v);
4516 if (iobj==NULL) {
4518 iobj = PyNumber_Long(v);
4521 if (iobj!=NULL) {
4522 if (PyInt_Check(iobj)) {
4527 flags, prec, c, iobj);
4528 Py_DECREF(iobj);
[all...]
H A Dunicodeobject.c8633 PyObject *iobj=NULL; local
8636 iobj = v;
8637 Py_INCREF(iobj);
8640 iobj = PyNumber_Int(v);
8641 if (iobj==NULL) {
8643 iobj = PyNumber_Long(v);
8646 if (iobj!=NULL) {
8647 if (PyInt_Check(iobj)) {
8651 flags, prec, c, iobj);
8652 Py_DECREF(iobj);
[all...]
/external/apache-xml/src/main/java/org/apache/xml/serializer/dom3/
H A DDOM3TreeWalker.java2064 final Object iobj = s_propKeys.get(key);
2065 if (iobj != null) {
2066 if (iobj instanceof Integer) {
2079 final int BITFLAG = ((Integer) iobj).intValue();
/external/mesa3d/src/mesa/drivers/dri/i965/
H A Dintel_screen.c485 struct intel_texture_object *iobj; local
498 iobj = intel_texture_object(obj);
522 intel_setup_image_from_mipmap_tree(brw, image, iobj->mt, level, zoffset);
524 image->has_depthstencil = iobj->mt->stencil_mt? true : false;
/external/mesa3d/src/mesa/drivers/dri/i915/
H A Dintel_screen.c371 struct intel_texture_object *iobj; local
384 iobj = intel_texture_object(obj);
408 intel_setup_image_from_mipmap_tree(intel, image, iobj->mt, level, zoffset);
/external/python/cpython3/Python/
H A Dgetargs.c745 PyObject *iobj; local
750 iobj = PyNumber_Index(arg);
751 if (iobj != NULL) {
752 ival = PyLong_AsSsize_t(iobj);
753 Py_DECREF(iobj);
/external/annotation-tools/asmx/test/lib/
H A Dxalan-2.6.0.jarMETA-INF/ META-INF/MANIFEST.MF java_cup/ java_cup/runtime/ META-INF/services/ org/ org/apache/ ...

Completed in 373 milliseconds