Home
last modified time | relevance | path

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

/external/python/cpython3/Modules/
Dsha512module.c443 static PyTypeObject SHA512type; variable
455 return (SHAobject *)PyObject_New(SHAobject, &SHA512type); in newSHA512object()
481 if (((PyObject*)self)->ob_type == &SHA512type) { in SHA512Type_copy_impl()
628 static PyTypeObject SHA512type = { variable
780 Py_TYPE(&SHA512type) = &PyType_Type; in PyInit__sha512()
781 if (PyType_Ready(&SHA512type) < 0) in PyInit__sha512()
790 Py_INCREF((PyObject *)&SHA512type); in PyInit__sha512()
791 PyModule_AddObject(m, "SHA512Type", (PyObject *)&SHA512type); in PyInit__sha512()
/external/python/cpython2/Modules/
Dsha512module.c445 static PyTypeObject SHA512type; variable
457 return (SHAobject *)PyObject_New(SHAobject, &SHA512type); in newSHA512object()
478 if (((PyObject*)self)->ob_type == &SHA512type) { in SHA512_copy()
637 static PyTypeObject SHA512type = { variable
766 Py_TYPE(&SHA512type) = &PyType_Type; in init_sha512()
767 if (PyType_Ready(&SHA512type) < 0) in init_sha512()