Searched defs:c0 (Results 1 - 4 of 4) sorted by relevance

/packages/inputmethods/LatinIME/native/jni/src/suggest/policyimpl/utils/
H A Ddamerau_levenshtein_edit_distance_policy.h34 const int c0 = CharUtils::toBaseLowerCase(mString0[index0]); local
36 return (c0 == c1) ? 0.0f : 1.0f;
48 const int c0 = CharUtils::toBaseLowerCase(mString0[index0]); local
50 if (index0 > 0 && index1 > 0 && c0 == CharUtils::toBaseLowerCase(mString1[index1 - 1])
/packages/apps/Camera2/src/com/android/camera/ui/motion/
H A DUnitBezier.java141 * @param c0 start control point.
144 public CubicBezierFn(float c0, float c1) { argument
145 c = 3.0f * c0;
146 b = 3.0f * (c1 - c0) - c;
/packages/apps/Test/connectivity/sl4n/rapidjson/include/rapidjson/internal/
H A Ditoa.h179 const uint32_t c0 = v0 % 10000; local
184 const uint32_t d3 = (c0 / 100) << 1;
185 const uint32_t d4 = (c0 % 100) << 1;
253 const uint32_t c0 = v0 % 10000; local
258 const uint32_t d3 = (c0 / 100) << 1;
259 const uint32_t d4 = (c0 % 100) << 1;
/packages/apps/LegacyCamera/jni/feature_stab/db_vlvm/
H A Ddb_utilities_poly.cpp97 double c0,c1,c2,c3; local
124 c0=e/a;
129 min4_c0= -4.0*c0;
144 ns=lz_through2*lz_through2-c0;
169 double c0,c1,c2,c3; local
196 c0=e/a;
201 min4_c0= -4.0*c0;
216 ns=lz_through2*lz_through2-c0;

Completed in 498 milliseconds