Home
last modified time | relevance | path

Searched refs:bf_getsegcount (Results 1 – 14 of 14) sorted by relevance

/device/linaro/bootloader/edk2/BaseTools/Source/C/PyEfiCompressor/
DEfiCompressor.c50 || SrcData->ob_type->tp_as_buffer->bf_getsegcount == NULL) { in UefiDecompress()
63 SegNum = SrcData->ob_type->tp_as_buffer->bf_getsegcount((PyObject *)SrcData, NULL); in UefiDecompress()
127 || SrcData->ob_type->tp_as_buffer->bf_getsegcount == NULL) { in FrameworkDecompress()
140 SegNum = SrcData->ob_type->tp_as_buffer->bf_getsegcount((PyObject *)SrcData, NULL); in FrameworkDecompress()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
Dbufferobject.c38 if ((*bp->bf_getsegcount)(self->b_base, NULL) != 1) { in get_buf()
162 pb->bf_getsegcount == NULL ) in PyBuffer_FromObject()
178 pb->bf_getsegcount == NULL ) in PyBuffer_FromReadWriteObject()
390 pb->bf_getsegcount == NULL ) in buffer_concat()
395 if ( (*pb->bf_getsegcount)(other, NULL) != 1 ) in buffer_concat()
578 pb->bf_getsegcount == NULL ) in buffer_ass_item()
583 if ( (*pb->bf_getsegcount)(other, NULL) != 1 ) in buffer_ass_item()
621 pb->bf_getsegcount == NULL ) in buffer_ass_slice()
626 if ( (*pb->bf_getsegcount)(other, NULL) != 1 ) in buffer_ass_slice()
678 pb->bf_getsegcount == NULL ) in buffer_ass_subscript()
[all …]
Dabstract.c260 pb->bf_getsegcount == NULL) { in PyObject_AsCharBuffer()
265 if ((*pb->bf_getsegcount)(obj,NULL) != 1) { in PyObject_AsCharBuffer()
285 pb->bf_getsegcount == NULL || in PyObject_CheckReadBuffer()
286 (*pb->bf_getsegcount)(obj, NULL) != 1) in PyObject_CheckReadBuffer()
306 pb->bf_getsegcount == NULL) { in PyObject_AsReadBuffer()
311 if ((*pb->bf_getsegcount)(obj, NULL) != 1) { in PyObject_AsReadBuffer()
339 pb->bf_getsegcount == NULL) { in PyObject_AsWriteBuffer()
344 if ((*pb->bf_getsegcount)(obj, NULL) != 1) { in PyObject_AsWriteBuffer()
Dtypeobject.c3879 COPYBUF(bf_getsegcount);
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
Dbufferobject.c38 if ((*bp->bf_getsegcount)(self->b_base, NULL) != 1) { in get_buf()
162 pb->bf_getsegcount == NULL ) in PyBuffer_FromObject()
178 pb->bf_getsegcount == NULL ) in PyBuffer_FromReadWriteObject()
380 pb->bf_getsegcount == NULL ) in buffer_concat()
385 if ( (*pb->bf_getsegcount)(other, NULL) != 1 ) in buffer_concat()
568 pb->bf_getsegcount == NULL ) in buffer_ass_item()
573 if ( (*pb->bf_getsegcount)(other, NULL) != 1 ) in buffer_ass_item()
611 pb->bf_getsegcount == NULL ) in buffer_ass_slice()
616 if ( (*pb->bf_getsegcount)(other, NULL) != 1 ) in buffer_ass_slice()
668 pb->bf_getsegcount == NULL ) in buffer_ass_subscript()
[all …]
Dabstract.c260 pb->bf_getsegcount == NULL) { in PyObject_AsCharBuffer()
265 if ((*pb->bf_getsegcount)(obj,NULL) != 1) { in PyObject_AsCharBuffer()
285 pb->bf_getsegcount == NULL || in PyObject_CheckReadBuffer()
286 (*pb->bf_getsegcount)(obj, NULL) != 1) in PyObject_CheckReadBuffer()
306 pb->bf_getsegcount == NULL) { in PyObject_AsReadBuffer()
311 if ((*pb->bf_getsegcount)(obj, NULL) != 1) { in PyObject_AsReadBuffer()
339 pb->bf_getsegcount == NULL) { in PyObject_AsWriteBuffer()
344 if ((*pb->bf_getsegcount)(obj, NULL) != 1) { in PyObject_AsWriteBuffer()
Dtypeobject.c3844 COPYBUF(bf_getsegcount);
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
Dgetargs.c1296 pb->bf_getsegcount == NULL) in convertsimple()
1298 if ((*pb->bf_getsegcount)(arg, NULL) != 1) in convertsimple()
1330 pb->bf_getsegcount == NULL) in convertsimple()
1335 if (pb->bf_getsegcount(arg, NULL) != 1) in convertsimple()
1371 pb->bf_getsegcount == NULL || in convertbuffer()
1376 if ((*pb->bf_getsegcount)(arg, NULL) != 1) { in convertbuffer()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
Dgetargs.c1296 pb->bf_getsegcount == NULL) in convertsimple()
1298 if ((*pb->bf_getsegcount)(arg, NULL) != 1) in convertsimple()
1330 pb->bf_getsegcount == NULL) in convertsimple()
1335 if (pb->bf_getsegcount(arg, NULL) != 1) in convertsimple()
1371 pb->bf_getsegcount == NULL || in convertbuffer()
1376 if ((*pb->bf_getsegcount)(arg, NULL) != 1) { in convertbuffer()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
Dobject.h298 segcountproc bf_getsegcount; member
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
Dobject.h298 segcountproc bf_getsegcount; member
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/PyMod-2.7.2/Modules/
D_sre.c1711 if (!buffer || !buffer->bf_getreadbuffer || !buffer->bf_getsegcount || in getstring()
1712 buffer->bf_getsegcount(string, NULL) != 1) { in getstring()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
D_sre.c1711 if (!buffer || !buffer->bf_getreadbuffer || !buffer->bf_getsegcount || in getstring()
1712 buffer->bf_getsegcount(string, NULL) != 1) { in getstring()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/PyMod-2.7.10/Modules/
D_sre.c1725 if (!buffer || !buffer->bf_getreadbuffer || !buffer->bf_getsegcount || in getstring()
1726 buffer->bf_getsegcount(string, NULL) != 1) { in getstring()