Lines Matching refs:v
31 void testBool(Bool v) { in testBool() argument
32 (void) (Bool) v; in testBool()
33 (void) (Int) v; in testBool()
34 (void) (Long) v; in testBool()
35 (void) (Float) v; in testBool()
36 (void) (Double) v; in testBool()
37 (void) (CInt) v; in testBool()
38 (void) (CLong) v; in testBool()
39 (void) (CFloat) v; in testBool()
40 (void) (CDouble) v; in testBool()
41 (void) (VoidPtr) v; in testBool()
42 (void) (CharPtr) v; in testBool()
45 void testInt(Int v) { in testInt() argument
46 (void) (Bool) v; in testInt()
47 (void) (Int) v; in testInt()
48 (void) (Long) v; in testInt()
49 (void) (Float) v; in testInt()
50 (void) (Double) v; in testInt()
51 (void) (CInt) v; in testInt()
52 (void) (CLong) v; in testInt()
53 (void) (CFloat) v; in testInt()
54 (void) (CDouble) v; in testInt()
55 (void) (VoidPtr) v; in testInt()
56 (void) (CharPtr) v; in testInt()
59 void testLong(Long v) { in testLong() argument
60 (void) (Bool) v; in testLong()
61 (void) (Int) v; in testLong()
62 (void) (Long) v; in testLong()
63 (void) (Float) v; in testLong()
64 (void) (Double) v; in testLong()
65 (void) (CInt) v; in testLong()
66 (void) (CLong) v; in testLong()
67 (void) (CFloat) v; in testLong()
68 (void) (CDouble) v; in testLong()
69 (void) (VoidPtr) v; in testLong()
70 (void) (CharPtr) v; in testLong()
73 void testFloat(Float v) { in testFloat() argument
74 (void) (Bool) v; in testFloat()
75 (void) (Int) v; in testFloat()
76 (void) (Long) v; in testFloat()
77 (void) (Float) v; in testFloat()
78 (void) (Double) v; in testFloat()
79 (void) (CInt) v; in testFloat()
80 (void) (CLong) v; in testFloat()
81 (void) (CFloat) v; in testFloat()
82 (void) (CDouble) v; in testFloat()
85 void testDouble(Double v) { in testDouble() argument
86 (void) (Bool) v; in testDouble()
87 (void) (Int) v; in testDouble()
88 (void) (Long) v; in testDouble()
89 (void) (Float) v; in testDouble()
90 (void) (Double) v; in testDouble()
91 (void) (CInt) v; in testDouble()
92 (void) (CLong) v; in testDouble()
93 (void) (CFloat) v; in testDouble()
94 (void) (CDouble) v; in testDouble()
97 void testCI(CInt v) { in testCI() argument
98 (void) (Bool) v; in testCI()
99 (void) (Int) v; in testCI()
100 (void) (Long) v; in testCI()
101 (void) (Float) v; in testCI()
102 (void) (Double) v; in testCI()
103 (void) (CInt) v; in testCI()
104 (void) (CLong) v; in testCI()
105 (void) (CFloat) v; in testCI()
106 (void) (CDouble) v; in testCI()
109 void testCLong(CLong v) { in testCLong() argument
110 (void) (Bool) v; in testCLong()
111 (void) (Int) v; in testCLong()
112 (void) (Long) v; in testCLong()
113 (void) (Float) v; in testCLong()
114 (void) (Double) v; in testCLong()
115 (void) (CInt) v; in testCLong()
116 (void) (CLong) v; in testCLong()
117 (void) (CFloat) v; in testCLong()
118 (void) (CDouble) v; in testCLong()
121 void testCFloat(CFloat v) { in testCFloat() argument
122 (void) (Bool) v; in testCFloat()
123 (void) (Int) v; in testCFloat()
124 (void) (Long) v; in testCFloat()
125 (void) (Float) v; in testCFloat()
126 (void) (Double) v; in testCFloat()
127 (void) (CInt) v; in testCFloat()
128 (void) (CLong) v; in testCFloat()
129 (void) (CFloat) v; in testCFloat()
130 (void) (CDouble) v; in testCFloat()
133 void testCDouble(CDouble v) { in testCDouble() argument
134 (void) (Bool) v; in testCDouble()
135 (void) (Int) v; in testCDouble()
136 (void) (Long) v; in testCDouble()
137 (void) (Float) v; in testCDouble()
138 (void) (Double) v; in testCDouble()
139 (void) (CInt) v; in testCDouble()
140 (void) (CLong) v; in testCDouble()
141 (void) (CFloat) v; in testCDouble()
142 (void) (CDouble) v; in testCDouble()
145 void testVoidPtr(VoidPtr v) { in testVoidPtr() argument
146 (void) (Bool) v; in testVoidPtr()
147 (void) (Int) v; in testVoidPtr()
148 (void) (Long) v; in testVoidPtr()
149 (void) (VoidPtr) v; in testVoidPtr()
150 (void) (CharPtr) v; in testVoidPtr()
153 void testCharPtr(CharPtr v) { in testCharPtr() argument
154 (void) (Bool) v; in testCharPtr()
155 (void) (Int) v; in testCharPtr()
156 (void) (Long) v; in testCharPtr()
157 (void) (VoidPtr) v; in testCharPtr()
158 (void) (CharPtr) v; in testCharPtr()