Home | History | Annotate | Download | only in CodeGenCXX

Lines Matching refs:fr

7 void reinterpret_cast_test(int &ir, float &fr, X &xr) {
11 ir = reinterpret_cast<int&>(fr);
19 fr = reinterpret_cast<float&>(ir);
23 fr = reinterpret_cast<float&>(xr);
31 xr = reinterpret_cast<X&>(fr);
43 cfr = reinterpret_cast<_Complex float&>(fr);
52 void c_cast(int &ir, float &fr, X &xr) {
56 ir = (int&)fr;
64 fr = (float&)ir;
68 fr = (float&)xr;
76 xr = (X&)fr;
88 cfr = (_Complex float&)fr;
97 void functional_cast(int &ir, float &fr, X &xr) {
104 ir = intref(fr);
112 fr = floatref(ir);
116 fr = floatref(xr);
124 xr = Xref(fr);
137 cfr = complex_float_ref(fr);