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

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
dumbdbm.py 30 _BLOCKSIZE = 512
59 # begins at a _BLOCKSIZE-aligned byte offset, and is a raw
126 # Append val to the data file, starting at a _BLOCKSIZE-aligned
134 npos = ((pos + _BLOCKSIZE - 1) // _BLOCKSIZE) * _BLOCKSIZE
171 oldblocks = (siz + _BLOCKSIZE - 1) // _BLOCKSIZE
172 newblocks = (len(val) + _BLOCKSIZE - 1) // _BLOCKSIZE
    [all...]
  /external/python/cpython2/Lib/
dumbdbm.py 31 _BLOCKSIZE = 512
61 # begins at a _BLOCKSIZE-aligned byte offset, and is a raw
128 # Append val to the data file, starting at a _BLOCKSIZE-aligned
136 npos = ((pos + _BLOCKSIZE - 1) // _BLOCKSIZE) * _BLOCKSIZE
171 oldblocks = (siz + _BLOCKSIZE - 1) // _BLOCKSIZE
172 newblocks = (len(val) + _BLOCKSIZE - 1) // _BLOCKSIZE
    [all...]
  /external/python/cpython3/Lib/dbm/
dumb.py 31 _BLOCKSIZE = 512
61 # begins at a _BLOCKSIZE-aligned byte offset, and is a raw
159 # Append val to the data file, starting at a _BLOCKSIZE-aligned
167 npos = ((pos + _BLOCKSIZE - 1) // _BLOCKSIZE) * _BLOCKSIZE
213 oldblocks = (siz + _BLOCKSIZE - 1) // _BLOCKSIZE
214 newblocks = (len(val) + _BLOCKSIZE - 1) // _BLOCKSIZE
    [all...]

Completed in 1385 milliseconds