Searched refs:c_ubyte (Results 1 – 20 of 20) sorted by relevance
/external/python/cpython2/Lib/lib2to3/tests/data/ |
D | infinite_recursion.py | 23 __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/ |
D | disassembler.py | 17 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/ |
D | smogcheck_tpm.py | 28 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/ |
D | eas.py | 152 _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/ |
D | test_byteswap.py | 147 self.assertIs(c_ubyte.__ctype_le__, c_ubyte) 148 self.assertIs(c_ubyte.__ctype_be__, c_ubyte) 161 _fields_ = [("a", c_ubyte),
|
D | test_cfuncs.py | 31 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)
|
D | test_pep3118.py | 119 (c_ubyte, "<B", None, c_ubyte),
|
D | test_repr.py | 6 c_ubyte, c_ushort, c_uint, c_ulong, c_ulonglong,
|
D | test_bitfields.py | 51 unsigned_int_types = (c_ubyte, c_ushort, c_uint, c_ulong, c_ulonglong) 214 ("b", c_ubyte, 4)] 237 ("b", c_ubyte, 4)]
|
D | test_values.py | 55 ("code", POINTER(c_ubyte)),
|
D | test_memfunctions.py | 41 a = (c_ubyte * 32)(*map(ord, "abcdef"))
|
D | test_arrays.py | 8 formats = c_byte, c_ubyte, c_short, c_ushort, c_int, c_uint, \
|
D | test_pointers.py | 6 ctype_types = [c_byte, c_ubyte, c_short, c_ushort, c_int, c_uint,
|
D | test_callbacks.py | 42 self.check_type(c_ubyte, 42)
|
D | test_numbers.py | 24 unsigned_types = [c_ubyte, c_ushort, c_uint, c_ulong]
|
D | test_structures.py | 49 "B": c_ubyte,
|
/external/python/cpython2/Lib/ctypes/ |
D | __init__.py | 223 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/ |
D | sharedctypes.py | 50 'b': ctypes.c_byte, 'B': ctypes.c_ubyte,
|
/external/autotest/client/cros/ |
D | power_status.py | 1664 scsi_sense = (ctypes.c_ubyte * 32)() # SCSI sense buffer (uint8[32])
|
/external/python/cpython2/Doc/library/ |
D | ctypes.rst | 231 | :class:`c_ubyte` | :c:type:`unsigned char` | int/long | 1135 ... ("code", POINTER(c_ubyte)), 2287 .. class:: c_ubyte 2304 :class:`c_ubyte`.
|