HomeSort by relevance Sort by last modified time
    Searched defs:c_long (Results 1 - 9 of 9) sorted by null

  /prebuilts/gdb/darwin-x86/lib/python2.7/ctypes/test/
test_parameters.py 91 from ctypes import c_short, c_uint, c_int, c_long, POINTER, pointer namespace
102 if c_int != c_long:
103 self.assertRaises(TypeError, LPINT.from_param, pointer(c_long(42)))
110 from ctypes import c_short, c_uint, c_int, c_long, pointer, POINTER, byref namespace
116 if c_int != c_long:
117 self.assertRaises(TypeError, LPINT.from_param, byref(c_long(22)))
122 from ctypes import c_short, c_uint, c_int, c_long, pointer, POINTER, byref namespace
128 if c_int != c_long:
129 self.assertRaises(TypeError, LPLPINT.from_param, byref(pointer(c_long(22))))
133 from ctypes import c_short, c_uint, c_int, c_long, POINTE namespace
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/ctypes/test/
test_parameters.py 91 from ctypes import c_short, c_uint, c_int, c_long, POINTER, pointer namespace
102 if c_int != c_long:
103 self.assertRaises(TypeError, LPINT.from_param, pointer(c_long(42)))
110 from ctypes import c_short, c_uint, c_int, c_long, pointer, POINTER, byref namespace
116 if c_int != c_long:
117 self.assertRaises(TypeError, LPINT.from_param, byref(c_long(22)))
122 from ctypes import c_short, c_uint, c_int, c_long, pointer, POINTER, byref namespace
128 if c_int != c_long:
129 self.assertRaises(TypeError, LPLPINT.from_param, byref(pointer(c_long(22))))
133 from ctypes import c_short, c_uint, c_int, c_long, POINTE namespace
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ctypes/test/
test_parameters.py 91 from ctypes import c_short, c_uint, c_int, c_long, POINTER, pointer namespace
102 if c_int != c_long:
103 self.assertRaises(TypeError, LPINT.from_param, pointer(c_long(42)))
110 from ctypes import c_short, c_uint, c_int, c_long, pointer, POINTER, byref namespace
116 if c_int != c_long:
117 self.assertRaises(TypeError, LPINT.from_param, byref(c_long(22)))
122 from ctypes import c_short, c_uint, c_int, c_long, pointer, POINTER, byref namespace
128 if c_int != c_long:
129 self.assertRaises(TypeError, LPLPINT.from_param, byref(pointer(c_long(22))))
133 from ctypes import c_short, c_uint, c_int, c_long, POINTE namespace
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/ctypes/test/
test_parameters.py 91 from ctypes import c_short, c_uint, c_int, c_long, POINTER, pointer namespace
102 if c_int != c_long:
103 self.assertRaises(TypeError, LPINT.from_param, pointer(c_long(42)))
110 from ctypes import c_short, c_uint, c_int, c_long, pointer, POINTER, byref namespace
116 if c_int != c_long:
117 self.assertRaises(TypeError, LPINT.from_param, byref(c_long(22)))
122 from ctypes import c_short, c_uint, c_int, c_long, pointer, POINTER, byref namespace
128 if c_int != c_long:
129 self.assertRaises(TypeError, LPLPINT.from_param, byref(pointer(c_long(22))))
133 from ctypes import c_short, c_uint, c_int, c_long, POINTE namespace
    [all...]
  /external/opencv3/modules/ts/misc/
run.py 109 from ctypes import c_long , c_int , c_uint , c_char , c_ubyte , c_char_p , c_void_p namespace
119 ( 'pcPriClassBase' , c_long) ,
122 ( 'th32MemoryBase' , c_long) ,
123 ( 'th32AccessKey' , c_long ) ]
126 _fields_ = [ ( 'dwSize' , c_long ) ,
127 ( 'th32ModuleID' , c_long ),
128 ( 'th32ProcessID' , c_long ),
129 ( 'GlblcntUsage' , c_long ),
130 ( 'ProccntUsage' , c_long ) ,
131 ( 'modBaseAddr' , c_long ) ,
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/ctypes/
__init__.py 176 class c_long(_SimpleCData): class in inherits:_SimpleCData
178 _check_size(c_long)
185 # if int and long have the same size, make c_int an alias for c_long
186 c_int = c_long
211 # if long and long long have the same size, make c_longlong an alias for c_long
212 c_longlong = c_long
404 # Mustn't it derive from c_long then?
478 c_ssize_t = c_long
545 for kind in [c_short, c_int, c_long, c_longlong]:
  /prebuilts/gdb/linux-x86/lib/python2.7/ctypes/
__init__.py 176 class c_long(_SimpleCData): class in inherits:_SimpleCData
178 _check_size(c_long)
185 # if int and long have the same size, make c_int an alias for c_long
186 c_int = c_long
211 # if long and long long have the same size, make c_longlong an alias for c_long
212 c_longlong = c_long
404 # Mustn't it derive from c_long then?
478 c_ssize_t = c_long
545 for kind in [c_short, c_int, c_long, c_longlong]:
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ctypes/
__init__.py 176 class c_long(_SimpleCData): class in inherits:_SimpleCData
178 _check_size(c_long)
185 # if int and long have the same size, make c_int an alias for c_long
186 c_int = c_long
211 # if long and long long have the same size, make c_longlong an alias for c_long
212 c_longlong = c_long
404 # Mustn't it derive from c_long then?
478 c_ssize_t = c_long
545 for kind in [c_short, c_int, c_long, c_longlong]:
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/ctypes/
__init__.py 176 class c_long(_SimpleCData): class in inherits:_SimpleCData
178 _check_size(c_long)
185 # if int and long have the same size, make c_int an alias for c_long
186 c_int = c_long
211 # if long and long long have the same size, make c_longlong an alias for c_long
212 c_longlong = c_long
404 # Mustn't it derive from c_long then?
478 c_ssize_t = c_long
545 for kind in [c_short, c_int, c_long, c_longlong]:

Completed in 807 milliseconds