/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ctypes/test/ |
test_memfunctions.py | 41 self.assertEqual(cast(a, POINTER(c_byte))[:7], 43 self.assertEqual(cast(a, POINTER(c_byte))[:7:], 45 self.assertEqual(cast(a, POINTER(c_byte))[6:-1:-1], 47 self.assertEqual(cast(a, POINTER(c_byte))[:7:2], 49 self.assertEqual(cast(a, POINTER(c_byte))[:7:7],
|
test_cfuncs.py | 18 self._dll.tf_b.restype = c_byte 19 self._dll.tf_b.argtypes = (c_byte,) 24 self._dll.tf_bb.restype = c_byte 25 self._dll.tf_bb.argtypes = (c_byte, c_byte) 37 self._dll.tf_bB.argtypes = (c_byte, c_ubyte) 49 self._dll.tf_bh.argtypes = (c_byte, c_short) 61 self._dll.tf_bH.argtypes = (c_byte, c_ushort) 73 self._dll.tf_bi.argtypes = (c_byte, c_int) 85 self._dll.tf_bI.argtypes = (c_byte, c_uint [all...] |
test_byteswap.py | 143 self.assertTrue(c_byte.__ctype_le__ is c_byte) 144 self.assertTrue(c_byte.__ctype_be__ is c_byte) 161 ("b", c_byte), 174 ("b1", c_byte, 3), 175 ("b2", c_byte, 3), 176 ("b3", c_byte, 2), 229 _fields_ = [("b", c_byte), 248 _fields_ = [("b", c_byte), [all...] |
test_unaligned_structures.py | 18 _fields_ = [("pad", c_byte), 22 _fields_ = [("pad", c_byte),
|
test_repr.py | 5 for base in [c_byte, c_short, c_int, c_long, c_longlong,
|
test_bitfields.py | 49 signed_int_types = (c_byte, c_short, c_int, c_long, c_longlong) 199 _fields_ = [("a", c_byte, 4), 208 _fields_ = [("a", c_byte, 4), 214 _fields_ = [("a", c_byte, 4), 216 self.assertEqual(sizeof(X), sizeof(c_byte)) 237 _fields_ = [("a", c_byte, 4),
|
test_pep3118.py | 114 (c_byte, "<b", None, c_byte), 139 (POINTER(c_byte), "&<b", None, POINTER(c_byte)),
|
test_functions.py | 72 f.argtypes = [c_byte, c_wchar, c_int, c_long, c_float, c_double] 83 f.argtypes = [c_byte, c_short, c_int, c_long, c_float, c_double] 98 f.argtypes = [c_byte, c_short, c_int, c_long, c_float, c_double] 124 f.argtypes = [c_byte, c_short, c_int, c_long, c_float, c_double] 136 f.argtypes = [c_byte, c_short, c_int, c_long, c_float, c_double] 148 f.argtypes = [c_byte, c_short, c_int, c_long, c_float, c_longdouble] 165 f.argtypes = [c_byte, c_short, c_int, c_long, c_float, c_double] 171 f.argtypes = [c_byte, c_short, c_int, c_long, c_float, c_double, c_longlong]
|
test_array_in_pointer.py | 14 _fields_ = [("val", c_byte)]
|
test_structures.py | 47 "b": c_byte, 164 _fields_ = [("a", c_byte), 172 _fields_ = [("a", c_byte), 179 _fields_ = [("a", c_byte), 190 _fields_ = [("a", c_byte), 204 d = {"_fields_": [("a", c_byte)], 207 d = {"_fields_": [("a", c_byte)],
|
test_callbacks.py | 25 PROTO = self.functype.im_func(typ, c_byte, typ) 36 self.check_type(c_byte, 42) 37 self.check_type(c_byte, -42)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ctypes/test/ |
test_memfunctions.py | 41 self.assertEqual(cast(a, POINTER(c_byte))[:7], 43 self.assertEqual(cast(a, POINTER(c_byte))[:7:], 45 self.assertEqual(cast(a, POINTER(c_byte))[6:-1:-1], 47 self.assertEqual(cast(a, POINTER(c_byte))[:7:2], 49 self.assertEqual(cast(a, POINTER(c_byte))[:7:7],
|
test_cfuncs.py | 18 self._dll.tf_b.restype = c_byte 19 self._dll.tf_b.argtypes = (c_byte,) 24 self._dll.tf_bb.restype = c_byte 25 self._dll.tf_bb.argtypes = (c_byte, c_byte) 37 self._dll.tf_bB.argtypes = (c_byte, c_ubyte) 49 self._dll.tf_bh.argtypes = (c_byte, c_short) 61 self._dll.tf_bH.argtypes = (c_byte, c_ushort) 73 self._dll.tf_bi.argtypes = (c_byte, c_int) 85 self._dll.tf_bI.argtypes = (c_byte, c_uint [all...] |
test_byteswap.py | 143 self.assertTrue(c_byte.__ctype_le__ is c_byte) 144 self.assertTrue(c_byte.__ctype_be__ is c_byte) 161 ("b", c_byte), 174 ("b1", c_byte, 3), 175 ("b2", c_byte, 3), 176 ("b3", c_byte, 2), 229 _fields_ = [("b", c_byte), 248 _fields_ = [("b", c_byte), [all...] |
test_unaligned_structures.py | 18 _fields_ = [("pad", c_byte), 22 _fields_ = [("pad", c_byte),
|
test_repr.py | 5 for base in [c_byte, c_short, c_int, c_long, c_longlong,
|
test_bitfields.py | 49 signed_int_types = (c_byte, c_short, c_int, c_long, c_longlong) 199 _fields_ = [("a", c_byte, 4), 208 _fields_ = [("a", c_byte, 4), 214 _fields_ = [("a", c_byte, 4), 216 self.assertEqual(sizeof(X), sizeof(c_byte)) 237 _fields_ = [("a", c_byte, 4),
|
test_pep3118.py | 114 (c_byte, "<b", None, c_byte), 139 (POINTER(c_byte), "&<b", None, POINTER(c_byte)),
|
test_functions.py | 72 f.argtypes = [c_byte, c_wchar, c_int, c_long, c_float, c_double] 83 f.argtypes = [c_byte, c_short, c_int, c_long, c_float, c_double] 98 f.argtypes = [c_byte, c_short, c_int, c_long, c_float, c_double] 124 f.argtypes = [c_byte, c_short, c_int, c_long, c_float, c_double] 136 f.argtypes = [c_byte, c_short, c_int, c_long, c_float, c_double] 148 f.argtypes = [c_byte, c_short, c_int, c_long, c_float, c_longdouble] 165 f.argtypes = [c_byte, c_short, c_int, c_long, c_float, c_double] 171 f.argtypes = [c_byte, c_short, c_int, c_long, c_float, c_double, c_longlong]
|
test_array_in_pointer.py | 14 _fields_ = [("val", c_byte)]
|
test_structures.py | 47 "b": c_byte, 164 _fields_ = [("a", c_byte), 172 _fields_ = [("a", c_byte), 179 _fields_ = [("a", c_byte), 190 _fields_ = [("a", c_byte), 204 d = {"_fields_": [("a", c_byte)], 207 d = {"_fields_": [("a", c_byte)],
|
test_callbacks.py | 25 PROTO = self.functype.im_func(typ, c_byte, typ) 36 self.check_type(c_byte, 42) 37 self.check_type(c_byte, -42)
|
/external/llvm/bindings/python/llvm/ |
disassembler.py | 13 from ctypes import c_byte namespace 102 out_str = cast((c_byte * 255)(), c_char_p) 123 out_str = cast((c_byte * 255)(), c_char_p)
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ctypes/ |
__init__.py | 233 class c_byte(_SimpleCData): class in inherits:_SimpleCData 235 c_byte.__ctype_le__ = c_byte.__ctype_be__ = c_byte 236 _check_size(c_byte) 543 c_int8 = c_byte
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ctypes/ |
__init__.py | 233 class c_byte(_SimpleCData): class in inherits:_SimpleCData 235 c_byte.__ctype_le__ = c_byte.__ctype_be__ = c_byte 236 _check_size(c_byte) 543 c_int8 = c_byte
|