Searched refs:tStep (Results 1 - 5 of 5) sorted by relevance

/external/chromium_org/third_party/sqlite/src/src/
H A Dtest_func.c486 static void tStep(sqlite3_context *a, int b, sqlite3_value **c){} function
509 rc = sqlite3_create_function(db, "tx", 1, SQLITE_UTF8, 0, tStep,tStep,tFinal);
512 rc = sqlite3_create_function(db, "tx", 1, SQLITE_UTF8, 0, tStep, tStep, 0);
515 rc = sqlite3_create_function(db, "tx", 1, SQLITE_UTF8, 0, tStep, 0, tFinal);
521 rc = sqlite3_create_function(db, "tx", 1, SQLITE_UTF8, 0, 0, tStep, 0);
524 rc = sqlite3_create_function(db, "tx", -2, SQLITE_UTF8, 0, tStep, 0, 0);
527 rc = sqlite3_create_function(db, "tx", 128, SQLITE_UTF8, 0, tStep, 0, 0);
536 1, SQLITE_UTF8, 0, tStep,
[all...]
/external/chromium_org/third_party/skia/src/pathops/
H A DSkDQuadIntersection.cpp296 double tStep = ROUGH_EPSILON; local
310 if (calcMask & (1 << 0)) t1[0] = quad1.ptAtT(SkTMax(0., *t1Seed - tStep));
311 if (calcMask & (1 << 2)) t1[2] = quad1.ptAtT(SkTMin(1., *t1Seed + tStep));
312 if (calcMask & (1 << 3)) t2[0] = quad2.ptAtT(SkTMax(0., *t2Seed - tStep));
313 if (calcMask & (1 << 5)) t2[2] = quad2.ptAtT(SkTMin(1., *t2Seed + tStep));
332 tStep /= 2;
333 if (tStep < FLT_EPSILON_HALF) {
340 *t1Seed -= tStep;
345 *t1Seed += tStep;
353 *t2Seed -= tStep;
[all...]
/external/skia/src/pathops/
H A DSkDQuadIntersection.cpp296 double tStep = ROUGH_EPSILON; local
310 if (calcMask & (1 << 0)) t1[0] = quad1.ptAtT(SkTMax(0., *t1Seed - tStep));
311 if (calcMask & (1 << 2)) t1[2] = quad1.ptAtT(SkTMin(1., *t1Seed + tStep));
312 if (calcMask & (1 << 3)) t2[0] = quad2.ptAtT(SkTMax(0., *t2Seed - tStep));
313 if (calcMask & (1 << 5)) t2[2] = quad2.ptAtT(SkTMin(1., *t2Seed + tStep));
332 tStep /= 2;
333 if (tStep < FLT_EPSILON_HALF) {
340 *t1Seed -= tStep;
345 *t1Seed += tStep;
353 *t2Seed -= tStep;
[all...]
/external/chromium_org/third_party/skia/experimental/Intersection/
H A DQuadraticImplicit.cpp338 double tStep = ROUGH_EPSILON;
352 if (calcMask & (1 << 0)) t1[0] = xy_at_t(quad1, t1Seed - tStep);
353 if (calcMask & (1 << 2)) t1[2] = xy_at_t(quad1, t1Seed + tStep);
354 if (calcMask & (1 << 3)) t2[0] = xy_at_t(quad2, t2Seed - tStep);
355 if (calcMask & (1 << 5)) t2[2] = xy_at_t(quad2, t2Seed + tStep);
374 tStep /= 2;
375 if (tStep < FLT_EPSILON_HALF) {
382 t1Seed -= tStep;
387 t1Seed += tStep;
395 t2Seed -= tStep;
[all...]
/external/skia/experimental/Intersection/
H A DQuadraticImplicit.cpp338 double tStep = ROUGH_EPSILON;
352 if (calcMask & (1 << 0)) t1[0] = xy_at_t(quad1, t1Seed - tStep);
353 if (calcMask & (1 << 2)) t1[2] = xy_at_t(quad1, t1Seed + tStep);
354 if (calcMask & (1 << 3)) t2[0] = xy_at_t(quad2, t2Seed - tStep);
355 if (calcMask & (1 << 5)) t2[2] = xy_at_t(quad2, t2Seed + tStep);
374 tStep /= 2;
375 if (tStep < FLT_EPSILON_HALF) {
382 t1Seed -= tStep;
387 t1Seed += tStep;
395 t2Seed -= tStep;
[all...]

Completed in 922 milliseconds