HomeSort by relevance Sort by last modified time
    Searched defs:newobj (Results 26 - 50 of 68) sorted by null

12 3

  /external/python/cpython3/Modules/
_hashopenssl.c 180 EVPobject *newobj; local
182 if ( (newobj = newEVPobject(self->name))==NULL)
185 if (!locked_EVP_MD_CTX_copy(newobj->ctx, self)) {
188 return (PyObject *)newobj;
_json.c 1497 PyObject *newobj; local
    [all...]
_operator.c 716 PyObject *newobj; local
728 newobj = PyObject_GetAttr(obj, attr_name);
730 if (newobj == NULL) {
734 obj = newobj;
737 newobj = PyObject_GetAttr(obj, attr);
738 if (newobj == NULL)
740 obj = newobj;
    [all...]
  /external/python/cpython3/Modules/_sha3/
sha3module.c 165 SHA3object *newobj; local
166 newobj = (SHA3object *)PyObject_New(SHA3object, type);
167 if (newobj == NULL) {
171 newobj->lock = NULL;
173 return newobj;
290 SHA3object *newobj; local
292 if ((newobj = newSHA3object(Py_TYPE(self))) == NULL) {
296 SHA3_copystate(newobj->hash_state, self->hash_state);
298 return (PyObject *)newobj;
  /external/python/cpython3/Objects/stringlib/
unicode_format.h 149 PyObject *newobj; local
153 newobj = PyObject_GetAttr(obj, str);
155 return newobj;
169 PyObject *newobj; local
173 newobj = PyObject_GetItem(obj, idx_obj);
175 return newobj;
182 PyObject *newobj; local
186 newobj = PyObject_GetItem(obj, str);
188 return newobj;
    [all...]
  /external/python/cpython3/Objects/
tupleobject.c 669 PyObject *tmp, *newobj, *item; local
677 newobj = type->tp_alloc(type, n = PyTuple_GET_SIZE(tmp));
678 if (newobj == NULL)
683 PyTuple_SET_ITEM(newobj, i, item);
686 return newobj;
floatobject.c 1587 PyObject *tmp, *newobj; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
_json.c 1965 PyObject *newobj; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
intobject.c 1124 PyObject *tmp, *newobj; local
    [all...]
floatobject.c 1827 PyObject *tmp, *newobj; local
    [all...]
stringobject.c 1988 PyObject *newobj; local
2021 PyObject *newobj; local
2052 PyObject *newobj; local
2086 PyObject *newobj; local
2165 PyObject *newobj; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/stringlib/
string_format.h 234 PyObject *newobj; local
238 newobj = PyObject_GetAttr(obj, str);
240 return newobj;
254 PyObject *newobj; local
258 newobj = PyObject_GetItem(obj, idx_obj);
260 return newobj;
267 PyObject *newobj; local
271 newobj = PyObject_GetItem(obj, str);
273 return newobj;
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
_json.c 1973 PyObject *newobj; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
intobject.c 1098 PyObject *tmp, *newobj; local
1115 newobj = type->tp_alloc(type, 0);
    [all...]
floatobject.c 1812 PyObject *tmp, *newobj; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/stringlib/
string_format.h 237 PyObject *newobj; local
241 newobj = PyObject_GetAttr(obj, str);
243 return newobj;
257 PyObject *newobj; local
261 newobj = PyObject_GetItem(obj, idx_obj);
263 return newobj;
270 PyObject *newobj; local
274 newobj = PyObject_GetItem(obj, str);
276 return newobj;
    [all...]
  /external/python/cpython2/Modules/
_json.c 2013 PyObject *newobj; local
    [all...]
  /external/python/cpython2/Objects/
intobject.c 1117 PyObject *tmp, *newobj; local
1134 newobj = type->tp_alloc(type, 0);
1135 if (newobj == NULL) {
1139 ((PyIntObject *)newobj)->ob_ival = ival;
1141 return newobj;
    [all...]
floatobject.c 1836 PyObject *tmp, *newobj; local
    [all...]
  /external/python/cpython2/Objects/stringlib/
string_format.h 234 PyObject *newobj; local
238 newobj = PyObject_GetAttr(obj, str);
240 return newobj;
254 PyObject *newobj; local
258 newobj = PyObject_GetItem(obj, idx_obj);
260 return newobj;
267 PyObject *newobj; local
271 newobj = PyObject_GetItem(obj, str);
273 return newobj;
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
ast.c 2894 asdl_seq *newobj = asdl_seq_new(1, c->c_arena); local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
ast.c 2877 asdl_seq *newobj = asdl_seq_new(1, c->c_arena); local
    [all...]
  /external/oj-libjdwp/src/share/back/
util.c 61 jobject newobj; local
75 newobj = JNI_FUNC_PTR(env,NewGlobalRef)(env, obj);
76 if ( newobj == NULL ) {
79 *pobj = newobj;
    [all...]
  /external/python/cpython2/Python/
ast.c 2894 asdl_seq *newobj = asdl_seq_new(1, c->c_arena); local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/PyMod-2.7.2/Objects/
longobject.c 4050 PyLongObject *tmp, *newobj; local
    [all...]

Completed in 1141 milliseconds

12 3