HomeSort by relevance Sort by last modified time
    Searched refs:slicelength (Results 1 - 25 of 36) sorted by null

1 2

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
sliceobject.h 39 Py_ssize_t *step, Py_ssize_t *slicelength);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
sliceobject.h 39 Py_ssize_t *step, Py_ssize_t *slicelength);
  /external/python/cpython2/Include/
sliceobject.h 39 Py_ssize_t *step, Py_ssize_t *slicelength);
  /prebuilts/gdb/darwin-x86/include/python2.7/
sliceobject.h 39 Py_ssize_t *step, Py_ssize_t *slicelength);
  /prebuilts/gdb/linux-x86/include/python2.7/
sliceobject.h 39 Py_ssize_t *step, Py_ssize_t *slicelength);
  /prebuilts/python/darwin-x86/2.7.5/include/python2.7/
sliceobject.h 39 Py_ssize_t *step, Py_ssize_t *slicelength);
  /prebuilts/python/linux-x86/2.7.5/include/python2.7/
sliceobject.h 39 Py_ssize_t *step, Py_ssize_t *slicelength);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
sliceobject.c 134 Py_ssize_t *start, Py_ssize_t *stop, Py_ssize_t *step, Py_ssize_t *slicelength)
179 *slicelength = 0;
182 *slicelength = (*stop-*start+1)/(*step)+1;
185 *slicelength = (*stop-*start-1)/(*step)+1;
255 Py_ssize_t ilen, start, stop, step, slicelength; local
264 &step, &slicelength) < 0) {
bufferobject.c 514 Py_ssize_t start, stop, step, slicelength, cur, i; local
517 &start, &stop, &step, &slicelength) < 0) {
521 if (slicelength <= 0)
529 char *result_buf = (char *)PyMem_Malloc(slicelength);
534 for (cur = start, i = 0; i < slicelength;
540 slicelength);
701 Py_ssize_t start, stop, step, slicelength; local
704 &start, &stop, &step, &slicelength) < 0)
710 if (othersize != slicelength) {
717 if (slicelength == 0)
    [all...]
listobject.c 2557 Py_ssize_t start, stop, step, slicelength, cur, i; local
2609 Py_ssize_t start, stop, step, slicelength; local
    [all...]
memoryobject.c 585 Py_ssize_t start, stop, step, slicelength; local
588 &start, &stop, &step, &slicelength) < 0) {
608 newview.len = slicelength * newview.itemsize;
611 newview.shape[0] = slicelength;
tupleobject.c 713 Py_ssize_t start, stop, step, slicelength, cur, i; local
720 &start, &stop, &step, &slicelength) < 0) {
724 if (slicelength <= 0) {
728 slicelength == PyTuple_GET_SIZE(self) &&
734 result = PyTuple_New(slicelength);
739 for (cur = start, i = 0; i < slicelength;
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
sliceobject.c 134 Py_ssize_t *start, Py_ssize_t *stop, Py_ssize_t *step, Py_ssize_t *slicelength)
179 *slicelength = 0;
182 *slicelength = (*stop-*start+1)/(*step)+1;
185 *slicelength = (*stop-*start-1)/(*step)+1;
254 Py_ssize_t ilen, start, stop, step, slicelength; local
263 &step, &slicelength) < 0) {
bufferobject.c 504 Py_ssize_t start, stop, step, slicelength, cur, i; local
507 &start, &stop, &step, &slicelength) < 0) {
511 if (slicelength <= 0)
519 char *result_buf = (char *)PyMem_Malloc(slicelength);
524 for (cur = start, i = 0; i < slicelength;
530 slicelength);
691 Py_ssize_t start, stop, step, slicelength; local
694 &start, &stop, &step, &slicelength) < 0)
700 if (othersize != slicelength) {
707 if (slicelength == 0)
    [all...]
listobject.c 2556 Py_ssize_t start, stop, step, slicelength, cur, i; local
2608 Py_ssize_t start, stop, step, slicelength; local
    [all...]
memoryobject.c 585 Py_ssize_t start, stop, step, slicelength; local
588 &start, &stop, &step, &slicelength) < 0) {
608 newview.len = slicelength * newview.itemsize;
611 newview.shape[0] = slicelength;
tupleobject.c 711 Py_ssize_t start, stop, step, slicelength, cur, i; local
718 &start, &stop, &step, &slicelength) < 0) {
722 if (slicelength <= 0) {
726 slicelength == PyTuple_GET_SIZE(self) &&
732 result = PyTuple_New(slicelength);
737 for (cur = start, i = 0; i < slicelength;
  /external/python/cpython2/Objects/
sliceobject.c 135 Py_ssize_t *start, Py_ssize_t *stop, Py_ssize_t *step, Py_ssize_t *slicelength)
180 *slicelength = 0;
183 *slicelength = (*stop-*start+1)/(*step)+1;
186 *slicelength = (*stop-*start-1)/(*step)+1;
257 Py_ssize_t ilen, start, stop, step, slicelength; local
266 &step, &slicelength) < 0) {
bufferobject.c 514 Py_ssize_t start, stop, step, slicelength, cur, i; local
517 &start, &stop, &step, &slicelength) < 0) {
521 if (slicelength <= 0)
529 char *result_buf = (char *)PyMem_Malloc(slicelength);
534 for (cur = start, i = 0; i < slicelength;
540 slicelength);
701 Py_ssize_t start, stop, step, slicelength; local
704 &start, &stop, &step, &slicelength) < 0)
710 if (othersize != slicelength) {
717 if (slicelength == 0
    [all...]
listobject.c 2560 Py_ssize_t start, stop, step, slicelength, cur, i; local
2612 Py_ssize_t start, stop, step, slicelength; local
    [all...]
memoryobject.c 585 Py_ssize_t start, stop, step, slicelength; local
588 &start, &stop, &step, &slicelength) < 0) {
608 newview.len = slicelength * newview.itemsize;
611 newview.shape[0] = slicelength;
tupleobject.c 713 Py_ssize_t start, stop, step, slicelength, cur, i; local
720 &start, &stop, &step, &slicelength) < 0) {
724 if (slicelength <= 0) {
728 slicelength == PyTuple_GET_SIZE(self) &&
734 result = PyTuple_New(slicelength);
739 for (cur = start, i = 0; i < slicelength;
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
arraymodule.c 1672 Py_ssize_t start, stop, step, slicelength, cur, i; local
1721 Py_ssize_t start, stop, step, slicelength, needed; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
arraymodule.c 1657 Py_ssize_t start, stop, step, slicelength, cur, i; local
1706 Py_ssize_t start, stop, step, slicelength, needed; local
    [all...]
  /external/python/cpython2/Modules/
arraymodule.c 1699 Py_ssize_t start, stop, step, slicelength, cur, i; local
1748 Py_ssize_t start, stop, step, slicelength, needed; local
    [all...]

Completed in 995 milliseconds

1 2