Searched refs:buffertype (Results 1 – 5 of 5) sorted by relevance
32 int buffertype,
36 .. c:function:: PyObject *PyMemoryView_GetContiguous(PyObject *obj, int buffertype, char order)
920 PyMemoryView_GetContiguous(PyObject *obj, int buffertype, char order) in PyMemoryView_GetContiguous() argument926 assert(buffertype == PyBUF_READ || buffertype == PyBUF_WRITE); in PyMemoryView_GetContiguous()934 if (buffertype == PyBUF_WRITE && view->readonly) { in PyMemoryView_GetContiguous()944 if (buffertype == PyBUF_WRITE) { in PyMemoryView_GetContiguous()
2394 PyObject *buffertype; in get_contiguous() local2399 if (!PyArg_ParseTuple(args, "OOO", &obj, &buffertype, &order)) { in get_contiguous()2403 if (!PyLong_Check(buffertype)) { in get_contiguous()2409 type = PyLong_AsLong(buffertype); in get_contiguous()
1305 PyMemoryView_GetContiguous:int:buffertype::