HomeSort by relevance Sort by last modified time
    Searched refs:PVbuffer (Results 1 - 3 of 3) sorted by null

  /external/python/cpython2/Modules/
clmodule.c 311 int *PVbuffer;
325 PVbuffer = PyMem_NEW(int, length);
326 if (PVbuffer == NULL)
332 PVbuffer[i] = CL_TypeIsInt(number);
334 PVbuffer[i] = PyInt_AsLong(v);
336 param_type_is_float(self, PVbuffer[i-1]) > 0) {
337 number = PVbuffer[i];
338 PVbuffer[i] = CL_TypeIsInt(number);
341 PyMem_DEL(PVbuffer);
348 (*func)(self->ob_compressorHdl, PVbuffer, length)
    [all...]
svmodule.c 736 long *PVbuffer = NULL;
751 PVbuffer = PyMem_NEW(long, length);
752 if (PVbuffer == NULL)
764 PVbuffer[i] = PyInt_AsLong(v);
768 if (PVbuffer[i] == -1 && PyErr_Occurred())
772 if ((*func)(self->ob_svideo, PVbuffer, length)) {
779 PyObject* v = PyInt_FromLong(PVbuffer[i]);
789 PyMem_DEL(PVbuffer);
almodule.c 1176 long *PVbuffer;
1183 PVbuffer = PyMem_NEW(long, length);
1184 if (PVbuffer == NULL)
1189 PyMem_DEL(PVbuffer);
1193 PVbuffer[i] = PyInt_AsLong(v);
1196 if (ALgetstatus(self->port, PVbuffer, length) == -1)
1200 PyList_SetItem(list, i, PyInt_FromLong(PVbuffer[i]));
1202 PyMem_DEL(PVbuffer);
    [all...]

Completed in 159 milliseconds