OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:upShift
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/third_party/skia/src/core/
SkEdge.cpp
316
static inline int SkFDot6UpShift(SkFDot6 x, int
upShift
) {
317
SkASSERT((x <<
upShift
>>
upShift
) == x);
318
return x <<
upShift
;
404
compute coefficients with a 3*, so the safest
upshift
is really 6
406
int
upShift
= 6; // largest safe value
407
int downShift = shift +
upShift
- 10;
410
upShift
= 10 - shift;
418
SkFixed B = SkFDot6UpShift(3 * (x1 - x0),
upShift
);
419
SkFixed C = SkFDot6UpShift(3 * (x0 - x1 - x1 + x2),
upShift
);
[
all
...]
/external/skia/src/core/
SkEdge.cpp
316
static inline int SkFDot6UpShift(SkFDot6 x, int
upShift
) {
317
SkASSERT((x <<
upShift
>>
upShift
) == x);
318
return x <<
upShift
;
404
compute coefficients with a 3*, so the safest
upshift
is really 6
406
int
upShift
= 6; // largest safe value
407
int downShift = shift +
upShift
- 10;
410
upShift
= 10 - shift;
418
SkFixed B = SkFDot6UpShift(3 * (x1 - x0),
upShift
);
419
SkFixed C = SkFDot6UpShift(3 * (x0 - x1 - x1 + x2),
upShift
);
[
all
...]
Completed in 30 milliseconds