Searched refs:v0 (Results 1 – 3 of 3) sorted by relevance
175 const uint32_t v0 = static_cast<uint32_t>(value / kTen8); in u64toa() local178 const uint32_t b0 = v0 / 10000; in u64toa()179 const uint32_t c0 = v0 % 10000; in u64toa()249 const uint32_t v0 = static_cast<uint32_t>(value / kTen8); in u64toa() local252 const uint32_t b0 = v0 / 10000; in u64toa()253 const uint32_t c0 = v0 % 10000; in u64toa()
35 public static float lerp(float v0, float v1, float t) { in lerp() argument36 return v0 + t * (v1 - v0); in lerp()
225 public static int[] getCenterDeltaInScreenSpace(View v0, View v1) { in getCenterDeltaInScreenSpace() argument226 v0.getLocationInWindow(sLoc0); in getCenterDeltaInScreenSpace()229 sLoc0[0] += (v0.getMeasuredWidth() * v0.getScaleX()) / 2; in getCenterDeltaInScreenSpace()230 sLoc0[1] += (v0.getMeasuredHeight() * v0.getScaleY()) / 2; in getCenterDeltaInScreenSpace()