OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:tempW
(Results
1 - 2
of
2
) sorted by null
/external/jmonkeyengine/engine/src/core/com/jme3/math/
Quaternion.java
859
float tempX = x, tempY = y, tempZ = z,
tempW
= w;
861
x = oldX *
tempW
+ oldY * tempZ - oldZ * tempY + oldW * tempX;
862
y = -oldX * tempZ + oldY *
tempW
+ oldZ * tempX + oldW * tempY;
863
z = oldX * tempY - oldY * tempX + oldZ *
tempW
+ oldW * tempZ;
864
w = -oldX * tempX - oldY * tempY - oldZ * tempZ + oldW *
tempW
;
[
all
...]
/hardware/samsung_slsi/exynos5/libcamera/
ExynosCameraHWInterface.cpp
742
int
tempW
, tempH = 0;
743
m_secCamera->getPictureSize(&
tempW
, &tempH);
745
if (
tempW
!= orgPictureW || tempH != orgPictureH) {
[
all
...]
Completed in 487 milliseconds