Lines Matching refs:format

59 string getOpOperation (Operator op, VkFormat format, string lhs, string rhs)
71 switch (format)
91 switch (format)
111 switch (format)
125 switch (format)
139 switch (format)
155 string getIdentity (Operator op, VkFormat format)
157 const bool isFloat = subgroups::isFormatFloat(format);
158 const bool isInt = subgroups::isFormatSigned(format);
159 const bool isUnsigned = subgroups::isFormatUnsigned(format);
167 return subgroups::getFormatNameForGLSL(format) + "(0)";
169 return subgroups::getFormatNameForGLSL(format) + "(1)";
173 return subgroups::getFormatNameForGLSL(format) + "(intBitsToFloat(0x7f800000))";
177 switch (format)
180 return subgroups::getFormatNameForGLSL(format) + "(0x7fffffff)";
189 return subgroups::getFormatNameForGLSL(format) + "(0x7f)";
198 return subgroups::getFormatNameForGLSL(format) + "(0x7fff)";
207 return subgroups::getFormatNameForGLSL(format) + "(0x7fffffffffffffffUL)";
212 return subgroups::getFormatNameForGLSL(format) + "(-1)";
222 return subgroups::getFormatNameForGLSL(format) + "(intBitsToFloat(0xff800000))";
226 switch (format)
229 return subgroups::getFormatNameForGLSL(format) + "(0x80000000)";
238 return subgroups::getFormatNameForGLSL(format) + "(0x80)";
247 return subgroups::getFormatNameForGLSL(format) + "(0x8000)";
256 return subgroups::getFormatNameForGLSL(format) + "(0x8000000000000000UL)";
261 return subgroups::getFormatNameForGLSL(format) + "(0)";
269 return subgroups::getFormatNameForGLSL(format) + "(~0)";
271 return subgroups::getFormatNameForGLSL(format) + "(0)";
273 return subgroups::getFormatNameForGLSL(format) + "(0)";
277 string getCompare (Operator op, VkFormat format, string lhs, string rhs)
279 const string formatName = subgroups::getFormatNameForGLSL(format);
282 switch (format)