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

1 2 3

  /device/google/bonito/json-c/
json_object_private.h 30 double c_double; member in union:json_object::data
json_object.c 489 return (jso->o.c_double != 0);
549 return (int32_t)jso->o.c_double;
578 return (int64_t)jso->o.c_double;
603 if(isnan(jso->o.c_double))
605 else if(isinf(jso->o.c_double))
606 if(jso->o.c_double > 0)
611 size = snprintf(buf, sizeof(buf), "%.17g", jso->o.c_double);
639 jso->o.c_double = d;
682 return jso->o.c_double;
  /device/google/crosshatch/json-c/
json_object_private.h 30 double c_double; member in union:json_object::data
json_object.c 489 return (jso->o.c_double != 0);
549 return (int32_t)jso->o.c_double;
578 return (int64_t)jso->o.c_double;
603 if(isnan(jso->o.c_double))
605 else if(isinf(jso->o.c_double))
606 if(jso->o.c_double > 0)
611 size = snprintf(buf, sizeof(buf), "%.17g", jso->o.c_double);
639 jso->o.c_double = d;
682 return jso->o.c_double;
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_ascii_formatd.py 11 from ctypes import pythonapi, create_string_buffer, sizeof, byref, c_double
23 c_double(10.0))
50 c_double(val))
  /external/python/cpython2/Lib/test/
test_ascii_formatd.py 11 from ctypes import pythonapi, create_string_buffer, sizeof, byref, c_double
23 c_double(10.0))
50 c_double(val))
  /external/python/cpython2/Lib/ctypes/test/
test_callbacks.py 85 self.check_type(c_double, 3.14)
86 self.check_type(c_double, -3.14)
120 # POINTER(c_double), for example, is not supported.
122 prototype = self.functype.im_func(POINTER(c_double))
170 CALLBACK = CFUNCTYPE(c_double, c_double)
174 integrate.argtypes = (c_double, c_double, CALLBACK, c_long)
175 integrate.restype = c_double
235 CALLBACK = CFUNCTYPE(c_double, c_double, c_double, c_double
    [all...]
test_byteswap.py 128 self.assertIs(c_double.__ctype_le__, c_double)
129 self.assertIs(c_double.__ctype_be__.__ctype_le__, c_double)
131 self.assertIs(c_double.__ctype_be__, c_double)
132 self.assertIs(c_double.__ctype_le__.__ctype_be__, c_double)
133 s = c_double(math.pi)
136 s = c_double.__ctype_le__(math.pi
    [all...]
test_libc.py 10 lib.my_sqrt.argtypes = c_double,
11 lib.my_sqrt.restype = c_double
test_repr.py 7 c_float, c_double, c_longdouble, c_bool]:
test_pep3118.py 136 if c_longdouble is c_double:
161 (c_double, "<d", None, c_double),
175 (c_double * 4, "<d", (4,), c_double),
test_functions.py 70 f.argtypes = [c_byte, c_wchar, c_int, c_long, c_float, c_double]
78 f.argtypes = [c_byte, c_short, c_int, c_long, c_float, c_double]
93 f.argtypes = [c_byte, c_short, c_int, c_long, c_float, c_double]
119 f.argtypes = [c_byte, c_short, c_int, c_long, c_float, c_double]
131 f.argtypes = [c_byte, c_short, c_int, c_long, c_float, c_double]
132 f.restype = c_double
157 f.argtypes = [c_byte, c_short, c_int, c_long, c_float, c_double]
163 f.argtypes = [c_byte, c_short, c_int, c_long, c_float, c_double, c_longlong]
test_pickling.py 8 _fields_ = [("a", c_int), ("b", c_double)]
27 c_double(3.14),
test_unaligned_structures.py 14 c_float, c_double,
  /external/python/cpython3/Lib/ctypes/test/
test_callbacks.py 79 self.check_type(c_double, 3.14)
80 self.check_type(c_double, -3.14)
114 # POINTER(c_double), for example, is not supported.
116 prototype = self.functype.__func__(POINTER(c_double))
164 CALLBACK = CFUNCTYPE(c_double, c_double)
168 integrate.argtypes = (c_double, c_double, CALLBACK, c_long)
169 integrate.restype = c_double
229 CALLBACK = CFUNCTYPE(c_double, c_double, c_double, c_double
    [all...]
test_byteswap.py 148 self.assertIs(c_double.__ctype_le__, c_double)
149 self.assertIs(c_double.__ctype_be__.__ctype_le__, c_double)
151 self.assertIs(c_double.__ctype_be__, c_double)
152 self.assertIs(c_double.__ctype_le__.__ctype_be__, c_double)
153 s = c_double(math.pi)
156 s = c_double.__ctype_le__(math.pi
    [all...]
test_libc.py 14 lib.my_sqrt.argtypes = c_double,
15 lib.my_sqrt.restype = c_double
test_repr.py 7 c_float, c_double, c_longdouble, c_bool]:
test_pep3118.py 139 if c_longdouble is c_double:
164 (c_double, "<d", (), c_double),
178 (c_double * 4, "<d", (4,), c_double),
test_functions.py 70 f.argtypes = [c_byte, c_wchar, c_int, c_long, c_float, c_double]
78 f.argtypes = [c_byte, c_short, c_int, c_long, c_float, c_double]
93 f.argtypes = [c_byte, c_short, c_int, c_long, c_float, c_double]
119 f.argtypes = [c_byte, c_short, c_int, c_long, c_float, c_double]
131 f.argtypes = [c_byte, c_short, c_int, c_long, c_float, c_double]
132 f.restype = c_double
157 f.argtypes = [c_byte, c_short, c_int, c_long, c_float, c_double]
163 f.argtypes = [c_byte, c_short, c_int, c_long, c_float, c_double, c_longlong]
test_pickling.py 8 _fields_ = [("a", c_int), ("b", c_double)]
27 c_double(3.14),
test_unaligned_structures.py 14 c_float, c_double,
  /external/capstone/bindings/python/capstone/
arm.py 26 ('fp', ctypes.c_double),
arm64.py 25 ('fp', ctypes.c_double),
x86.py 21 ('fp', ctypes.c_double),

Completed in 124 milliseconds

1 2 3