Home | History | Annotate | Download | only in test

Lines Matching refs:c_float

109             self.assertTrue(c_float.__ctype_le__ is c_float)
110 self.assertTrue(c_float.__ctype_be__.__ctype_le__ is c_float)
112 self.assertTrue(c_float.__ctype_be__ is c_float)
113 self.assertTrue(c_float.__ctype_le__.__ctype_be__ is c_float)
114 s = c_float(math.pi)
118 s = c_float.__ctype_le__(math.pi)
121 s = c_float.__ctype_be__(math.pi)
170 ("l", c_float),