Home
last modified time | relevance | path

Searched refs:MD5type (Results 1 – 2 of 2) sorted by relevance

/external/python/cpython2/Modules/
Dmd5module.c21 static PyTypeObject MD5type; variable
23 #define is_md5object(v) ((v)->ob_type == &MD5type)
30 md5p = PyObject_New(md5object, &MD5type); in newmd5object()
236 static PyTypeObject MD5type = { variable
329 Py_TYPE(&MD5type) = &PyType_Type; in init_md5()
330 if (PyType_Ready(&MD5type) < 0) in init_md5()
336 PyDict_SetItemString(d, "MD5Type", (PyObject *)&MD5type); in init_md5()
/external/python/cpython3/Modules/
Dmd5module.c321 static PyTypeObject MD5type; variable
327 return (MD5object *)PyObject_New(MD5object, &MD5type); in newMD5object()
466 static PyTypeObject MD5type = { variable
574 Py_TYPE(&MD5type) = &PyType_Type; in PyInit__md5()
575 if (PyType_Ready(&MD5type) < 0) in PyInit__md5()
582 Py_INCREF((PyObject *)&MD5type); in PyInit__md5()
583 PyModule_AddObject(m, "MD5Type", (PyObject *)&MD5type); in PyInit__md5()