Home | History | Annotate | Download | only in test

Lines Matching refs:_dll

10     _dll = CDLL(_ctypes_test.__file__)
13 return c_longlong.in_dll(self._dll, "last_tf_arg_s").value
15 return c_ulonglong.in_dll(self._dll, "last_tf_arg_u").value
18 self._dll.tf_b.restype = c_byte
19 self._dll.tf_b.argtypes = (c_byte,)
20 self.assertEqual(self._dll.tf_b(-126), -42)
24 self._dll.tf_bb.restype = c_byte
25 self._dll.tf_bb.argtypes = (c_byte, c_byte)
26 self.assertEqual(self._dll.tf_bb(0, -126), -42)
30 self._dll.tf_B.restype = c_ubyte
31 self._dll.tf_B.argtypes = (c_ubyte,)
32 self.assertEqual(self._dll.tf_B(255), 85)
36 self._dll.tf_bB.restype = c_ubyte
37 self._dll.tf_bB.argtypes = (c_byte, c_ubyte)
38 self.assertEqual(self._dll.tf_bB(0, 255), 85)
42 self._dll.tf_h.restype = c_short
43 self._dll.tf_h.argtypes = (c_short,)
44 self.assertEqual(self._dll.tf_h(-32766), -10922)
48 self._dll.tf_bh.restype = c_short
49 self._dll.tf_bh.argtypes = (c_byte, c_short)
50 self.assertEqual(self._dll.tf_bh(0, -32766), -10922)
54 self._dll.tf_H.restype = c_ushort
55 self._dll.tf_H.argtypes = (c_ushort,)
56 self.assertEqual(self._dll.tf_H(65535), 21845)
60 self._dll.tf_bH.restype = c_ushort
61 self._dll.tf_bH.argtypes = (c_byte, c_ushort)
62 self.assertEqual(self._dll.tf_bH(0, 65535), 21845)
66 self._dll.tf_i.restype = c_int
67 self._dll.tf_i.argtypes = (c_int,)
68 self.assertEqual(self._dll.tf_i(-2147483646), -715827882)
72 self._dll.tf_bi.restype = c_int
73 self._dll.tf_bi.argtypes = (c_byte, c_int)
74 self.assertEqual(self._dll.tf_bi(0, -2147483646), -715827882)
78 self._dll.tf_I.restype = c_uint
79 self._dll.tf_I.argtypes = (c_uint,)
80 self.assertEqual(self._dll.tf_I(4294967295), 1431655765)
84 self._dll.tf_bI.restype = c_uint
85 self._dll.tf_bI.argtypes = (c_byte, c_uint)
86 self.assertEqual(self._dll.tf_bI(0, 4294967295), 1431655765)
90 self._dll.tf_l.restype = c_long
91 self._dll.tf_l.argtypes = (c_long,)
92 self.assertEqual(self._dll.tf_l(-2147483646), -715827882)
96 self._dll.tf_bl.restype = c_long
97 self._dll.tf_bl.argtypes = (c_byte, c_long)
98 self.assertEqual(self._dll.tf_bl(0, -2147483646), -715827882)
102 self._dll.tf_L.restype = c_ulong
103 self._dll.tf_L.argtypes = (c_ulong,)
104 self.assertEqual(self._dll.tf_L(4294967295), 1431655765)
108 self._dll.tf_bL.restype = c_ulong
109 self._dll.tf_bL.argtypes = (c_char, c_ulong)
110 self.assertEqual(self._dll.tf_bL(' ', 4294967295), 1431655765)
114 self._dll.tf_q.restype = c_longlong
115 self._dll.tf_q.argtypes = (c_longlong, )
116 self.assertEqual(self._dll.tf_q(-9223372036854775806), -3074457345618258602)
120 self._dll.tf_bq.restype = c_longlong
121 self._dll.tf_bq.argtypes = (c_byte, c_longlong)
122 self.assertEqual(self._dll.tf_bq(0, -9223372036854775806), -3074457345618258602)
126 self._dll.tf_Q.restype = c_ulonglong
127 self._dll.tf_Q.argtypes = (c_ulonglong, )
128 self.assertEqual(self._dll.tf_Q(18446744073709551615), 6148914691236517205)
132 self._dll.tf_bQ.restype = c_ulonglong
133 self._dll.tf_bQ.argtypes = (c_byte, c_ulonglong)
134 self.assertEqual(self._dll.tf_bQ(0, 18446744073709551615), 6148914691236517205)
138 self._dll.tf_f.restype = c_float
139 self._dll.tf_f.argtypes = (c_float,)
140 self.assertEqual(self._dll.tf_f(-42.), -14.)
144 self._dll.tf_bf.restype = c_float
145 self._dll.tf_bf.argtypes = (c_byte, c_float)
146 self.assertEqual(self._dll.tf_bf(0, -42.), -14.)
150 self._dll.tf_d.restype = c_double
151 self._dll.tf_d.argtypes = (c_double,)
152 self.assertEqual(self._dll.tf_d(42.), 14.)
156 self._dll.tf_bd.restype = c_double
157 self._dll.tf_bd.argtypes = (c_byte, c_double)
158 self.assertEqual(self._dll.tf_bd(0, 42.), 14.)
162 self._dll.tf_D.restype = c_longdouble
163 self._dll.tf_D.argtypes = (c_longdouble,)
164 self.assertEqual(self._dll.tf_D(42.), 14.)
168 self._dll.tf_bD.restype = c_longdouble
169 self._dll.tf_bD.argtypes = (c_byte, c_longdouble)
170 self.assertEqual(self._dll.tf_bD(0, 42.), 14.)
176 self._dll.tf_i.restype = process_result
177 self._dll.tf_i.argtypes = (c_int,)
178 self.assertEqual(self._dll.tf_i(42), 28)
180 self.assertEqual(self._dll.tf_i(-42), -28)
184 self._dll.tv_i.restype = None
185 self._dll.tv_i.argtypes = (c_int,)
186 self.assertEqual(self._dll.tv_i(42), None)
188 self.assertEqual(self._dll.tv_i(-42), None)
207 _dll = stdcall_dll(_ctypes_test.__file__)