Home | History | Annotate | Download | only in CodeGenCXX

Lines Matching refs:xr

7 void reinterpret_cast_test(int &ir, float &fr, X &xr) {
15 ir = reinterpret_cast<int&>(xr);
23 fr = reinterpret_cast<float&>(xr);
27 xr = reinterpret_cast<X&>(ir);
31 xr = reinterpret_cast<X&>(fr);
47 cfr = reinterpret_cast<_Complex float&>(xr);
52 void c_cast(int &ir, float &fr, X &xr) {
60 ir = (int&)xr;
68 fr = (float&)xr;
72 xr = (X&)ir;
76 xr = (X&)fr;
92 cfr = (_Complex float&)xr;
97 void functional_cast(int &ir, float &fr, X &xr) {
108 ir = intref(xr);
116 fr = floatref(xr);
120 xr = Xref(ir);
124 xr = Xref(fr);
141 cfr = complex_float_ref(xr);