Lines Matching defs:max
1535 DE_ASSERT(width > 0 && width <= static_cast<uint32_t>(std::numeric_limits<int>::max()));
3084 numViewports = std::max(numViewports, viewportConfig.dynamicValue.get().size());
3367 << ") too big for this test (max " << maxPrimitiveOverestimationSizeVal << ")";
5736 // Setting patch control points to std::numeric_limits<uint32_t>::max() will force null tessellation state pointer.
5738 ? std::numeric_limits<uint32_t>::max()
6406 deUint8 stencilResult(vk::VkStencilOp op, deUint8 storedValue, deUint8 referenceValue, deUint8 min, deUint8 max)
6415 case vk::VK_STENCIL_OP_INCREMENT_AND_CLAMP: result = ((result == max) ? result : static_cast<deUint8>(result + 1)); break;
6418 case vk::VK_STENCIL_OP_INCREMENT_AND_WRAP: result = ((result == max) ? min : static_cast<deUint8>(result + 1)); break;
6419 case vk::VK_STENCIL_OP_DECREMENT_AND_WRAP: result = ((result == min) ? max : static_cast<deUint8>(result - 1)); break;
8698 static const auto kMaxVal = std::numeric_limits<deUint8>::max();