Searched defs:v0 (Results 1 - 3 of 3) sorted by relevance

/packages/apps/Camera2/src/com/android/camera/ui/motion/
H A DInterpolateUtils.java28 * Linear interpolation from v0 to v1 as t goes from 0...1
30 * @param v0 the value at t=0
33 * @return the value between v0 and v1 as a ratio between 0 and 1 defined by t.
35 public static float lerp(float v0, float v1, float t) { argument
36 return v0 + t * (v1 - v0);
/packages/apps/Test/connectivity/sl4n/rapidjson/include/rapidjson/internal/
H A Ditoa.h175 const uint32_t v0 = static_cast<uint32_t>(value / kTen8); local
178 const uint32_t b0 = v0 / 10000;
179 const uint32_t c0 = v0 % 10000;
249 const uint32_t v0 = static_cast<uint32_t>(value / kTen8); local
252 const uint32_t b0 = v0 / 10000;
253 const uint32_t c0 = v0 % 10000;
/packages/apps/Launcher3/src/com/android/launcher3/
H A DUtilities.java223 public static int[] getCenterDeltaInScreenSpace(View v0, View v1) { argument
224 v0.getLocationInWindow(sLoc0);
227 sLoc0[0] += (v0.getMeasuredWidth() * v0.getScaleX()) / 2;
228 sLoc0[1] += (v0.getMeasuredHeight() * v0.getScaleY()) / 2;

Completed in 209 milliseconds