Home
last modified time | relevance | path

Searched refs:c_ubyte (Results 1 – 20 of 20) sorted by relevance

/external/python/cpython2/Lib/lib2to3/tests/data/
Dinfinite_recursion.py23 __uint8_t = c_ubyte
78 u_int8_t = c_ubyte
106 ('p', POINTER(c_ubyte)),
113 ('max', POINTER(c_ubyte)),
114 ('q', POINTER(c_ubyte)),
115 ('pp', POINTER(POINTER(c_ubyte))),
128 ('data', POINTER(c_ubyte)),
139 ('data', POINTER(c_ubyte)),
148 ('enc', POINTER(c_ubyte)),
484 DES_cblock = c_ubyte * 8
[all …]
/external/llvm/bindings/python/llvm/
Ddisassembler.py17 from ctypes import c_ubyte
101 buf = cast(c_char_p(source), POINTER(c_ubyte))
126 buf = cast(source_bytes, POINTER(c_ubyte * len(source))).contents
131 b = cast(addressof(buf) + offset, POINTER(c_ubyte))
156 library.LLVMDisasmInstruction.argtypes = [Disassembler, POINTER(c_ubyte),
/external/autotest/client/common_lib/
Dsmogcheck_tpm.py28 c_ubyte, c_byte, byref, c_uint16, cast, create_string_buffer, c_uint64, \
81 _fields_ = [('major', c_ubyte),
82 ('minor', c_ubyte),
83 ('revMajor', c_ubyte),
84 ('revMinor', c_ubyte)]
95 ('errataRev', c_ubyte),
97 ('vendorSpecific', POINTER(c_ubyte))]
108 vi.vendorSpecific = cast(pointer(vendorDetail), POINTER(c_ubyte))
/external/sonivox/jet_tools/JetCreator/
Deas.py152 _fields_ = [('appLowNote', c_ubyte)]
159 ('program', c_ubyte),
160 ('channel', c_ubyte)]
166 _fields_ = [('channel', c_ubyte),
167 ('note', c_ubyte),
168 ('velocity', c_ubyte),
169 ('noteOn', c_ubyte)]
175 _fields_ = [('modWheel', c_ubyte),
176 ('volume', c_ubyte),
177 ('pan', c_ubyte),
[all …]
/external/python/cpython2/Lib/ctypes/test/
Dtest_byteswap.py147 self.assertIs(c_ubyte.__ctype_le__, c_ubyte)
148 self.assertIs(c_ubyte.__ctype_be__, c_ubyte)
161 _fields_ = [("a", c_ubyte),
Dtest_cfuncs.py31 self._dll.tf_B.restype = c_ubyte
32 self._dll.tf_B.argtypes = (c_ubyte,)
37 self._dll.tf_bB.restype = c_ubyte
38 self._dll.tf_bB.argtypes = (c_byte, c_ubyte)
Dtest_pep3118.py119 (c_ubyte, "<B", None, c_ubyte),
Dtest_repr.py6 c_ubyte, c_ushort, c_uint, c_ulong, c_ulonglong,
Dtest_bitfields.py51 unsigned_int_types = (c_ubyte, c_ushort, c_uint, c_ulong, c_ulonglong)
214 ("b", c_ubyte, 4)]
237 ("b", c_ubyte, 4)]
Dtest_values.py55 ("code", POINTER(c_ubyte)),
Dtest_memfunctions.py41 a = (c_ubyte * 32)(*map(ord, "abcdef"))
Dtest_arrays.py8 formats = c_byte, c_ubyte, c_short, c_ushort, c_int, c_uint, \
Dtest_pointers.py6 ctype_types = [c_byte, c_ubyte, c_short, c_ushort, c_int, c_uint,
Dtest_callbacks.py42 self.check_type(c_ubyte, 42)
Dtest_numbers.py24 unsigned_types = [c_ubyte, c_ushort, c_uint, c_ulong]
Dtest_structures.py49 "B": c_ubyte,
/external/python/cpython2/Lib/ctypes/
D__init__.py223 class c_ubyte(_SimpleCData): class
225 c_ubyte.__ctype_le__ = c_ubyte.__ctype_be__ = c_ubyte
228 _check_size(c_ubyte)
541 c_uint8 = c_ubyte
/external/python/cpython2/Lib/multiprocessing/
Dsharedctypes.py50 'b': ctypes.c_byte, 'B': ctypes.c_ubyte,
/external/autotest/client/cros/
Dpower_status.py1664 scsi_sense = (ctypes.c_ubyte * 32)() # SCSI sense buffer (uint8[32])
/external/python/cpython2/Doc/library/
Dctypes.rst231 | :class:`c_ubyte` | :c:type:`unsigned char` | int/long |
1135 ... ("code", POINTER(c_ubyte)),
2287 .. class:: c_ubyte
2304 :class:`c_ubyte`.