Home
last modified time | relevance | path

Searched refs:tempX (Results 1 – 4 of 4) sorted by relevance

/external/dropbear/
Dgendss.c91 DEF_MP_INT(tempX); in getp()
98 m_mp_init_multi(&tempX, &tempC, &tempP, &temp2q, NULL); in getp()
116 bytes_to_mp(&tempX, buf, size); in getp()
119 if (mp_mod(&tempX, &temp2q, &tempC) != MP_OKAY) { in getp()
125 if (mp_sub(&tempX, &tempC, &tempP) != MP_OKAY) { in getp()
143 mp_clear_multi(&tempX, &tempC, &tempP, &temp2q, NULL); in getp()
/external/jmonkeyengine/engine/src/test/jme3test/bullet/
DTestBrickTower.java147 double tempX = 0; in initTower() local
161 tempX = Math.sin(Math.toRadians(angle))*radius; in initTower()
162 System.out.println("x="+((float)(tempX))+" y="+((float)(tempY))+" z="+(float)(tempZ)); in initTower()
163 Vector3f vt = new Vector3f((float)(tempX), (float)(tempY), (float)(tempZ)); in initTower()
/external/jmonkeyengine/engine/src/test/jme3test/batching/
DTestBatchNodeTower.java161 double tempX = 0; in initTower() local
175 tempX = Math.sin(Math.toRadians(angle))*radius; in initTower()
176 System.out.println("x="+((float)(tempX))+" y="+((float)(tempY))+" z="+(float)(tempZ)); in initTower()
177 Vector3f vt = new Vector3f((float)(tempX), (float)(tempY), (float)(tempZ)); in initTower()
/external/jmonkeyengine/engine/src/core/com/jme3/math/
DQuaternion.java859 float tempX = x, tempY = y, tempZ = z, tempW = w; in apply() local
861 x = oldX * tempW + oldY * tempZ - oldZ * tempY + oldW * tempX; in apply()
862 y = -oldX * tempZ + oldY * tempW + oldZ * tempX + oldW * tempY; in apply()
863 z = oldX * tempY - oldY * tempX + oldZ * tempW + oldW * tempZ; in apply()
864 w = -oldX * tempX - oldY * tempY - oldZ * tempZ + oldW * tempW; in apply()
941 float tempX, tempY; in multLocal() local
942 tempX = w * w * v.x + 2 * y * w * v.z - 2 * z * w * v.y + x * x * v.x in multLocal()
949 v.x = tempX; in multLocal()