• Home
  • Raw
  • Download

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; // expected-warning{{cast to 'VoidPtr' (aka 'void *') from smaller integer typ… in testInt()
56 …(void) (CharPtr) v; // expected-warning{{cast to 'CharPtr' (aka 'char *') from smaller integer typ… in testInt()
62 (void) (VoidPtr) v; // no-warning in testInt()
63 …(void) (CharPtr) v; // expected-warning{{cast to 'CharPtr' (aka 'char *') from smaller integer typ… in testInt()
67 void testLong(Long v) { in testLong() argument
68 (void) (Bool) v; in testLong()
69 (void) (Int) v; in testLong()
70 (void) (Long) v; in testLong()
71 (void) (Float) v; in testLong()
72 (void) (Double) v; in testLong()
73 (void) (CInt) v; in testLong()
74 (void) (CLong) v; in testLong()
75 (void) (CFloat) v; in testLong()
76 (void) (CDouble) v; in testLong()
77 (void) (VoidPtr) v; in testLong()
78 (void) (CharPtr) v; in testLong()
81 void testFloat(Float v) { in testFloat() argument
82 (void) (Bool) v; in testFloat()
83 (void) (Int) v; in testFloat()
84 (void) (Long) v; in testFloat()
85 (void) (Float) v; in testFloat()
86 (void) (Double) v; in testFloat()
87 (void) (CInt) v; in testFloat()
88 (void) (CLong) v; in testFloat()
89 (void) (CFloat) v; in testFloat()
90 (void) (CDouble) v; in testFloat()
93 void testDouble(Double v) { in testDouble() argument
94 (void) (Bool) v; in testDouble()
95 (void) (Int) v; in testDouble()
96 (void) (Long) v; in testDouble()
97 (void) (Float) v; in testDouble()
98 (void) (Double) v; in testDouble()
99 (void) (CInt) v; in testDouble()
100 (void) (CLong) v; in testDouble()
101 (void) (CFloat) v; in testDouble()
102 (void) (CDouble) v; in testDouble()
105 void testCI(CInt v) { in testCI() argument
106 (void) (Bool) v; in testCI()
107 (void) (Int) v; in testCI()
108 (void) (Long) v; in testCI()
109 (void) (Float) v; in testCI()
110 (void) (Double) v; in testCI()
111 (void) (CInt) v; in testCI()
112 (void) (CLong) v; in testCI()
113 (void) (CFloat) v; in testCI()
114 (void) (CDouble) v; in testCI()
117 void testCLong(CLong v) { in testCLong() argument
118 (void) (Bool) v; in testCLong()
119 (void) (Int) v; in testCLong()
120 (void) (Long) v; in testCLong()
121 (void) (Float) v; in testCLong()
122 (void) (Double) v; in testCLong()
123 (void) (CInt) v; in testCLong()
124 (void) (CLong) v; in testCLong()
125 (void) (CFloat) v; in testCLong()
126 (void) (CDouble) v; in testCLong()
129 void testCFloat(CFloat v) { in testCFloat() argument
130 (void) (Bool) v; in testCFloat()
131 (void) (Int) v; in testCFloat()
132 (void) (Long) v; in testCFloat()
133 (void) (Float) v; in testCFloat()
134 (void) (Double) v; in testCFloat()
135 (void) (CInt) v; in testCFloat()
136 (void) (CLong) v; in testCFloat()
137 (void) (CFloat) v; in testCFloat()
138 (void) (CDouble) v; in testCFloat()
141 void testCDouble(CDouble v) { in testCDouble() argument
142 (void) (Bool) v; in testCDouble()
143 (void) (Int) v; in testCDouble()
144 (void) (Long) v; in testCDouble()
145 (void) (Float) v; in testCDouble()
146 (void) (Double) v; in testCDouble()
147 (void) (CInt) v; in testCDouble()
148 (void) (CLong) v; in testCDouble()
149 (void) (CFloat) v; in testCDouble()
150 (void) (CDouble) v; in testCDouble()
153 void testVoidPtr(VoidPtr v) { in testVoidPtr() argument
154 (void) (Bool) v; in testVoidPtr()
155 (void) (Int) v; in testVoidPtr()
156 (void) (Long) v; in testVoidPtr()
157 (void) (VoidPtr) v; in testVoidPtr()
158 (void) (CharPtr) v; in testVoidPtr()
161 void testCharPtr(CharPtr v) { in testCharPtr() argument
162 (void) (Bool) v; in testCharPtr()
163 (void) (Int) v; in testCharPtr()
164 (void) (Long) v; in testCharPtr()
165 (void) (VoidPtr) v; in testCharPtr()
166 (void) (CharPtr) v; in testCharPtr()