Home
last modified time | relevance | path

Searched refs:xe (Results 1 - 25 of 291) sorted by relevance

12345678910>>...12

/third_party/vk-gl-cts/executor/tools/
H A 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 in getShaderTypeSuffix()
148 setSessionInfo(const xe::SessionInfo&) setSessionInfo() argument
158 testCaseResultUpdated(const xe::TestCaseResultPtr&) testCaseResultUpdated() argument
[all...]
H A 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() argument
154 xe::TestCaseResultPtr startTestCaseResult (const char* casePath) in startTestCaseResult()
156 return xe::TestCaseResultPtr(new xe::TestCaseResultData(casePath)); in startTestCaseResult()
159 void testCaseResultUpdated (const xe argument
238 setSessionInfo(const xe::SessionInfo&) setSessionInfo() argument
247 testCaseResultUpdated(const xe::TestCaseResultPtr&) testCaseResultUpdated() argument
[all...]
H A 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(caseListDir) + "'"); 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 in addMatchingCases()
375 testCaseResultUpdated(const xe::TestCaseResultPtr&) testCaseResultUpdated() argument
379 testCaseResultComplete(const xe::TestCaseResultPtr&) testCaseResultComplete() argument
[all...]
H A 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(sampleNdx)); in writeSampleList()
67 const xe::ri::SampleValue& value = static_cast<const xe::ri::SampleValue&>(sample.values.getItem(valNdx)); 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 in extractSampleLists()
107 setSessionInfo(const xe::SessionInfo&) setSessionInfo() argument
117 testCaseResultUpdated(const xe::TestCaseResultPtr&) testCaseResultUpdated() argument
[all...]
H A 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() argument
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() argument
104 void testCaseResultComplete (const xe
[all...]
H A 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 in findValueByTag()
134 setSessionInfo(const xe::SessionInfo&) setSessionInfo() argument
144 testCaseResultUpdated(const xe::TestCaseResultPtr&) testCaseResultUpdated() argument
[all...]
H A DxeTestLogCompare.cpp121 vector<xe::TestCaseResultHeader> resultHeaders;
125 class ShortResultHandler : public xe::TestLogHandler
133 void setSessionInfo (const xe::SessionInfo&) in setSessionInfo() argument
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() argument
148 void testCaseResultComplete (const xe::TestCaseResultPtr& caseData) in testCaseResultComplete()
150 xe::TestCaseResultHeader header; in testCaseResultComplete()
154 header.caseType = xe in testCaseResultComplete()
[all...]
H A 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() argument
113 void testCaseResultComplete (const xe::TestCaseResultPtr&) in testCaseResultComplete() argument
119 xe::BatchResult* const m_batchResult;
123 static void readLogFile (xe
[all...]
/third_party/vk-gl-cts/framework/platform/android/
H A 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 in parse()
[all...]
/third_party/FreeBSD/contrib/gdtoa/
H A 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) {
H A 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) {
H A 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) {
H A 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)
H A 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
151 ULong *x, *xe; global() local
[all...]
/third_party/libwebsockets/lib/misc/
H A 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 | x in lws_halfp2singles()
[all...]
/third_party/vk-gl-cts/framework/xexml/
H A DxeDefs.hpp31 namespace xe namespace
47 } // xe
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, #X, __FILE__, __LINE__); } while(deGetFalse())
51 #define XE_CHECK_MSG(X, MSG) do { if ((!deGetFalse() && (X)) ? DE_FALSE : DE_TRUE) throw xe::Error(MSG, #X, __FILE__, __LINE__); } while(deGetFalse())
/third_party/ffmpeg/libavcodec/
H A Dh263data.c103 { 0x21, 11 }, { 0x50, 12 }, { 0xe, 4 }, { 0x1d, 8 },
104 { 0xe, 10 }, { 0x51, 12 }, { 0xd, 5 }, { 0x23, 9 },
114 { 0x5, 11 }, { 0xf, 6 }, { 0x4, 11 }, { 0xe, 6 },
168 { 0x2, 2 }, { 0x6, 3 }, { 0xe, 4 }, { 0xc, 5 },
176 { 0xb, 5 }, { 0x15, 7 }, { 0xe, 10 }, { 0x9, 10 },
186 { 0xe, 6 }, { 0x14, 9 }, { 0x24, 11 }, { 0xd, 6 },
H A Dmpeg12data.c53 0x4, 0x0, 0x1, 0x5, 0x6, 0xe, 0x1e, 0x3e, 0x7e, 0xfe, 0x1fe, 0x1ff,
60 0x0, 0x1, 0x2, 0x6, 0xe, 0x1e, 0x3e, 0x7e, 0xfe, 0x1fe, 0x3fe, 0x3ff,
89 { 0x20, 8 }, { 0x18, 16 }, { 0xe, 10 }, { 0x17, 16 },
258 {0xe, 6},
259 {0xe, 8},
266 {0xe, 5},
303 { 0xe, 10 },
H A Dvp4data.h93 { 0xd, 4 }, { 0xe, 5 }, { 0xb, 4 }, { 0x1, 3 },
94 { 0xf, 5 }, { 0x8, 4 }, { 0x6, 4 }, { 0xe, 4 },
99 { 0x8, 4 }, { 0xd, 5 }, { 0x0, 3 }, { 0xe, 4 },
/third_party/musl/porting/uniproton/kernel/src/multibyte/
H A Dinternal.c20 C(0x8),C(0x9),C(0xa),C(0xb),C(0xc),C(0xd),C(0xe),C(0xf),
22 D(0x8),D(0x9),D(0xa),D(0xb),D(0xc),D(0xd),D(0xe),D(0xf),
24 E(0x8),E(0x9),E(0xa),E(0xb),E(0xc),E(0xd),E(0xe),E(0xf),
/third_party/musl/porting/liteos_m/kernel/src/multibyte/
H A Dinternal.c20 C(0x8),C(0x9),C(0xa),C(0xb),C(0xc),C(0xd),C(0xe),C(0xf),
22 D(0x8),D(0x9),D(0xa),D(0xb),D(0xc),D(0xd),D(0xe),D(0xf),
24 E(0x8),E(0x9),E(0xa),E(0xb),E(0xc),E(0xd),E(0xe),E(0xf),
/third_party/musl/porting/liteos_a/kernel/src/multibyte/
H A Dinternal.c20 C(0x8),C(0x9),C(0xa),C(0xb),C(0xc),C(0xd),C(0xe),C(0xf),
22 D(0x8),D(0x9),D(0xa),D(0xb),D(0xc),D(0xd),D(0xe),D(0xf),
24 E(0x8),E(0x9),E(0xa),E(0xb),E(0xc),E(0xd),E(0xe),E(0xf),
/third_party/musl/src/multibyte/
H A Dinternal.c20 C(0x8),C(0x9),C(0xa),C(0xb),C(0xc),C(0xd),C(0xe),C(0xf),
22 D(0x8),D(0x9),D(0xa),D(0xb),D(0xc),D(0xd),D(0xe),D(0xf),
24 E(0x8),E(0x9),E(0xa),E(0xb),E(0xc),E(0xd),E(0xe),E(0xf),
/third_party/vk-gl-cts/executor/
H A DxeTestLogWriter.hpp32 namespace xe namespace
43 void writeTestResult (const TestCaseResult& result, xe::xml::Writer& writer);
47 } // xe
/third_party/vk-gl-cts/framework/common/
H A DtcuWaiverUtil.cpp187 xe::xml::Parser xmlParser; in readWaivedTestsFromXML()
202 xe::xml::Element currElement = xmlParser.getElement(); in readWaivedTestsFromXML()
206 if (currElement == xe::xml::ELEMENT_INCOMPLETE || in readWaivedTestsFromXML()
207 currElement == xe::xml::ELEMENT_END_OF_STRING) in readWaivedTestsFromXML()
213 case xe::xml::ELEMENT_START: in readWaivedTestsFromXML()
246 case xe::xml::ELEMENT_DATA: in readWaivedTestsFromXML()
265 case xe::xml::ELEMENT_END: in readWaivedTestsFromXML()

Completed in 10 milliseconds

12345678910>>...12