Home
last modified time | relevance | path

Searched refs:PyBuffer_Type (Results 1 – 9 of 9) sorted by relevance

/external/python/cpython2/Include/
Dbufferobject.h13 PyAPI_DATA(PyTypeObject) PyBuffer_Type;
15 #define PyBuffer_Check(op) (Py_TYPE(op) == &PyBuffer_Type)
/external/python/cpython2/Objects/
Dbufferobject.c115 b = PyObject_NEW(PyBufferObject, &PyBuffer_Type); in buffer_from_memory()
218 b = (PyBufferObject *) PyObject_INIT(o, &PyBuffer_Type); in PyBuffer_New()
858 PyTypeObject PyBuffer_Type = { variable
Dobject.c2143 if (PyType_Ready(&PyBuffer_Type) < 0) in _Py_ReadyTypes()
/external/python/cpython2/PC/os2vacpp/
Dpython.def479 PyBuffer_Type
/external/python/cpython2/Modules/_sqlite/
Dmodule.c159 || type == &PyString_Type || type == &PyUnicode_Type || type == &PyBuffer_Type) { in module_register_adapter()
/external/python/cpython2/Doc/c-api/
Dbuffer.rst369 .. c:var:: PyTypeObject PyBuffer_Type
390 Return true if the argument has type :c:data:`PyBuffer_Type`.
Dtypeobj.rst1377 :c:type:`PyBuffer_Type` objects contain a single segment.
/external/python/cpython2/PC/os2emx/
Dpython27.def190 "PyBuffer_Type"
/external/python/cpython2/Python/
Dbltinmodule.c2726 SETBUILTIN("buffer", &PyBuffer_Type); in _PyBuiltin_Init()