/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/tests/data/ |
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 * [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/tests/data/ |
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 * [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ctypes/test/ |
test_repr.py | 6 c_ubyte, c_ushort, c_uint, c_ulong, c_ulonglong,
|
test_byteswap.py | 146 self.assertTrue(c_ubyte.__ctype_le__ is c_ubyte) 147 self.assertTrue(c_ubyte.__ctype_be__ is c_ubyte) 160 _fields_ = [("a", c_ubyte),
|
test_bitfields.py | 50 unsigned_int_types = (c_ubyte, c_ushort, c_uint, c_ulong, c_ulonglong) 215 ("b", c_ubyte, 4)] 238 ("b", c_ubyte, 4)]
|
test_cfuncs.py | 30 self._dll.tf_B.restype = c_ubyte 31 self._dll.tf_B.argtypes = (c_ubyte,) 36 self._dll.tf_bB.restype = c_ubyte 37 self._dll.tf_bB.argtypes = (c_byte, c_ubyte)
|
test_memfunctions.py | 39 a = (c_ubyte * 32)(*map(ord, "abcdef"))
|
test_values.py | 54 ("code", POINTER(c_ubyte)),
|
test_pep3118.py | 115 (c_ubyte, "<B", None, c_ubyte),
|
test_arrays.py | 6 formats = c_byte, c_ubyte, c_short, c_ushort, c_int, c_uint, \
|
test_pointers.py | 6 ctype_types = [c_byte, c_ubyte, c_short, c_ushort, c_int, c_uint,
|
test_callbacks.py | 40 self.check_type(c_ubyte, 42)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ctypes/test/ |
test_repr.py | 6 c_ubyte, c_ushort, c_uint, c_ulong, c_ulonglong,
|
test_byteswap.py | 146 self.assertTrue(c_ubyte.__ctype_le__ is c_ubyte) 147 self.assertTrue(c_ubyte.__ctype_be__ is c_ubyte) 160 _fields_ = [("a", c_ubyte),
|
test_bitfields.py | 50 unsigned_int_types = (c_ubyte, c_ushort, c_uint, c_ulong, c_ulonglong) 215 ("b", c_ubyte, 4)] 238 ("b", c_ubyte, 4)]
|
test_cfuncs.py | 30 self._dll.tf_B.restype = c_ubyte 31 self._dll.tf_B.argtypes = (c_ubyte,) 36 self._dll.tf_bB.restype = c_ubyte 37 self._dll.tf_bB.argtypes = (c_byte, c_ubyte)
|
test_memfunctions.py | 39 a = (c_ubyte * 32)(*map(ord, "abcdef"))
|
test_values.py | 54 ("code", POINTER(c_ubyte)),
|
test_pep3118.py | 115 (c_ubyte, "<B", None, c_ubyte),
|
test_arrays.py | 6 formats = c_byte, c_ubyte, c_short, c_ushort, c_int, c_uint, \
|
test_pointers.py | 6 ctype_types = [c_byte, c_ubyte, c_short, c_ushort, c_int, c_uint,
|
/external/llvm/bindings/python/llvm/ |
disassembler.py | 18 from ctypes import c_ubyte namespace 76 buf = cast(c_char_p(source), POINTER(c_ubyte)) 101 buf = cast(source_bytes, POINTER(c_ubyte * len(source))).contents 106 b = cast(addressof(buf) + offset, POINTER(c_ubyte)) 131 library.LLVMDisasmInstruction.argtypes = [Disassembler, POINTER(c_ubyte),
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ctypes/ |
__init__.py | 226 class c_ubyte(_SimpleCData): class in inherits:_SimpleCData 228 c_ubyte.__ctype_le__ = c_ubyte.__ctype_be__ = c_ubyte 230 ##c_uchar = c_ubyte 231 _check_size(c_ubyte) 544 c_uint8 = c_ubyte
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ctypes/ |
__init__.py | 226 class c_ubyte(_SimpleCData): class in inherits:_SimpleCData 228 c_ubyte.__ctype_le__ = c_ubyte.__ctype_be__ = c_ubyte 230 ##c_uchar = c_ubyte 231 _check_size(c_ubyte) 544 c_uint8 = c_ubyte
|
/external/sonivox/jet_tools/JetCreator/ |
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...] |