Home
last modified time | relevance | path

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

12345678910

/external/valgrind/helgrind/
Dhg_errors.c370 static void init_XError ( XError* xe ) { in init_XError() argument
371 VG_(memset)(xe, 0, sizeof(*xe) ); in init_XError()
372 xe->tag = XE_Race-1; /* bogus */ in init_XError()
394 XError* xe = (XError*)VG_(get_error_extra)(err); in HG_() local
395 tl_assert(xe); in HG_()
400 if (xe->tag == XE_Race) { in HG_()
406 tl_assert(xe->XE.Race.thr); in HG_()
407 xe->XE.Race.locksHeldW in HG_()
410 xe->XE.Race.thr->locksetW, in HG_()
424 HG_(describe_addr) (xe->XE.Race.data_addr, &xe->XE.Race.data_addrinfo); in HG_()
[all …]
/external/valgrind/exp-sgcheck/
Dpc_common.c161 XError xe; in sg_record_error_SorG() local
162 VG_(memset)(&xe, 0, sizeof(xe)); in sg_record_error_SorG()
163 xe.tag = XE_SorG; in sg_record_error_SorG()
164 xe.XE.SorG.addr = addr; in sg_record_error_SorG()
165 xe.XE.SorG.sszB = sszB; in sg_record_error_SorG()
166 VG_(strncpy)( &xe.XE.SorG.expect[0], in sg_record_error_SorG()
167 expect, sizeof(xe.XE.SorG.expect) ); in sg_record_error_SorG()
168 VG_(strncpy)( &xe.XE.SorG.actual[0], in sg_record_error_SorG()
169 actual, sizeof(xe.XE.SorG.actual) ); in sg_record_error_SorG()
170 VG_(strncpy)( &xe.XE.SorG.delta[0], in sg_record_error_SorG()
[all …]
/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/valgrind/coregrind/
Dm_xtree.c311 xec xe; in find_or_insert() local
313 xe.ec = ec; in find_or_insert()
315 xe.top = 0; in find_or_insert()
316 xe.n_ips_sel = (UShort)VG_(get_ExeContext_n_ips)(xe.ec); in find_or_insert()
319 UInt n_ips_sel = VG_(get_ExeContext_n_ips)(xe.ec); in find_or_insert()
320 xt->filter_IPs_fn(VG_(get_ExeContext_StackTrace)(xe.ec), n_ips_sel, in find_or_insert()
322 xe.top = (UShort)top; in find_or_insert()
323 xe.n_ips_sel = (UShort)n_ips_sel; in find_or_insert()
326 VG_(addToXA)(shared->xec, &xe); in find_or_insert()
365 xec* xe = (xec*)VG_(indexXA)(xt->shared->xec, xecu); in VG_() local
[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
DxeTestCaseListParser.hpp32 namespace xe namespace
DxeDefs.cpp28 namespace xe namespace
/external/syslinux/com32/lib/syslinux/
Dmovebits.c227 addr_t ps, pe, xs, xe, delta; in shuffle_dealias() local
251 xe = mx->src + mx->len - 1; in shuffle_dealias()
253 dprintf("?: %#x..%#x (inside %#x..%#x)\n", ps, pe, xs, xe); in shuffle_dealias()
255 if (pe <= xs || ps >= xe) in shuffle_dealias()
261 if (pe > xe) { in shuffle_dealias()
262 delta = pe - xe; in shuffle_dealias()
266 pe = xe; in shuffle_dealias()
283 assert(ps >= xs && pe <= xe); in shuffle_dealias()
285 dprintf("Overlap: %#x..%#x (inside %#x..%#x)\n", ps, pe, xs, xe); in shuffle_dealias()
/external/swiftshader/third_party/LLVM/test/TableGen/
DDefmInsideMultiClass.td25 defm SUB : basic_s<0xe>, basic_p<0xe>;
/external/llvm/test/TableGen/
DDefmInsideMultiClass.td28 defm SUB : basic_s<0xe>, basic_p<0xe>;
/external/python/cpython3/Lib/
D_pydecimal.py2147 xc, xe = x.int, x.exp
2150 xe += 1
2161 xe *= yc
2163 while xe % 10 == 0:
2164 xe //= 10
2168 exponent = xe * 10**ye
2221 xe = _decimal_lshift_exact(xe * yc, ye)
2222 if e is None or xe is None:
2248 xe = _decimal_lshift_exact(xe * yc, ye)
2249 if e is None or xe is None:
[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/kernel-headers/original/uapi/linux/
Dtiocl.h17 unsigned short xe; /* X end */ member

12345678910