Home
last modified time | relevance | path

Searched refs:_INT_SIZE (Results 1 – 7 of 7) sorted by relevance

/dports/textproc/py-whoosh/Whoosh-2.7.4/src/whoosh/
H A Dformats.py39 from whoosh.system import _INT_SIZE, _FLOAT_SIZE
168 posting_size = _INT_SIZE
242 codes = loads(valuestring[_INT_SIZE:])
251 return unpack_uint(valuestring[:_INT_SIZE])[0]
304 codes = loads(valuestring[_INT_SIZE:])
318 codes = loads(valuestring[_INT_SIZE:])
375 codes = loads(valuestring[_INT_SIZE + _FLOAT_SIZE:])
386 codes = loads(valuestring[_INT_SIZE + _FLOAT_SIZE:])
395 summedboost = unpack_float(v[_INT_SIZE:_INT_SIZE + _FLOAT_SIZE])[0]
447 codes = loads(valuestring[_INT_SIZE + _FLOAT_SIZE:])
H A Dsystem.py34 _INT_SIZE = calcsize("!i") variable
H A Dindex.py40 from whoosh.system import _INT_SIZE, _FLOAT_SIZE, _LONG_SIZE
632 check_size("int", _INT_SIZE)
678 stream.write_varint(_INT_SIZE)
/dports/textproc/py-whoosh/Whoosh-2.7.4/src/whoosh/filedb/
H A Dstructfile.py36 from whoosh.system import _INT_SIZE, _SHORT_SIZE, _FLOAT_SIZE, _LONG_SIZE
170 base = pos + _INT_SIZE
287 return unpack_int(self.read(_INT_SIZE))[0]
290 return unpack_uint(self.read(_INT_SIZE))[0]
293 return unpack_uint_le(self.read(_INT_SIZE))[0]
331 return unpack_int(self.get(position, _INT_SIZE))[0]
334 return unpack_uint(self.get(position, _INT_SIZE))[0]
H A Dfiletables.py41 from whoosh.system import _INT_SIZE, emptybytes
256 exptr = startoffset + length - _INT_SIZE
/dports/archivers/py-python-snappy/python-snappy-0.5.4/snappy/
H A Dhadoop_snappy.py38 _INT_SIZE = 4 variable
128 int_size = _INT_SIZE
144 int_size = _INT_SIZE
/dports/textproc/py-whoosh/Whoosh-2.7.4/src/whoosh/codec/
H A Dwhoosh3.py44 from whoosh.system import _SHORT_SIZE, _INT_SIZE, _LONG_SIZE, _FLOAT_SIZE
939 self._nextoffset = position + _INT_SIZE + length
1223 terminfo._length = unpack_int(s[lenpos:lenpos + _INT_SIZE])
1237 lenpos = datapos + 1 + _FLOAT_SIZE + _INT_SIZE
1244 weightspos = datapos + 1 + _FLOAT_SIZE + _INT_SIZE + 2