OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:tStep
(Results
1 - 2
of
2
) 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
...]
Completed in 335 milliseconds