Home | History | Annotate | Download | only in arm

Lines Matching defs:tmp2

110    LONG tmp1,tmp2;
118 : "=&r"(tmp1), "=&r"(tmp2)
123 *c_Im = tmp2;
135 LONG tmp1, tmp2;
141 "smlawb %1, %3, %4, %1;\n" /* tmp2 = a_Im * b_Re + a_Re * b_Im */
142 : "=&r"(tmp1), "=&r"(tmp2)
147 *c_Im = tmp2;
159 LONG tmp1, tmp2;
166 : "=&r"(tmp1), "=&r"(tmp2)
171 *c_Im += tmp2;
184 LONG tmp1, tmp2;
190 "smmul %1, %2, %5;\n" /* tmp2 = a_Re * b_Im */
191 "smmla %1, %3, %4, %1;\n" /* tmp2 += a_Im * b_Re */
192 : "=&r"(tmp1), "=&r"(tmp2)
201 "smull %2, %1, %3, %6;\n" /* tmp2 = a_Re * b_Im */
202 "smlal %2, %1, %4, %5;\n" /* tmp2 += a_Im * b_Re */
203 : "=&r"(tmp1), "=&r"(tmp2), "=&r"(discard)
208 *c_Im = tmp2;