Home
last modified time | relevance | path

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

/third_party/python/Lib/
Dzipimport.py18 from _frozen_importlib_external import _unpack_uint16, _unpack_uint32
471 flags = _unpack_uint16(buffer[8:10])
472 compress = _unpack_uint16(buffer[10:12])
473 time = _unpack_uint16(buffer[12:14])
474 date = _unpack_uint16(buffer[14:16])
478 name_size = _unpack_uint16(buffer[28:30])
479 extra_size = _unpack_uint16(buffer[30:32])
480 comment_size = _unpack_uint16(buffer[32:34])
600 name_size = _unpack_uint16(buffer[26:28])
601 extra_size = _unpack_uint16(buffer[28:30])
/third_party/python/Lib/importlib/
D_bootstrap_external.py89 def _unpack_uint16(data): function