base.pxd 424 B

12345678910111213141516171819
  1. cimport lakesuperior.cy_include.cytpl as tpl
  2. ctypedef tpl.tpl_bin Buffer
  3. # NOTE This may change in the future, e.g. if a different key size is to
  4. # be forced.
  5. ctypedef size_t Key
  6. ctypedef Key DoubleKey[2]
  7. ctypedef Key TripleKey[3]
  8. ctypedef Key QuadKey[4]
  9. cdef enum:
  10. KLEN = sizeof(Key)
  11. DBL_KLEN = 2 * sizeof(Key)
  12. TRP_KLEN = 3 * sizeof(Key)
  13. QUAD_KLEN = 4 * sizeof(Key)
  14. cdef bytes buffer_dump(Buffer* buf)