Home
last modified time | relevance | path

Searched refs:xe (Results 1 – 25 of 157) sorted by relevance

1234567

/third_party/vk-gl-cts/executor/tools/
DxeBatchResultToXml.cpp110 static void parseBatchResult (xe::TestLogParser& parser, const char* filename) in parseBatchResult()
134 for (int i = 0;i < xe::TESTSTATUSCODE_LAST; i++) in BatchResultTotals()
138 int countByCode[xe::TESTSTATUSCODE_LAST];
141 class ResultToSingleXmlLogHandler : public xe::TestLogHandler
144 ResultToSingleXmlLogHandler (xe::xml::Writer& writer, BatchResultTotals& totals) in ResultToSingleXmlLogHandler()
150 void setSessionInfo (const xe::SessionInfo&) in setSessionInfo()
154 xe::TestCaseResultPtr startTestCaseResult (const char* casePath) in startTestCaseResult()
156 return xe::TestCaseResultPtr(new xe::TestCaseResultData(casePath)); in startTestCaseResult()
159 void testCaseResultUpdated (const xe::TestCaseResultPtr&) in testCaseResultUpdated()
163 void testCaseResultComplete (const xe::TestCaseResultPtr& resultData) in testCaseResultComplete()
[all …]
DxeExtractShaderPrograms.cpp53 static const char* getShaderTypeSuffix (const xe::ri::Shader::ShaderType shaderType) in getShaderTypeSuffix()
57 case xe::ri::Shader::SHADERTYPE_VERTEX: return "vert"; in getShaderTypeSuffix()
58 case xe::ri::Shader::SHADERTYPE_FRAGMENT: return "frag"; in getShaderTypeSuffix()
59 case xe::ri::Shader::SHADERTYPE_GEOMETRY: return "geom"; in getShaderTypeSuffix()
60 case xe::ri::Shader::SHADERTYPE_TESS_CONTROL: return "tesc"; in getShaderTypeSuffix()
61 case xe::ri::Shader::SHADERTYPE_TESS_EVALUATION: return "tese"; in getShaderTypeSuffix()
62 case xe::ri::Shader::SHADERTYPE_COMPUTE: return "comp"; in getShaderTypeSuffix()
63 case xe::ri::Shader::SHADERTYPE_RAYGEN: return "rgen"; in getShaderTypeSuffix()
64 case xe::ri::Shader::SHADERTYPE_ANY_HIT: return "ahit"; in getShaderTypeSuffix()
65 case xe::ri::Shader::SHADERTYPE_CLOSEST_HIT: return "chit"; in getShaderTypeSuffix()
[all …]
DxeCommandLineExecutor.cpp129 xe::TargetConfiguration targetCfg;
255 void readCaseList (xe::TestGroup* root, const char* filename) in readCaseList()
257 xe::TestCaseListParser caseListParser; in readCaseList()
278 void readCaseLists (xe::TestRoot& root, const char* caseListDir) in readCaseLists()
293 xe::TestGroup* package = root.createGroup(packageName.c_str(), ""); in readCaseLists()
302 …throw xe::Error("Couldn't find test case lists from test case list directory: '" + string(caseList… in readCaseLists()
305 void addMatchingCases (const xe::TestGroup& group, xe::TestSet& testSet, const char* filter) in addMatchingCases()
309 const xe::TestNode* child = group.getChild(childNdx); in addMatchingCases()
310 const bool isGroup = child->getNodeType() == xe::TESTNODETYPE_GROUP; in addMatchingCases()
318 addMatchingCases(static_cast<const xe::TestGroup&>(*child), testSet, filter); in addMatchingCases()
[all …]
DxeBatchResultToJUnit.cpp59 throw xe::Error("Expected input and output paths"); in parseCommandLine()
65 static void parseBatchResult (xe::TestLogParser& parser, const char* filename) in parseBatchResult()
83 class ResultToJUnitHandler : public xe::TestLogHandler
86 ResultToJUnitHandler (xe::xml::Writer& writer) in ResultToJUnitHandler()
91 void setSessionInfo (const xe::SessionInfo&) in setSessionInfo()
95 xe::TestCaseResultPtr startTestCaseResult (const char* casePath) in startTestCaseResult()
97 return xe::TestCaseResultPtr(new xe::TestCaseResultData(casePath)); in startTestCaseResult()
100 void testCaseResultUpdated (const xe::TestCaseResultPtr&) in testCaseResultUpdated()
104 void testCaseResultComplete (const xe::TestCaseResultPtr& resultData) in testCaseResultComplete()
106 using xe::xml::Writer; in testCaseResultComplete()
[all …]
DxeExtractSampleLists.cpp43 void writeSampleList (const char* casePath, int listNdx, const xe::ri::SampleList& sampleList) in writeSampleList()
56 out << static_cast<const xe::ri::ValueInfo&>(sampleList.sampleInfo.valueInfos.getItem(ndx)).name; in writeSampleList()
63 …const xe::ri::Sample& sample = static_cast<const xe::ri::Sample&>(sampleList.samples.getItem(sampl… in writeSampleList()
67 …const xe::ri::SampleValue& value = static_cast<const xe::ri::SampleValue&>(sample.values.getItem(v… in writeSampleList()
78 void extractSampleLists (const char* casePath, int* listNdx, const xe::ri::List& items) in extractSampleLists()
82 const xe::ri::Item& child = items.getItem(itemNdx); in extractSampleLists()
84 if (child.getType() == xe::ri::TYPE_SECTION) in extractSampleLists()
85 extractSampleLists(casePath, listNdx, static_cast<const xe::ri::Section&>(child).items); in extractSampleLists()
86 else if (child.getType() == xe::ri::TYPE_SAMPLELIST) in extractSampleLists()
88 writeSampleList(casePath, *listNdx, static_cast<const xe::ri::SampleList&>(child)); in extractSampleLists()
[all …]
DxeExtractValues.cpp54 typedef xe::ri::NumericValue Value;
59 xe::TestCaseType caseType;
60 xe::TestStatusCode statusCode;
104 static Value findValueByTag (const xe::ri::List& items, const string& tagName) in findValueByTag()
108 const xe::ri::Item& item = items.getItem(ndx); in findValueByTag()
110 if (item.getType() == xe::ri::TYPE_SECTION) in findValueByTag()
112 const Value value = findValueByTag(static_cast<const xe::ri::Section&>(item).items, tagName); in findValueByTag()
116 else if (item.getType() == xe::ri::TYPE_NUMBER) in findValueByTag()
118 const xe::ri::Number& value = static_cast<const xe::ri::Number&>(item); in findValueByTag()
126 class TagParser : public xe::TestLogHandler
[all …]
DxeTestLogCompare.cpp121 vector<xe::TestCaseResultHeader> resultHeaders;
125 class ShortResultHandler : public xe::TestLogHandler
133 void setSessionInfo (const xe::SessionInfo&) in setSessionInfo()
138 xe::TestCaseResultPtr startTestCaseResult (const char* casePath) in startTestCaseResult()
140 return xe::TestCaseResultPtr(new xe::TestCaseResultData(casePath)); in startTestCaseResult()
143 void testCaseResultUpdated (const xe::TestCaseResultPtr&) in testCaseResultUpdated()
148 void testCaseResultComplete (const xe::TestCaseResultPtr& caseData) in testCaseResultComplete()
150 xe::TestCaseResultHeader header; in testCaseResultComplete()
154 header.caseType = xe::TESTCASETYPE_SELF_VALIDATE; in testCaseResultComplete()
158 if (header.statusCode == xe::TESTSTATUSCODE_LAST) in testCaseResultComplete()
[all …]
DxeMergeTestLogs.cpp61 class LogHandler : public xe::TestLogHandler
64 LogHandler (xe::BatchResult* batchResult, deUint32 flags) in LogHandler()
70 void setSessionInfo (const xe::SessionInfo& info) in setSessionInfo()
72 xe::SessionInfo& combinedInfo = m_batchResult->getSessionInfo(); in setSessionInfo()
96 xe::TestCaseResultPtr startTestCaseResult (const char* casePath) in startTestCaseResult()
100 xe::TestCaseResultPtr existingResult = m_batchResult->getTestCaseResult(casePath); in startTestCaseResult()
108 void testCaseResultUpdated (const xe::TestCaseResultPtr&) in testCaseResultUpdated()
113 void testCaseResultComplete (const xe::TestCaseResultPtr&) in testCaseResultComplete()
119 xe::BatchResult* const m_batchResult;
123 static void readLogFile (xe::BatchResult* dstResult, const char* filename, deUint32 flags) in readLogFile()
[all …]
/third_party/vk-gl-cts/framework/platform/android/
DtcuTestLogParserJNI.cpp180 xe::ContainerFormatParser m_containerParser;
181 xe::TestCaseResult m_testCaseResult;
182 xe::TestResultParser m_testResultParser;
203 while (m_containerParser.getElement() != xe::CONTAINERELEMENT_INCOMPLETE) in parse()
207 case xe::CONTAINERELEMENT_END_OF_STRING: in parse()
211 case xe::CONTAINERELEMENT_BEGIN_SESSION: in parse()
215 case xe::CONTAINERELEMENT_END_SESSION: in parse()
219 case xe::CONTAINERELEMENT_SESSION_INFO: in parse()
223 case xe::CONTAINERELEMENT_BEGIN_TEST_CASE_RESULT: in parse()
228 m_testCaseResult = xe::TestCaseResult(); in parse()
[all …]
/third_party/libwebsockets/lib/misc/
Dieeehalfprecision.c90 uint32_t xs, xe, xm; in lws_singles2halfp() local
102 xe = x & 0x7F800000u; // Pick off exponent bits in lws_singles2halfp()
105 if (xe == 0) { // Denormal will underflow, return a signed zero in lws_singles2halfp()
110 if (xe == 0x7F800000u) { // Inf or NaN (all the exponent bits are set) in lws_singles2halfp()
125 hes = ((int)(xe >> 23)) - 127 + 15; in lws_singles2halfp()
167 uint32_t xs, xe, xm; in lws_halfp2singles() local
195 xe = (uint32_t)(xes << 23); // Exponent in lws_halfp2singles()
198 *xp = xs | xe | xm; in lws_halfp2singles()
223 xe = (uint32_t)(xes << 23); // Exponent in lws_halfp2singles()
227 *xp = xs | xe | xm; in lws_halfp2singles()
/third_party/vk-gl-cts/framework/xexml/
DxeDefs.hpp31 namespace xe namespace
49 #define XE_FAIL(MSG) throw xe::Error(MSG, "", __FILE__, __LINE__)
50 #define XE_CHECK(X) do { if ((!deGetFalse() && (X)) ? DE_FALSE : DE_TRUE) throw xe::Error(NULL, …
51 #define XE_CHECK_MSG(X, MSG) do { if ((!deGetFalse() && (X)) ? DE_FALSE : DE_TRUE) throw xe::Error(…
DxeXMLParser.hpp38 namespace xe namespace
77 class ParseError : public xe::ParseError
80 ParseError (const std::string& message) : xe::ParseError(message) {} in ParseError()
DxeDefs.cpp28 namespace xe namespace
/third_party/typescript/tests/baselines/reference/
DobjectLiteralEnumPropertyNames.types19 >{ [Strs.A]: 'xo', [Strs.B]: 'xe'} : { a: string; b: string; }
28 [Strs.B]: 'xe'
33 >'xe' : "xe"
37 >{ [Strs.A]: 'xo', [Strs.B]: 'xe'} : { a: string; b: string; }
46 [Strs.B]: 'xe'
51 >'xe' : "xe"
/third_party/vk-gl-cts/executor/
DxeTestLogWriter.hpp32 namespace xe namespace
43 void writeTestResult (const TestCaseResult& result, xe::xml::Writer& writer);
DxeTestLogParser.cpp31 namespace xe namespace
148 catch (const xe::ParseError&) in parse()
DxeCommLink.cpp26 namespace xe namespace
DxeTestCaseListParser.hpp32 namespace xe namespace
DxeLocalTcpIpLink.hpp31 namespace xe namespace
/third_party/vk-gl-cts/framework/common/
DtcuWaiverUtil.cpp185 xe::xml::Parser xmlParser; in readWaivedTestsFromXML()
200 xe::xml::Element currElement = xmlParser.getElement(); in readWaivedTestsFromXML()
204 if (currElement == xe::xml::ELEMENT_INCOMPLETE || in readWaivedTestsFromXML()
205 currElement == xe::xml::ELEMENT_END_OF_STRING) in readWaivedTestsFromXML()
211 case xe::xml::ELEMENT_START: in readWaivedTestsFromXML()
244 case xe::xml::ELEMENT_DATA: in readWaivedTestsFromXML()
263 case xe::xml::ELEMENT_END: in readWaivedTestsFromXML()
/third_party/boost/tools/build/src/tools/features/
Dinstruction-set-feature.jam28 conroe conroe-xe conroe-l allendale merom merom-xe kentsfield kentsfield-xe penryn wolfdale
/third_party/skia/third_party/externals/opengl-registry/extensions/SGIS/
DSGIS_point_line_texgen.txt81 V' is (xe/we, ye/we, ze/we)
86 xe, ye, ze, and we are the eye coordinates of the vertex.
139 V' is (xe/we, ye/we, ze/we)
144 xe, ye, ze, and we are the eye coordinates of the vertex.
/third_party/openGLES/extensions/SGIS/
DSGIS_point_line_texgen.txt81 V' is (xe/we, ye/we, ze/we)
86 xe, ye, ze, and we are the eye coordinates of the vertex.
139 V' is (xe/we, ye/we, ze/we)
144 xe, ye, ze, and we are the eye coordinates of the vertex.
/third_party/python/Lib/
D_pydecimal.py2110 xc, xe = x.int, x.exp
2113 xe += 1
2124 xe *= yc
2126 while xe % 10 == 0:
2127 xe //= 10
2131 exponent = xe * 10**ye
2184 xe = _decimal_lshift_exact(xe * yc, ye)
2185 if e is None or xe is None:
2211 xe = _decimal_lshift_exact(xe * yc, ye)
2212 if e is None or xe is None:
[all …]
/third_party/skia/infra/cmake/
Dbuild_skia.sh15 set -xe

1234567