HomeSort by relevance Sort by last modified time
    Searched full:c_double (Results 1 - 25 of 48) sorted by null

1 2

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ctypes/test/
test_callbacks.py 83 self.check_type(c_double, 3.14)
84 self.check_type(c_double, -3.14)
117 # POINTER(c_double), for example, is not supported.
119 prototype = self.functype.im_func(POINTER(c_double))
168 CALLBACK = CFUNCTYPE(c_double, c_double)
172 integrate.argtypes = (c_double, c_double, CALLBACK, c_long)
173 integrate.restype = c_double
237 CALLBACK = CFUNCTYPE(c_double, c_double, c_double, c_double
    [all...]
test_libc.py 10 lib.my_sqrt.argtypes = c_double,
11 lib.my_sqrt.restype = c_double
test_byteswap.py 127 self.assertTrue(c_double.__ctype_le__ is c_double)
128 self.assertTrue(c_double.__ctype_be__.__ctype_le__ is c_double)
130 self.assertTrue(c_double.__ctype_be__ is c_double)
131 self.assertTrue(c_double.__ctype_le__.__ctype_be__ is c_double)
132 s = c_double(math.pi)
135 s = c_double.__ctype_le__(math.pi
    [all...]
test_repr.py 7 c_float, c_double, c_longdouble, c_bool]:
test_pickling.py 8 _fields_ = [("a", c_int), ("b", c_double)]
27 c_double(3.14),
test_pep3118.py 131 (c_double, "<d", None, c_double),
132 # c_longdouble may be an alias to c_double
144 (c_double * 4, "(4)<d", (4,), c_double),
test_find.py 77 ## sqrt.argtypes = (c_double,)
78 ## sqrt.restype = c_double
test_unaligned_structures.py 14 c_float, c_double,
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]
137 f.restype = c_double
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_cfuncs.py 150 self._dll.tf_d.restype = c_double
151 self._dll.tf_d.argtypes = (c_double,)
156 self._dll.tf_bd.restype = c_double
157 self._dll.tf_bd.argtypes = (c_byte, c_double)
test_random_things.py 62 cb = CFUNCTYPE(c_int, c_double)(callback_func)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/ctypes/test/
test_callbacks.py 83 self.check_type(c_double, 3.14)
84 self.check_type(c_double, -3.14)
117 # POINTER(c_double), for example, is not supported.
119 prototype = self.functype.im_func(POINTER(c_double))
168 CALLBACK = CFUNCTYPE(c_double, c_double)
172 integrate.argtypes = (c_double, c_double, CALLBACK, c_long)
173 integrate.restype = c_double
237 CALLBACK = CFUNCTYPE(c_double, c_double, c_double, c_double
    [all...]
test_libc.py 10 lib.my_sqrt.argtypes = c_double,
11 lib.my_sqrt.restype = c_double
test_byteswap.py 127 self.assertTrue(c_double.__ctype_le__ is c_double)
128 self.assertTrue(c_double.__ctype_be__.__ctype_le__ is c_double)
130 self.assertTrue(c_double.__ctype_be__ is c_double)
131 self.assertTrue(c_double.__ctype_le__.__ctype_be__ is c_double)
132 s = c_double(math.pi)
135 s = c_double.__ctype_le__(math.pi
    [all...]
test_repr.py 7 c_float, c_double, c_longdouble, c_bool]:
test_pickling.py 8 _fields_ = [("a", c_int), ("b", c_double)]
27 c_double(3.14),
test_pep3118.py 131 (c_double, "<d", None, c_double),
132 # c_longdouble may be an alias to c_double
144 (c_double * 4, "(4)<d", (4,), c_double),
test_find.py 77 ## sqrt.argtypes = (c_double,)
78 ## sqrt.restype = c_double
test_unaligned_structures.py 14 c_float, c_double,
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]
137 f.restype = c_double
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_cfuncs.py 150 self._dll.tf_d.restype = c_double
151 self._dll.tf_d.argtypes = (c_double,)
156 self._dll.tf_bd.restype = c_double
157 self._dll.tf_bd.argtypes = (c_byte, c_double)
test_random_things.py 62 cb = CFUNCTYPE(c_int, c_double)(callback_func)
  /external/llvm/test/ExecutionEngine/
test-interp-vec-arithm_float.ll 15 %C_double = fmul <3 x double> %B_double, %B_double
16 %D_double = fdiv <3 x double> %C_double, %B_double
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_ascii_formatd.py 11 from ctypes import pythonapi, create_string_buffer, sizeof, byref, c_double namespace
23 c_double(10.0))
50 c_double(val))
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_ascii_formatd.py 11 from ctypes import pythonapi, create_string_buffer, sizeof, byref, c_double namespace
23 c_double(10.0))
50 c_double(val))

Completed in 900 milliseconds

1 2