Home
last modified time | relevance | path

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

/packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/common/
DScroller.java374 float hyp = (float) Math.hypot(dx, dy); in fling() local
376 float ndx = dx / hyp; in fling()
377 float ndy = dy / hyp; in fling()
/packages/apps/LegacyCamera/jni/feature_stab/db_vlvm/
Ddb_image_homography.cpp182 double m,hyp[27],x1_temp[3],x2_temp[3],xp1_temp[3],xp2_temp[3]; in db_StitchRotationCommonFocalLength_3Points() local
208 hyp_point=hyp+9*i; in db_StitchRotationCommonFocalLength_3Points()
225 db_Copy9(H,hyp+9*best_sol); in db_StitchRotationCommonFocalLength_3Points()
/packages/apps/Launcher3/src/com/android/launcher3/
DLauncherScroller.java411 float hyp = (float) Math.hypot(dx, dy); in fling() local
413 float ndx = dx / hyp; in fling()
414 float ndy = dy / hyp; in fling()
/packages/apps/TvSettings/Settings/src/com/android/tv/settings/widget/
DScrollController.java811 float hyp = (float) Math.sqrt(curDx * curDx + curDy * curDy); in startScroll() local
813 float velocityX = velocity * curDx / hyp; in startScroll()
814 float velocityY = velocity * curDy / hyp; in startScroll()