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

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
_collectionsmodule.c 415 Py_ssize_t m, len=deque->len, halflen=len>>1; local
419 if (n > halflen || n < -halflen) {
421 if (n > halflen)
423 else if (n < -halflen)
427 assert(-halflen <= n && n <= halflen);
726 Py_ssize_t n, len=deque->len, halflen=(len+1)>>1, index=i; local
739 if (index <= halflen) {
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
_collectionsmodule.c 416 Py_ssize_t i, len=deque->len, halflen=(len+1)>>1; local
421 if (n > halflen || n < -halflen) {
423 if (n > halflen)
425 else if (n < -halflen)
674 Py_ssize_t n, len=deque->len, halflen=(len+1)>>1, index=i; local
687 if (index <= halflen) {
    [all...]
  /external/python/cpython2/Modules/
_collectionsmodule.c 413 Py_ssize_t m, len=deque->len, halflen=len>>1; local
417 if (n > halflen || n < -halflen) {
419 if (n > halflen)
421 else if (n < -halflen)
425 assert(-halflen <= n && n <= halflen);
781 Py_ssize_t n, len=deque->len, halflen=(len+1)>>1, index=i; local
794 if (index <= halflen) {
    [all...]
  /external/python/cpython3/Modules/
_collectionsmodule.c 793 Py_ssize_t len=Py_SIZE(deque), halflen=len>>1; local
798 if (n > halflen || n < -halflen) {
800 if (n > halflen)
802 else if (n < -halflen)
806 assert(-halflen <= n && n <= halflen);
1259 Py_ssize_t n, len=Py_SIZE(deque), halflen=(len+1)>>1, index=i; local
    [all...]
  /external/python/cpython3/Lib/test/
test_bz2.py 518 halflen = linelen // 2
520 bz2f.read(halflen)
521 self.assertEqual(next(bz2f), self.TEXT_LINES[0][halflen:])
    [all...]

Completed in 174 milliseconds