Home
last modified time | relevance | path

Searched refs:_unpack_uint16 (Results 1 – 2 of 2) sorted by relevance

/external/python/cpython3/Lib/
Dzipimport.py18 from _frozen_importlib_external import _unpack_uint16, _unpack_uint32
421 flags = _unpack_uint16(buffer[8:10])
422 compress = _unpack_uint16(buffer[10:12])
423 time = _unpack_uint16(buffer[12:14])
424 date = _unpack_uint16(buffer[14:16])
428 name_size = _unpack_uint16(buffer[28:30])
429 extra_size = _unpack_uint16(buffer[30:32])
430 comment_size = _unpack_uint16(buffer[32:34])
550 name_size = _unpack_uint16(buffer[26:28])
551 extra_size = _unpack_uint16(buffer[28:30])
/external/python/cpython3/Lib/importlib/
D_bootstrap_external.py56 def _unpack_uint16(data): function