Lines Matching defs:result

283 			const bool	result		= deFloatAbs(depth - ref) <= threshold;
285 if (!result)
292 return result;
303 const bool result = calcFloatDiff(depth, ref) <= threshold;
305 if (!result)
314 return result;
332 const bool result = stencil == ref;
334 if (!result)
341 return result;
373 const bool result = !(anyNotEqual(logicalAnd(lessThanEqual(absDiff(resColor, refColor), threshold.vec4), channelMask), channelMask));
375 if (!result)
382 return result;
398 const bool result = !(anyNotEqual(logicalAnd(lessThanEqual(absDiff(resColor, refColor), threshold64), channelMask), channelMask));
400 if (!result)
407 return result;
423 const bool result = !(anyNotEqual(logicalAnd(lessThanEqual(absDiff(resColor, refColor), threshold64), channelMask), channelMask));
425 if (!result)
432 return result;
450 const bool result = !(calcFloatDiff(resColor[ndx], refColor[ndx]) > threshold.ivec4[ndx] && channelMask[ndx]);
452 if (!result)
794 const VkResult result = m_vki.getPhysicalDeviceImageFormatProperties(m_context.getPhysicalDevice(), m_params.imageFormat, m_params.imageType,
797 if (result == VK_ERROR_FORMAT_NOT_SUPPORTED)
1204 de::MovePtr<TextureLevelPyramid> result (new TextureLevelPyramid(tcuFormat, m_imageMipLevels));
1296 result->allocLevel(mipLevel, extent.width, extent.height, extent.depth);
1297 copy(result->getLevel(mipLevel), ConstPixelBufferAccess(result->getFormat(), result->getLevel(mipLevel).getSize(), pLevelData));
1303 return result;
1310 tcu::TestStatus result = tcu::TestStatus::pass(successMessage);
1344 result = TestStatus::fail("Depth value mismatch! " + message);
1382 result = TestStatus::fail("Stencil value mismatch! " + message);
1468 result = TestStatus::fail("Color value mismatch! " + message);
1475 return result;