Lines Matching defs:divisor
119 /*! Gets the next multiple of a given divisor */
120 static deUint32 getNextMultiple (deUint32 divisor, deUint32 value)
122 if (value % divisor == 0)
126 return value + divisor - (value % divisor);
1197 tcu::UVec3 alignedDivide (const VkExtent3D& extent, const VkExtent3D& divisor)
1201 result.x() = extent.width / divisor.width + ((extent.width % divisor.width != 0) ? 1u : 0u);
1202 result.y() = extent.height / divisor.height + ((extent.height % divisor.height != 0) ? 1u : 0u);
1203 result.z() = extent.depth / divisor.depth + ((extent.depth % divisor.depth != 0) ? 1u : 0u);