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

  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_deque.py 525 BLOCKLEN = 62
527 blocksize = struct.calcsize('2P%dP' % BLOCKLEN)
532 check(deque('a' * (BLOCKLEN // 2)), basesize + blocksize)
533 check(deque('a' * (BLOCKLEN // 2 + 1)), basesize + 2 * blocksize)
534 check(deque('a' * (42 * BLOCKLEN)), basesize + 43 * blocksize)
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_deque.py 525 BLOCKLEN = 62
527 blocksize = struct.calcsize('2P%dP' % BLOCKLEN)
532 check(deque('a' * (BLOCKLEN // 2)), basesize + blocksize)
533 check(deque('a' * (BLOCKLEN // 2 + 1)), basesize + 2 * blocksize)
534 check(deque('a' * (42 * BLOCKLEN)), basesize + 43 * blocksize)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_deque.py 525 BLOCKLEN = 62
527 blocksize = struct.calcsize('2P%dP' % BLOCKLEN)
532 check(deque('a' * (BLOCKLEN // 2)), basesize + blocksize)
533 check(deque('a' * (BLOCKLEN // 2 + 1)), basesize + 2 * blocksize)
534 check(deque('a' * (42 * BLOCKLEN)), basesize + 43 * blocksize)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_deque.py 525 BLOCKLEN = 62
527 blocksize = struct.calcsize('2P%dP' % BLOCKLEN)
532 check(deque('a' * (BLOCKLEN // 2)), basesize + blocksize)
533 check(deque('a' * (BLOCKLEN // 2 + 1)), basesize + 2 * blocksize)
534 check(deque('a' * (42 * BLOCKLEN)), basesize + 43 * blocksize)

Completed in 495 milliseconds