Home
last modified time | relevance | path

Searched refs:posobj (Results 1 – 25 of 63) sorted by relevance

123

/dports/sysutils/uefi-edk2-bhyve-csm/uefi-edk2-aa8d718/AppPkg/Applications/Python/Python-2.7.2/Modules/_io/
H A Dfileio.c711 if (posobj == NULL) in portable_lseek()
750 PyObject *posobj; in fileio_seek() local
791 if (posobj == Py_None || posobj == NULL) { in fileio_truncate()
794 if (posobj == NULL) in fileio_truncate()
798 Py_INCREF(posobj); in fileio_truncate()
811 Py_DECREF(posobj); in fileio_truncate()
819 Py_DECREF(posobj); in fileio_truncate()
840 Py_DECREF(posobj); in fileio_truncate()
853 Py_DECREF(posobj); in fileio_truncate()
865 Py_DECREF(posobj); in fileio_truncate()
[all …]
/dports/lang/python-legacy/Python-2.7.18/Modules/_io/
H A Dfileio.c780 if (posobj == NULL) in portable_lseek()
819 PyObject *posobj; in fileio_seek() local
860 if (posobj == Py_None || posobj == NULL) { in fileio_truncate()
863 if (posobj == NULL) in fileio_truncate()
867 Py_INCREF(posobj); in fileio_truncate()
880 Py_DECREF(posobj); in fileio_truncate()
888 Py_DECREF(posobj); in fileio_truncate()
909 Py_DECREF(posobj); in fileio_truncate()
922 Py_DECREF(posobj); in fileio_truncate()
934 Py_DECREF(posobj); in fileio_truncate()
[all …]
H A Dtextio.c2017 PyObject *cookieObj, *posobj; in textiowrapper_seek() local
2122 posobj = PyLong_FromOff_t(cookie.start_pos); in textiowrapper_seek()
2123 if (posobj == NULL) in textiowrapper_seek()
2127 Py_DECREF(posobj); in textiowrapper_seek()
2203 PyObject *posobj = NULL; in textiowrapper_tell() local
2232 if (posobj == NULL) in textiowrapper_tell()
2237 return posobj; in textiowrapper_tell()
2243 cookie.start_pos = PyLong_AsLong(posobj); in textiowrapper_tell()
2259 Py_DECREF(posobj); in textiowrapper_tell()
2340 Py_XDECREF(posobj); in textiowrapper_tell()
[all …]
/dports/lang/python27/Python-2.7.18/Modules/_io/
H A Dfileio.c780 if (posobj == NULL) in portable_lseek()
819 PyObject *posobj; in fileio_seek() local
860 if (posobj == Py_None || posobj == NULL) { in fileio_truncate()
863 if (posobj == NULL) in fileio_truncate()
867 Py_INCREF(posobj); in fileio_truncate()
880 Py_DECREF(posobj); in fileio_truncate()
888 Py_DECREF(posobj); in fileio_truncate()
909 Py_DECREF(posobj); in fileio_truncate()
922 Py_DECREF(posobj); in fileio_truncate()
934 Py_DECREF(posobj); in fileio_truncate()
[all …]
H A Dtextio.c2017 PyObject *cookieObj, *posobj; in textiowrapper_seek() local
2122 posobj = PyLong_FromOff_t(cookie.start_pos); in textiowrapper_seek()
2123 if (posobj == NULL) in textiowrapper_seek()
2127 Py_DECREF(posobj); in textiowrapper_seek()
2203 PyObject *posobj = NULL; in textiowrapper_tell() local
2232 if (posobj == NULL) in textiowrapper_tell()
2237 return posobj; in textiowrapper_tell()
2243 cookie.start_pos = PyLong_AsLong(posobj); in textiowrapper_tell()
2259 Py_DECREF(posobj); in textiowrapper_tell()
2340 Py_XDECREF(posobj); in textiowrapper_tell()
[all …]
/dports/lang/python37/Python-3.7.12/Modules/_io/
H A Dfileio.c889 if (posobj == NULL) {
893 if(PyFloat_Check(posobj)) {
900 pos = PyLong_AsLong(posobj);
1006 if (posobj == Py_None || posobj == NULL) {
1009 if (posobj == NULL)
1013 Py_INCREF(posobj);
1017 pos = PyLong_AsLongLong(posobj);
1019 pos = PyLong_AsLong(posobj);
1022 Py_DECREF(posobj);
1038 Py_DECREF(posobj);
[all …]
/dports/databases/py-gdbm/Python-3.8.12/Modules/_io/
H A Dfileio.c894 if (posobj == NULL) {
898 if(PyFloat_Check(posobj)) {
905 pos = PyLong_AsLong(posobj);
1011 if (posobj == Py_None) {
1014 if (posobj == NULL)
1018 Py_INCREF(posobj);
1022 pos = PyLong_AsLongLong(posobj);
1024 pos = PyLong_AsLong(posobj);
1027 Py_DECREF(posobj);
1043 Py_DECREF(posobj);
[all …]
/dports/lang/python-tools/Python-3.8.12/Modules/_io/
H A Dfileio.c894 if (posobj == NULL) {
898 if(PyFloat_Check(posobj)) {
905 pos = PyLong_AsLong(posobj);
1011 if (posobj == Py_None) {
1014 if (posobj == NULL)
1018 Py_INCREF(posobj);
1022 pos = PyLong_AsLongLong(posobj);
1024 pos = PyLong_AsLong(posobj);
1027 Py_DECREF(posobj);
1043 Py_DECREF(posobj);
[all …]
/dports/lang/python39/Python-3.9.9/Modules/_io/
H A Dfileio.c897 if (posobj == NULL) {
901 if(PyFloat_Check(posobj)) {
908 pos = PyLong_AsLong(posobj);
1014 if (posobj == Py_None) {
1017 if (posobj == NULL)
1021 Py_INCREF(posobj);
1025 pos = PyLong_AsLongLong(posobj);
1027 pos = PyLong_AsLong(posobj);
1030 Py_DECREF(posobj);
1046 Py_DECREF(posobj);
[all …]
/dports/lang/python38/Python-3.8.12/Modules/_io/
H A Dfileio.c894 if (posobj == NULL) {
898 if(PyFloat_Check(posobj)) {
905 pos = PyLong_AsLong(posobj);
1011 if (posobj == Py_None) {
1014 if (posobj == NULL)
1018 Py_INCREF(posobj);
1022 pos = PyLong_AsLongLong(posobj);
1024 pos = PyLong_AsLong(posobj);
1027 Py_DECREF(posobj);
1043 Py_DECREF(posobj);
[all …]
/dports/databases/py-sqlite3/Python-3.8.12/Modules/_io/
H A Dfileio.c894 if (posobj == NULL) {
898 if(PyFloat_Check(posobj)) {
905 pos = PyLong_AsLong(posobj);
1011 if (posobj == Py_None) {
1014 if (posobj == NULL)
1018 Py_INCREF(posobj);
1022 pos = PyLong_AsLongLong(posobj);
1024 pos = PyLong_AsLong(posobj);
1027 Py_DECREF(posobj);
1043 Py_DECREF(posobj);
[all …]
/dports/x11-toolkits/py-tkinter/Python-3.8.12/Modules/_io/
H A Dfileio.c894 if (posobj == NULL) {
898 if(PyFloat_Check(posobj)) {
905 pos = PyLong_AsLong(posobj);
1011 if (posobj == Py_None) {
1014 if (posobj == NULL)
1018 Py_INCREF(posobj);
1022 pos = PyLong_AsLongLong(posobj);
1024 pos = PyLong_AsLong(posobj);
1027 Py_DECREF(posobj);
1043 Py_DECREF(posobj);
[all …]
/dports/lang/python311/Python-3.11.0a3/Modules/_io/
H A Dfileio.c901 if (posobj == NULL) {
906 pos = PyLong_AsLongLong(posobj);
908 pos = PyLong_AsLong(posobj);
1014 if (posobj == Py_None) {
1017 if (posobj == NULL)
1021 Py_INCREF(posobj);
1025 pos = PyLong_AsLongLong(posobj);
1027 pos = PyLong_AsLong(posobj);
1030 Py_DECREF(posobj);
1046 Py_DECREF(posobj);
[all …]
/dports/lang/python310/Python-3.10.1/Modules/_io/
H A Dfileio.c900 if (posobj == NULL) {
905 pos = PyLong_AsLongLong(posobj);
907 pos = PyLong_AsLong(posobj);
1013 if (posobj == Py_None) {
1016 if (posobj == NULL)
1020 Py_INCREF(posobj);
1024 pos = PyLong_AsLongLong(posobj);
1026 pos = PyLong_AsLong(posobj);
1029 Py_DECREF(posobj);
1045 Py_DECREF(posobj);
[all …]
/dports/games/uqm/uqm-0.8.0/src/uqm/
H A Dsounds.c147 ELEMENT *posobj; in UpdateSoundPositions() local
151 posobj = GetPositionalObject (i); in UpdateSoundPositions()
152 if (posobj != NULL) in UpdateSoundPositions()
155 pos = CalcSoundPosition (posobj); in UpdateSoundPositions()
/dports/lang/python37/Python-3.7.12/Modules/_io/clinic/
H A Dfileio.c.h334 _io_FileIO_truncate_impl(fileio *self, PyObject *posobj);
340 PyObject *posobj = NULL; in _io_FileIO_truncate() local
344 &posobj)) { in _io_FileIO_truncate()
347 return_value = _io_FileIO_truncate_impl(self, posobj); in _io_FileIO_truncate()
/dports/lang/python310/Python-3.10.1/Modules/_io/clinic/
H A Dfileio.c.h395 _io_FileIO_truncate_impl(fileio *self, PyObject *posobj);
401 PyObject *posobj = Py_None; in _io_FileIO_truncate() local
409 posobj = args[0]; in _io_FileIO_truncate()
411 return_value = _io_FileIO_truncate_impl(self, posobj); in _io_FileIO_truncate()
/dports/lang/python311/Python-3.11.0a3/Modules/_io/clinic/
H A Dfileio.c.h395 _io_FileIO_truncate_impl(fileio *self, PyObject *posobj);
401 PyObject *posobj = Py_None; in _io_FileIO_truncate() local
409 posobj = args[0]; in _io_FileIO_truncate()
411 return_value = _io_FileIO_truncate_impl(self, posobj); in _io_FileIO_truncate()
/dports/databases/py-gdbm/Python-3.8.12/Modules/_io/clinic/
H A Dfileio.c.h405 _io_FileIO_truncate_impl(fileio *self, PyObject *posobj);
411 PyObject *posobj = Py_None; in _io_FileIO_truncate() local
419 posobj = args[0]; in _io_FileIO_truncate()
421 return_value = _io_FileIO_truncate_impl(self, posobj); in _io_FileIO_truncate()
/dports/lang/python-tools/Python-3.8.12/Modules/_io/clinic/
H A Dfileio.c.h405 _io_FileIO_truncate_impl(fileio *self, PyObject *posobj);
411 PyObject *posobj = Py_None; in _io_FileIO_truncate() local
419 posobj = args[0]; in _io_FileIO_truncate()
421 return_value = _io_FileIO_truncate_impl(self, posobj); in _io_FileIO_truncate()
/dports/lang/python39/Python-3.9.9/Modules/_io/clinic/
H A Dfileio.c.h405 _io_FileIO_truncate_impl(fileio *self, PyObject *posobj);
411 PyObject *posobj = Py_None; in _io_FileIO_truncate() local
419 posobj = args[0]; in _io_FileIO_truncate()
421 return_value = _io_FileIO_truncate_impl(self, posobj); in _io_FileIO_truncate()
/dports/lang/python38/Python-3.8.12/Modules/_io/clinic/
H A Dfileio.c.h405 _io_FileIO_truncate_impl(fileio *self, PyObject *posobj);
411 PyObject *posobj = Py_None; in _io_FileIO_truncate() local
419 posobj = args[0]; in _io_FileIO_truncate()
421 return_value = _io_FileIO_truncate_impl(self, posobj); in _io_FileIO_truncate()
/dports/databases/py-sqlite3/Python-3.8.12/Modules/_io/clinic/
H A Dfileio.c.h405 _io_FileIO_truncate_impl(fileio *self, PyObject *posobj);
411 PyObject *posobj = Py_None; in _io_FileIO_truncate() local
419 posobj = args[0]; in _io_FileIO_truncate()
421 return_value = _io_FileIO_truncate_impl(self, posobj); in _io_FileIO_truncate()
/dports/x11-toolkits/py-tkinter/Python-3.8.12/Modules/_io/clinic/
H A Dfileio.c.h405 _io_FileIO_truncate_impl(fileio *self, PyObject *posobj);
411 PyObject *posobj = Py_None; in _io_FileIO_truncate() local
419 posobj = args[0]; in _io_FileIO_truncate()
421 return_value = _io_FileIO_truncate_impl(self, posobj); in _io_FileIO_truncate()
/dports/graphics/gnash/gnash-2b3bdede0305c4fc3ad21a0a4197330606c9b880/cygnal/libnet/
H A Drtmp_client.cpp510 std::shared_ptr<cygnal::Buffer> posobj; in connectToServer() local
514 posobj = seek.encode(); in connectToServer()
533 if ( posobj ) pktsize += posobj->size(); in connectToServer()
541 if ( posobj ) *buf += posobj; in connectToServer()

123