Home
last modified time | relevance | path

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

12345678910>>...14

/external/deqp/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 …]
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 …]
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()
64 throw xe::Error("Invalid shader type"); in getShaderTypeSuffix()
68 static void writeShaderProgram (const CommandLine& cmdLine, const std::string& casePath, const xe::… in writeShaderProgram()
74 …const xe::ri::Shader& shader = dynamic_cast<const xe::ri::Shader&>(shaderProgram.shaders.getItem(… in writeShaderProgram()
[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 …]
/external/deqp/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 …]
/external/deqp/executor/
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(…
DxeTestLogWriter.hpp32 namespace xe namespace
43 void writeTestResult (const TestCaseResult& result, xe::xml::Writer& writer);
DxeXMLParser.hpp38 namespace xe namespace
77 class ParseError : public xe::ParseError
80 ParseError (const std::string& message) : xe::ParseError(message) {} in ParseError()
DxeTestLogParser.cpp31 namespace xe namespace
146 catch (const xe::ParseError&) in parse()
DxeCommLink.cpp26 namespace xe namespace
/external/u-boot/arch/arm/dts/
Darmada-7040-db-nand.dts121 0x1 0x1 0x1 0x1 0x1 0x1 0xe 0xe 0xe 0xe
122 0xe 0xe 0x0>;
Darmada-8040-mcbin.dts108 0 0 0 0 0 0 0xe 0xe 0xe 0xe
109 0xe 0xe 0 >;
Darmada-8040-db.dts115 0x1 0x1 0x1 0x1 0x1 0x1 0xe 0xe 0xe 0xe
116 0xe 0xe 0xe>;
/external/swiftshader/third_party/LLVM/test/TableGen/
DDefmInsideMultiClass.td25 defm SUB : basic_s<0xe>, basic_p<0xe>;
/external/swiftshader/third_party/llvm-7.0/llvm/test/TableGen/
DDefmInsideMultiClass.td28 defm SUB : basic_s<0xe>, basic_p<0xe>;
/external/llvm/test/TableGen/
DDefmInsideMultiClass.td28 defm SUB : basic_s<0xe>, basic_p<0xe>;
/external/epid-sdk/epid/common-testhelper/testdata/grp01/
Dsigrl.inc52 0x42, 0x8f, 0xe0, 0xe, 0xd1, 0x73, 0x27, 0xf5,
53 0x77, 0x16, 0x4, 0x40, 0x8a, 0x0, 0xe, 0x3a,
70 0x54, 0xa, 0xe, 0xb3, 0x35, 0xf9, 0xde, 0x24,
73 0xd6, 0x37, 0x85, 0xe, 0xbb, 0x48, 0x11, 0x38,
77 0x28, 0xde, 0x8, 0x11, 0xe, 0x61, 0x3b, 0xc0,
100 0x57, 0x4f, 0x9c, 0x30, 0xe, 0xb2, 0x27, 0xce,
117 0x99, 0x5d, 0xc0, 0xe, 0xcf, 0x2c, 0x2e, 0x27,
122 0xf1, 0x46, 0xe, 0xb4, 0x4c, 0xa3, 0xe0, 0x9b,
139 0xd6, 0x46, 0x87, 0xd8, 0x91, 0x70, 0xe, 0x73,
170 0xe, 0xc8, 0x99, 0xc6, 0x8f, 0xfa, 0x7b, 0xcf,
[all …]
/external/python/cpython2/Lib/
Ddecimal.py1994 xc, xe = x.int, x.exp
1997 xe += 1
2008 xe *= yc
2010 while xe % 10 == 0:
2011 xe //= 10
2015 exponent = xe * 10**ye
2068 xe = _decimal_lshift_exact(xe * yc, ye)
2069 if e is None or xe is None:
2095 xe = _decimal_lshift_exact(xe * yc, ye)
2096 if e is None or xe is None:
[all …]
/external/python/cpython3/Lib/
D_pydecimal.py2106 xc, xe = x.int, x.exp
2109 xe += 1
2120 xe *= yc
2122 while xe % 10 == 0:
2123 xe //= 10
2127 exponent = xe * 10**ye
2180 xe = _decimal_lshift_exact(xe * yc, ye)
2181 if e is None or xe is None:
2207 xe = _decimal_lshift_exact(xe * yc, ye)
2208 if e is None or xe is None:
[all …]
/external/epid-sdk/epid/common-testhelper/testdata/grp01/member0/
Dsig_test0_sha256_sigrl.inc82 0xf9, 0x9a, 0x4d, 0x38, 0xe, 0x7, 0x7d,
98 0x4f, 0x2c, 0xe, 0x70, 0xd9, 0x9, 0x6c,
130 0x73, 0xdf, 0x25, 0xe, 0x74, 0xd1, 0x5d,
202 0x25, 0xc, 0xb3, 0xbd, 0xe, 0x61, 0xf4,
239 0xac, 0xbc, 0xc5, 0x23, 0x36, 0xfd, 0xe,
267 0x8d, 0xc3, 0x5c, 0x17, 0x3, 0x3c, 0xe,
278 0xc5, 0xce, 0xd0, 0xe, 0x4d, 0xe9, 0x70,
307 0x20, 0x21, 0xef, 0xe, 0xb, 0x51, 0xee,
311 0xc9, 0x7e, 0xb6, 0xe, 0x4b, 0xc6, 0x45,
327 0xba, 0x92, 0xc4, 0x2e, 0x9a, 0xe, 0x15,
[all …]
/external/cldr/tools/cldr-unittest/src/org/unicode/cldr/unittest/data/transformtest/
Dnv-fonipa-t-nv.txt137 ádaantsíkees ɑ́tɑːnt͡sʰɪ́k͡xeːs
160 ahaanitsáhakeesgo ɑhɑːnɪt͡sʰɑ́hɑk͡xeːsko
161 ahantsiikeesda ɑhɑnt͡sʰɪːk͡xeːstɑ
168 aheeʼiikeedígíí ɑheːʔɪːk͡xeːtɪ́kɪ́ː
357 biłkeehojitʼį́inígíí pɪɬk͡xeːhot͡ʃɪtʼɪ̃́ɪnɪ́kɪ́ː
484 hanitsáhákees hɑnɪt͡sʰɑ́hɑ́k͡xeːs
485 hánítshakees hɑ́nɪ́t͡sʰhɑk͡xeːs
628 naalteehʼé nɑːlt͡xeːhʔé
689 nitsahakeesgo nɪt͡sʰɑhɑk͡xeːsko
690 nitsáʼhákeesgo nɪt͡sʰɑ́ʔhɑ́k͡xeːsko
[all …]

12345678910>>...14