OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:tStep
(Results
1 - 3
of
3
) sorted by null
/external/chromium_org/third_party/sqlite/src/src/
test_func.c
486
static void
tStep
(sqlite3_context *a, int b, sqlite3_value **c){}
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
, 0, 0)
[
all
...]
/external/chromium_org/third_party/skia/src/pathops/
SkDQuadIntersection.cpp
296
double
tStep
= ROUGH_EPSILON;
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/
QuadraticImplicit.cpp
338
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 99 milliseconds