OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:RoughlyEqualUlps
(Results
1 - 10
of
10
) sorted by null
/external/skia/tests/
PathOpsTypesTest.cpp
18
bool equal =
RoughlyEqualUlps
(roughlyTests[index][0], roughlyTests[index][1]);
/external/skqp/tests/
PathOpsTypesTest.cpp
18
bool equal =
RoughlyEqualUlps
(roughlyTests[index][0], roughlyTests[index][1]);
/external/skia/src/pathops/
SkPathOpsPoint.h
151
if (!
RoughlyEqualUlps
(fX, a.fX) || !
RoughlyEqualUlps
(fY, a.fY)) {
171
if (!
RoughlyEqualUlps
(fX, a.fX) || !
RoughlyEqualUlps
(fY, a.fY)) {
191
if (!
RoughlyEqualUlps
(a.fX, b.fX) || !
RoughlyEqualUlps
(a.fY, b.fY)) {
239
return
RoughlyEqualUlps
(largest, largest + dist); // is the dist within ULPS tolerance?
243
if (!
RoughlyEqualUlps
(a.fX, b.fX) && !
RoughlyEqualUlps
(a.fY, b.fY)) {
253
return
RoughlyEqualUlps
((double) largest, largest + dist); // is dist within ULPS tolerance
[
all
...]
SkPathOpsTypes.h
281
bool
RoughlyEqualUlps
(float a, float b);
282
inline bool
RoughlyEqualUlps
(double a, double b) {
283
return
RoughlyEqualUlps
(SkDoubleToScalar(a), SkDoubleToScalar(b));
SkPathOpsLine.cpp
78
return
RoughlyEqualUlps
(largest, largest + dist); // is the dist within ULPS tolerance?
SkPathOpsTypes.cpp
159
bool
RoughlyEqualUlps
(float a, float b) {
/external/skqp/src/pathops/
SkPathOpsPoint.h
151
if (!
RoughlyEqualUlps
(fX, a.fX) || !
RoughlyEqualUlps
(fY, a.fY)) {
171
if (!
RoughlyEqualUlps
(fX, a.fX) || !
RoughlyEqualUlps
(fY, a.fY)) {
191
if (!
RoughlyEqualUlps
(a.fX, b.fX) || !
RoughlyEqualUlps
(a.fY, b.fY)) {
239
return
RoughlyEqualUlps
(largest, largest + dist); // is the dist within ULPS tolerance?
243
if (!
RoughlyEqualUlps
(a.fX, b.fX) && !
RoughlyEqualUlps
(a.fY, b.fY)) {
253
return
RoughlyEqualUlps
((double) largest, largest + dist); // is dist within ULPS tolerance
[
all
...]
SkPathOpsTypes.h
281
bool
RoughlyEqualUlps
(float a, float b);
282
inline bool
RoughlyEqualUlps
(double a, double b) {
283
return
RoughlyEqualUlps
(SkDoubleToScalar(a), SkDoubleToScalar(b));
SkPathOpsLine.cpp
78
return
RoughlyEqualUlps
(largest, largest + dist); // is the dist within ULPS tolerance?
SkPathOpsTypes.cpp
159
bool
RoughlyEqualUlps
(float a, float b) {
Completed in 142 milliseconds