OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:calcsize
(Results
101 - 122
of
122
) sorted by null
1
2
3
4
5
/external/python/cpython2/Lib/test/support/
__init__.py
[
all
...]
/external/python/cpython2/Modules/
_struct.c
1859
calcsize
(PyObject *self, PyObject *fmt)
function
[
all
...]
/external/python/cpython3/Lib/test/
string_tests.py
355
if sys.maxsize < (1 << 32) and struct.
calcsize
('P') == 4:
675
@unittest.skipIf(sys.maxsize > (1 << 32) or struct.
calcsize
('P') != 4,
[
all
...]
test_parser.py
883
nodesize = struct.
calcsize
('hP3iP0h')
[
all
...]
test_deque.py
758
blocksize = struct.
calcsize
('P%dPP' % BLOCKLEN)
[
all
...]
test_unicode.py
[
all
...]
test_itertools.py
[
all
...]
test_socket.py
182
can_frame_size = struct.
calcsize
(can_frame_fmt)
201
bcm_cmd_msg_fmt += "x" * (struct.
calcsize
(bcm_cmd_msg_fmt) % 8)
[
all
...]
_test_multiprocessing.py
[
all
...]
/external/autotest/client/bin/input/
input_device.py
73
self.format_size = struct.
calcsize
(self.format)
/external/protobuf/python/google/protobuf/internal/
decoder.py
271
value_size = struct.
calcsize
(format)
reflection_test.py
636
if struct.
calcsize
('L') == 4:
[
all
...]
/external/python/cpython3/Lib/test/support/
__init__.py
[
all
...]
/external/python/cpython2/Lib/test/
test_deque.py
527
blocksize = struct.
calcsize
('%dP2P' % BLOCKLEN)
test_unicode.py
[
all
...]
/development/vndk/tools/definition-tool/
vndk_definition_tool.py
368
cls.struct_size = struct.
calcsize
(cls.struct_fmt)
729
assert struct.
calcsize
(elf_phdr_fmt) == header.e_phentsize
778
assert struct.
calcsize
(elf_dyn_fmt) == dynamic_shdr.sh_entsize
[
all
...]
/external/fonttools/Lib/fontTools/ttLib/tables/
_c_m_a_p.py
832
length = struct.
calcsize
(cmap_format_4_format) + len(data)
[
all
...]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_unicode.py
[
all
...]
/external/fonttools/Lib/fontTools/feaLib/
builder.py
348
data = b"\0" * sstruct.
calcsize
(getTableModule("OS/2").OS2_format_0)
[
all
...]
/external/python/setuptools/setuptools/command/
easy_install.py
75
return struct.
calcsize
("P") == 8
[
all
...]
/external/scapy/scapy/
fields.py
43
self.sz = struct.
calcsize
(self.fmt)
[
all
...]
/external/scapy/scapy/layers/
inet.py
283
if ofmt and struct.
calcsize
(ofmt) == len(oval):
[
all
...]
Completed in 772 milliseconds
1
2
3
4
5