HomeSort by relevance Sort by last modified time
    Searched refs:c_int (Results 126 - 150 of 235) sorted by null

1 2 3 4 56 7 8 910

  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/ctypes/test/
test_byteswap.py 53 self.assertTrue(c_int.__ctype_le__ is c_int)
54 self.assertTrue(c_int.__ctype_be__.__ctype_le__ is c_int)
56 self.assertTrue(c_int.__ctype_be__ is c_int)
57 self.assertTrue(c_int.__ctype_le__.__ctype_be__ is c_int)
59 s = c_int.__ctype_be__(0x12345678)
64 s = c_int.__ctype_le__(0x12345678
    [all...]
test_pickling.py 8 _fields_ = [("a", c_int), ("b", c_double)]
26 c_int(42),
57 prototype = CFUNCTYPE(c_int)
63 pointer(c_int(42)),
test_init.py 5 _fields_ = [("a", c_int),
6 ("b", c_int)]
test_checkretval.py 5 class CHECKED(c_int):
test_repr.py 5 for base in [c_byte, c_short, c_int, c_long, c_longlong,
  /external/autotest/client/site_tests/kernel_CryptoAPI/
kernel_CryptoAPI.py 98 libc.socket.argtypes = [ ctypes.c_int, ctypes.c_int, ctypes.c_int ]
99 libc.bind.argtypes = [ ctypes.c_int, ctypes.c_void_p, ctypes.c_int ]
100 libc.send.argtypes = [ ctypes.c_int, ctypes.c_void_p, ctypes.c_size_t,
101 ctypes.c_int ]
102 libc.recv.argtypes = [ ctypes.c_int, ctypes.c_void_p, ctypes.c_size_t,
103 ctypes.c_int ]
  /external/python/cpython2/Lib/ctypes/test/
test_init.py 5 _fields_ = [("a", c_int),
6 ("b", c_int)]
test_checkretval.py 6 class CHECKED(c_int):
test_repr.py 5 for base in [c_byte, c_short, c_int, c_long, c_longlong,
  /prebuilts/gdb/darwin-x86/lib/python2.7/ctypes/test/
test_init.py 5 _fields_ = [("a", c_int),
6 ("b", c_int)]
test_checkretval.py 5 class CHECKED(c_int):
test_repr.py 5 for base in [c_byte, c_short, c_int, c_long, c_longlong,
  /prebuilts/gdb/linux-x86/lib/python2.7/ctypes/test/
test_init.py 5 _fields_ = [("a", c_int),
6 ("b", c_int)]
test_checkretval.py 5 class CHECKED(c_int):
test_repr.py 5 for base in [c_byte, c_short, c_int, c_long, c_longlong,
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ctypes/test/
test_init.py 5 _fields_ = [("a", c_int),
6 ("b", c_int)]
test_checkretval.py 5 class CHECKED(c_int):
test_repr.py 5 for base in [c_byte, c_short, c_int, c_long, c_longlong,
  /prebuilts/gdb/darwin-x86/lib/python2.7/lib-tk/test/
runtktests.py 32 from ctypes import cdll, c_int, pointer, Structure
41 _fields_ = [("highLongOfPSN", c_int),
42 ("lowLongOfPSN", c_int)]
  /prebuilts/gdb/linux-x86/lib/python2.7/lib-tk/test/
runtktests.py 32 from ctypes import cdll, c_int, pointer, Structure
41 _fields_ = [("highLongOfPSN", c_int),
42 ("lowLongOfPSN", c_int)]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib-tk/test/
runtktests.py 32 from ctypes import cdll, c_int, pointer, Structure
41 _fields_ = [("highLongOfPSN", c_int),
42 ("lowLongOfPSN", c_int)]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib-tk/test/
runtktests.py 32 from ctypes import cdll, c_int, pointer, Structure
41 _fields_ = [("highLongOfPSN", c_int),
42 ("lowLongOfPSN", c_int)]
  /external/sonivox/jet_tools/JetCreator/
eas.py 108 EAS_METADATA_CBFUNC = CFUNCTYPE(c_int, c_int, c_char_p, c_ulong)
111 EAS_EXT_PRG_CHG_FUNC = CFUNCTYPE(c_int, c_void_p, c_void_p)
112 EAS_EXT_EVENT_FUNC = CFUNCTYPE(c_int, c_void_p, c_void_p)
115 EAS_DECODER_FUNC = CFUNCTYPE(c_void_p, c_void_p, c_int, c_int)
208 LOG_FUNC_TYPE = CFUNCTYPE(c_int, c_int, c_char_p)
252 priority = c_int(0)
279 polyphony = c_int(0)
    [all...]
  /device/linaro/hikey/installer/hikey960/
mkdtimg 20 from ctypes import sizeof, Structure, c_char, c_int
75 ('version', c_int),
76 ('dt_count', c_int)]
79 _fields_ = [('dtb_size', c_int),
80 ('dtb_offset', c_int)]
  /external/autotest/client/cros/graphics/
gbm.py 24 ("fd", c_int),
34 ("fds", c_int * GBM_MAX_PLANES),
73 l.gbm_create_device.argtypes = [c_int]
215 map_ints_type = c_int * (stride_pixels * framebuffer.height)
216 map_int_p = cast(map_void_p, POINTER(c_int))

Completed in 1091 milliseconds

1 2 3 4 56 7 8 910