Home | History | Annotate | Download | only in renderscript

Lines Matching defs:tmp

230         Matrix3f tmp = new Matrix3f();
231 tmp.loadMultiply(this, rhs);
232 load(tmp);
245 Matrix3f tmp = new Matrix3f();
246 tmp.loadRotate(rot, x, y, z);
247 multiply(tmp);
257 Matrix3f tmp = new Matrix3f();
258 tmp.loadRotate(rot);
259 multiply(tmp);
270 Matrix3f tmp = new Matrix3f();
271 tmp.loadScale(x, y);
272 multiply(tmp);
284 Matrix3f tmp = new Matrix3f();
285 tmp.loadScale(x, y, z);
286 multiply(tmp);
297 Matrix3f tmp = new Matrix3f();
298 tmp.loadTranslate(x, y);
299 multiply(tmp);