OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:logmode
(Results
1 - 4
of
4
) sorted by null
/external/deqp/framework/common/
tcuImageCompare.hpp
47
bool pixelThresholdCompare (TestLog& log, const char* imageSetName, const char* imageSetDesc, const Surface& reference, const Surface& result, const RGBA& threshold, CompareLogMode
logMode
);
48
bool fuzzyCompare (TestLog& log, const char* imageSetName, const char* imageSetDesc, const Surface& reference, const Surface& result, float threshold, CompareLogMode
logMode
);
49
int measurePixelDiffAccuracy (TestLog& log, const char* imageSetName, const char* imageSetDesc, const Surface& reference, const Surface& result, int bestScoreDiff, int worstScoreDiff, CompareLogMode
logMode
);
51
bool fuzzyCompare (TestLog& log, const char* imageSetName, const char* imageSetDesc, const ConstPixelBufferAccess& reference, const ConstPixelBufferAccess& result, float threshold, CompareLogMode
logMode
);
52
bool floatUlpThresholdCompare (TestLog& log, const char* imageSetName, const char* imageSetDesc, const ConstPixelBufferAccess& reference, const ConstPixelBufferAccess& result, const UVec4& threshold, CompareLogMode
logMode
);
53
bool floatThresholdCompare (TestLog& log, const char* imageSetName, const char* imageSetDesc, const ConstPixelBufferAccess& reference, const ConstPixelBufferAccess& result, const Vec4& threshold, CompareLogMode
logMode
);
54
bool floatThresholdCompare (TestLog& log, const char* imageSetName, const char* imageSetDesc, const Vec4& reference, const ConstPixelBufferAccess& result, const Vec4& threshold, CompareLogMode
logMode
);
55
bool intThresholdCompare (TestLog& log, const char* imageSetName, const char* imageSetDesc, const ConstPixelBufferAccess& reference, const ConstPixelBufferAccess& result, const UVec4& threshold, CompareLogMode
logMode
);
56
bool intThresholdPositionDeviationCompare (TestLog& log, const char* imageSetName, const char* imageSetDesc, const ConstPixelBufferAccess& reference, const ConstPixelBufferAccess& result, const UVec4& threshold, const tcu::IVec3& maxPositionDeviation, bool acceptOutOfBoundsAsAnyValue, CompareLogMode
logMode
);
57
bool intThresholdPositionDeviationErrorThresholdCompare (TestLog& log, const char* imageSetName, const char* imageSetDesc, const ConstPixelBufferAccess& reference, const ConstPixelBufferAccess& result, const UVec4& threshold, const tcu::IVec3& maxPositionDeviation, bool acceptOutOfBoundsAsAnyValue, int maxAllowedFailingPixels, CompareLogMode
logMode
);
[
all
...]
tcuImageCompare.cpp
213
* \param
logMode
Logging mode
216
bool fuzzyCompare (TestLog& log, const char* imageSetName, const char* imageSetDesc, const ConstPixelBufferAccess& reference, const ConstPixelBufferAccess& result, float threshold, CompareLogMode
logMode
)
225
if (!isOk ||
logMode
== COMPARE_LOG_EVERYTHING)
243
else if (
logMode
== COMPARE_LOG_RESULT)
282
* \param
logMode
Logging mode
285
bool fuzzyCompare (TestLog& log, const char* imageSetName, const char* imageSetDesc, const Surface& reference, const Surface& result, float threshold, CompareLogMode
logMode
)
287
return fuzzyCompare(log, imageSetName, imageSetDesc, reference.getAccess(), result.getAccess(), threshold,
logMode
);
331
* \param
logMode
Logging mode
334
int measurePixelDiffAccuracy (TestLog& log, const char* imageSetName, const char* imageSetDesc, const ConstPixelBufferAccess& reference, const ConstPixelBufferAccess& result, int bestScoreDiff, int worstScoreDiff, CompareLogMode
logMode
)
345
if (
logMode
== COMPARE_LOG_EVERYTHING || score <= failThreshold
[
all
...]
/external/libunwind/tests/
test-coredump-unwind.c
76
int
logmode
= LOGMODE_STDIO;
variable
92
if (!
logmode
)
154
verror_msg_helper(s, p, NULL,
logmode
);
165
verror_msg_helper(s, p, NULL,
logmode
);
173
verror_msg_helper(s, p, NULL,
logmode
);
183
verror_msg_helper(s, p, errno ? strerror(errno) : NULL,
logmode
);
192
verror_msg_helper(s, p, errno ? strerror(errno) : NULL,
logmode
);
310
logmode
= LOGMODE_NONE;
/external/deqp/modules/gles2/functional/
es2fTextureCompletenessTests.cpp
85
static bool compareToConstantColor (TestLog& log, const char* imageSetName, const char* imageSetDesc, const tcu::Surface& result, tcu::CompareLogMode
logMode
, RGBA color)
103
if (!isOk ||
logMode
== tcu::COMPARE_LOG_EVERYTHING)
112
else if (
logMode
== tcu::COMPARE_LOG_RESULT)
[
all
...]
Completed in 196 milliseconds