Home
last modified time | relevance | path

Searched refs:xe (Results 1 – 25 of 169) 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/FreeBSD/contrib/gdtoa/
Dgmisc.c41 ULong *x, *x1, *xe, y; local
47 xe = x + b->wds;
52 while(x < xe) {
60 while(x < xe)
74 ULong L, *x, *xe; local
78 xe = x + b->wds;
79 for(n = 0; x < xe && !*x; x++)
81 if (x < xe) {
Dsum.c42 ULong carry, *xc, *xa, *xb, *xe, y; local
56 xe = xc + b->wds;
65 while(xc < xe);
66 xe += a->wds - b->wds;
67 while(xc < xe) {
80 while(xc < xe);
81 xe += a->wds - b->wds;
82 while(xc < xe) {
Dhexnan.c60 ULong c, h, *x, *x1, *xe; local
71 x1 = xe = x;
132 while(x <= xe);
134 while(x1 <= xe);
139 *xe &= ((ULong)0xffffffff) >> (ULbits - i);
141 for(x1 = xe;; --x1) {
Dsmisc.c140 ULong *ce, *x, *xe; local
148 xe = x + b->wds;
149 while(x < xe)
154 for(xe = x + (nw - nw1); x < xe; x += 2)
Dstrtodg.c54 ULong *x, *xe; local
61 xe = x + b->wds;
69 } while(x < xe);
77 } while(x < xe);
99 ULong *x, *xe; local
105 xe = x + b->wds;
114 while(x < xe);
120 } while(borrow && x < xe);
131 ULong *x, *xe; local
134 xe = x + (n >> kshift);
[all …]
/third_party/libjpeg-turbo/simd/mips64/
Djdmrgext-mmi.c43 #define mmA xe
57 #define mmC xe
71 #define mmE xe
85 #define mmG xe
101 __m64 ble, blo, bl, bhe, bho, bh, be, bo, xe = 0.0, xo = 0.0; in jsimd_h2v1_merged_upsample_mmi() local
364 xe = _mm_cmpeq_pi8(xe, xe); in jsimd_h2v1_merged_upsample_mmi()
367 xe = _mm_xor_si64(xe, xe); in jsimd_h2v1_merged_upsample_mmi()
561 xe = _mm_cmpeq_pi8(xe, xe); in jsimd_h2v1_merged_upsample_mmi()
563 xe = _mm_xor_si64(xe, xe); in jsimd_h2v1_merged_upsample_mmi()
Djdcolext-mmi.c45 #define mmA xe
59 #define mmC xe
73 #define mmE xe
87 #define mmG xe
99 __m64 re, ro, gle, ghe, ge, glo, gho, go, be, bo, xe = 0.0, xo = 0.0; in jsimd_ycc_rgb_convert_mmi() local
317 xe = _mm_cmpeq_pi8(xe, xe); in jsimd_ycc_rgb_convert_mmi()
320 xe = _mm_xor_si64(xe, xe); in jsimd_ycc_rgb_convert_mmi()
Djcgryext-mmi.c43 #define mmA xe
57 #define mmC xe
71 #define mmE xe
85 #define mmG xe
96 __m64 re, ro, ge, go, be, bo, xe; in jsimd_rgb_gray_convert_mmi() local
Djccolext-mmi.c46 #define mmA xe
60 #define mmC xe
74 #define mmE xe
88 #define mmG xe
99 __m64 re, ro, ge, go, be, bo, xe; in jsimd_rgb_ycc_convert_mmi() local
/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/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()
/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/vk-gl-cts/executor/
DxeTestLogWriter.hpp32 namespace xe namespace
43 void writeTestResult (const TestCaseResult& result, xe::xml::Writer& writer);
/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.

1234567