Home
last modified time | relevance | path

Searched refs:Query (Results 1 – 25 of 375) sorted by relevance

12345678910>>...15

/external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/GlobalISel/
DLegalityPredicates.cpp20 [=](const LegalityQuery &Query) { return Query.Types[TypeIdx] == Type; }; in typeIs() argument
27 return [=](const LegalityQuery &Query) { in typeInSet() argument
28 return std::find(Types.begin(), Types.end(), Query.Types[TypeIdx]) != Types.end(); in typeInSet()
36 return [=](const LegalityQuery &Query) { in typePairInSet() argument
37 std::pair<LLT, LLT> Match = {Query.Types[TypeIdx0], Query.Types[TypeIdx1]}; in typePairInSet()
46 return [=](const LegalityQuery &Query) { in typePairAndMemSizeInSet() argument
47 TypePairAndMemSize Match = {Query.Types[TypeIdx0], Query.Types[TypeIdx1], in typePairAndMemSizeInSet()
48 Query.MMODescrs[MMOIdx].Size}; in typePairAndMemSizeInSet()
55 return [=](const LegalityQuery &Query) { in isScalar() argument
56 return Query.Types[TypeIdx].isScalar(); in isScalar()
[all …]
DLegalizeMutations.cpp20 [=](const LegalityQuery &Query) { return std::make_pair(TypeIdx, Ty); }; in changeTo() argument
25 return [=](const LegalityQuery &Query) { in changeTo() argument
26 return std::make_pair(TypeIdx, Query.Types[FromTypeIdx]); in changeTo()
32 return [=](const LegalityQuery &Query) { in widenScalarToNextPow2() argument
34 1 << Log2_32_Ceil(Query.Types[TypeIdx].getSizeInBits()); in widenScalarToNextPow2()
43 return [=](const LegalityQuery &Query) { in moreElementsToNextPow2() argument
44 const LLT &VecTy = Query.Types[TypeIdx]; in moreElementsToNextPow2()
/external/angle/src/libANGLE/
DQuery.cpp16 Query::Query(rx::GLImplFactory *factory, QueryType type, QueryID id) in Query() function in gl::Query
20 Query::~Query() in ~Query()
25 void Query::onDestroy(const Context *context) in onDestroy()
31 void Query::setLabel(const Context *context, const std::string &label) in setLabel()
36 const std::string &Query::getLabel() const in getLabel()
41 angle::Result Query::begin(const Context *context) in begin()
46 angle::Result Query::end(const Context *context) in end()
51 angle::Result Query::queryCounter(const Context *context) in queryCounter()
56 angle::Result Query::getResult(const Context *context, GLint *params) in getResult()
61 angle::Result Query::getResult(const Context *context, GLuint *params) in getResult()
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/AArch64/
DAArch64LegalizerInfo.cpp101 .unsupportedIf([=](const LegalityQuery &Query) { in AArch64LegalizerInfo() argument
102 return Query.Types[0].getSizeInBits() <= Query.Types[1].getSizeInBits(); in AArch64LegalizerInfo()
104 .legalIf([=](const LegalityQuery &Query) { in AArch64LegalizerInfo() argument
105 const LLT &Ty0 = Query.Types[0]; in AArch64LegalizerInfo()
106 const LLT &Ty1 = Query.Types[1]; in AArch64LegalizerInfo()
119 .unsupportedIf([=](const LegalityQuery &Query) { in AArch64LegalizerInfo() argument
120 return Query.Types[0].getSizeInBits() >= Query.Types[1].getSizeInBits(); in AArch64LegalizerInfo()
122 .legalIf([=](const LegalityQuery &Query) { in AArch64LegalizerInfo() argument
123 const LLT &Ty0 = Query.Types[0]; in AArch64LegalizerInfo()
124 const LLT &Ty1 = Query.Types[1]; in AArch64LegalizerInfo()
[all …]
/external/swiftshader/src/OpenGL/libGLESv2/
DQuery.cpp25 Query::Query(GLuint name, GLenum type) : NamedObject(name) in Query() function in es2::Query
33 Query::~Query() in ~Query()
38 void Query::begin() in begin()
42 sw::Query::Type type; in begin()
47 type = sw::Query::FRAGMENTS_PASSED; in begin()
50 type = sw::Query::TRANSFORM_FEEDBACK_PRIMITIVES_WRITTEN; in begin()
57 mQuery = new sw::Query(type); in begin()
83 void Query::end() in end()
111 GLuint Query::getResult() in getResult()
124 GLboolean Query::isResultAvailable() in isResultAvailable()
[all …]
DQuery.h28 class Query : public gl::NamedObject
31 Query(GLuint name, GLenum type);
32 virtual ~Query();
44 sw::Query* mQuery;
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/AMDGPU/
DAMDGPULegalizerInfo.cpp80 .legalIf([=](const LegalityQuery &Query) { in AMDGPULegalizerInfo() argument
81 return Query.Types[0].getSizeInBits() <= 512; in AMDGPULegalizerInfo()
124 .legalIf([=, &ST](const LegalityQuery &Query) { in AMDGPULegalizerInfo() argument
125 const LLT &Ty0 = Query.Types[0]; in AMDGPULegalizerInfo()
165 .legalIf([=](const LegalityQuery &Query) { in AMDGPULegalizerInfo() argument
166 const LLT &VecTy = Query.Types[1]; in AMDGPULegalizerInfo()
167 const LLT &IdxTy = Query.Types[2]; in AMDGPULegalizerInfo()
176 .legalIf([=](const LegalityQuery &Query) { in AMDGPULegalizerInfo() argument
177 const LLT &Ty0 = Query.Types[0]; in AMDGPULegalizerInfo()
178 const LLT &Ty1 = Query.Types[1]; in AMDGPULegalizerInfo()
[all …]
/external/perfetto/src/trace_processor/
Dtrace_database_integrationtest.cc58 TraceProcessor::Iterator Query(const std::string& query) { in Query() function in perfetto::trace_processor::__anonbfd140c20111::TraceProcessorIntegrationTest
70 auto it = Query( in TEST_F()
83 auto it = Query("select start_ts, end_ts from trace_bounds"); in TEST_F()
98 auto it = Query("select start_ts, end_ts from trace_bounds"); in TEST_F()
108 auto it = Query("select HASH()"); in TEST_F()
112 it = Query("select HASH('test')"); in TEST_F()
116 it = Query("select HASH('test', 1)"); in TEST_F()
127 auto it = Query("select DEMANGLE('_Znwm')"); in TEST_F()
131 it = Query("select DEMANGLE('_ZN3art6Thread14CreateCallbackEPv')"); in TEST_F()
136 it = Query("select DEMANGLE('test')"); in TEST_F()
[all …]
/external/swiftshader/src/Vulkan/
DVkQueryPool.cpp23 Query::Query() in Query() function in vk::Query
30 void Query::reset() in reset()
39 void Query::prepare(VkQueryType ty) in prepare()
46 void Query::start() in start()
52 void Query::finish() in finish()
62 Query::Data Query::getData() const in getData()
70 VkQueryType Query::getType() const in getType()
75 void Query::wait() in wait()
80 void Query::set(int64_t v) in set()
85 void Query::add(int64_t v) in add()
[all …]
DVkQueryPool.hpp29 class Query class
34 Query();
108 inline Query *getQuery(uint32_t query) const { return &(pool[query]); } in getQuery()
111 Query *pool;
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/ExecutionEngine/Orc/
DLegacy.h40 virtual SymbolNameSet lookup(std::shared_ptr<AsynchronousSymbolQuery> Query,
61 SymbolNameSet lookup(std::shared_ptr<AsynchronousSymbolQuery> Query, in lookup() argument
63 return Lookup(std::move(Query), std::move(Symbols)); in lookup()
137 lookupWithLegacyFn(ExecutionSession &ES, AsynchronousSymbolQuery &Query, in lookupWithLegacyFn() argument
145 Query.resolve(S, JITEvaluatedSymbol(*Addr, Sym.getFlags())); in lookupWithLegacyFn()
146 Query.notifySymbolReady(); in lookupWithLegacyFn()
149 ES.legacyFailQuery(Query, Addr.takeError()); in lookupWithLegacyFn()
153 ES.legacyFailQuery(Query, std::move(Err)); in lookupWithLegacyFn()
159 if (NewSymbolsResolved && Query.isFullyResolved()) in lookupWithLegacyFn()
160 Query.handleFullyResolved(); in lookupWithLegacyFn()
[all …]
/external/mesa3d/src/mesa/main/
Dcondrender.c46 assert(ctx->Query.CondRenderMode == GL_NONE); in begin_conditional_render()
99 ctx->Query.CondRenderQuery = q; in begin_conditional_render()
100 ctx->Query.CondRenderMode = mode; in begin_conditional_render()
127 if (!ctx->Extensions.NV_conditional_render || ctx->Query.CondRenderQuery) { in _mesa_BeginConditionalRender()
142 ctx->Driver.EndConditionalRender(ctx, ctx->Query.CondRenderQuery); in end_conditional_render()
144 ctx->Query.CondRenderQuery = NULL; in end_conditional_render()
145 ctx->Query.CondRenderMode = GL_NONE; in end_conditional_render()
162 if (!ctx->Extensions.NV_conditional_render || !ctx->Query.CondRenderQuery) { in _mesa_EndConditionalRender()
186 struct gl_query_object *q = ctx->Query.CondRenderQuery; in _mesa_check_conditional_render()
193 switch (ctx->Query.CondRenderMode) { in _mesa_check_conditional_render()
[all …]
Dqueryobj.c161 return &ctx->Query.pipeline_stats[which]; in get_pipe_stats_binding_point()
176 return &ctx->Query.CurrentOcclusionObject; in get_query_binding_point()
182 return &ctx->Query.CurrentOcclusionObject; in get_query_binding_point()
188 return &ctx->Query.CurrentOcclusionObject; in get_query_binding_point()
194 return &ctx->Query.CurrentTimerObject; in get_query_binding_point()
201 return &ctx->Query.PrimitivesGenerated[index]; in get_query_binding_point()
206 return &ctx->Query.PrimitivesWritten[index]; in get_query_binding_point()
211 return &ctx->Query.TransformFeedbackOverflow[index]; in get_query_binding_point()
216 return &ctx->Query.TransformFeedbackOverflowAny; in get_query_binding_point()
274 if (_mesa_HashFindFreeKeys(ctx->Query.QueryObjects, ids, n)) { in create_queries()
[all …]
/external/perfetto/src/trace_processor/sqlite/
Dspan_join_operator_table.h140 class Query {
160 Query(SpanJoinOperatorTable*, const TableDefinition*, sqlite3* db);
161 virtual ~Query();
163 Query(Query&&) noexcept = default;
164 Query& operator=(Query&&) = default;
230 Query(Query&) = delete;
231 Query& operator=(const Query&) = delete;
333 Query* FindEarliestFinishQuery();
335 Query t1_;
336 Query t2_;
[all …]
/external/ltp/testcases/network/stress/multicast/query-flood/
D00_Descriptions.txt3 group on a single socket, then receiving a large number of General Query
8 Address Specific Query
13 Address and Source Specific Query
18 Query
23 Multicast Address Specific Query
28 Multicast Address and Source Specific Query
32 group on a single socket, then receiving a large number of General Query
37 Address Specific Query
42 Address and Source Specific Query
47 Query
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/CodeGen/
DLiveIntervalUnion.h109 class Query {
132 Query() = default;
133 Query(const LiveRange &LR, const LiveIntervalUnion &LIU): in Query() function
135 Query(const Query &) = delete;
136 Query &operator=(const Query &) = delete;
/external/autotest/client/cros/cellular/
Dscpi.py60 def Query(self, command): member in Scpi
62 response = self.driver.Query(command)
83 error = self.Query('SYSTem:ERRor?')
110 self.Query('*OPC?') # Wait for operation complete
131 result = self.Query('%s?' % (command,))
144 self.Query('*OPC?')
Dbase_station_8960.py43 idn = self.c.Query('*IDN?')
57 call_state = self.c.Query('CALL:STATus?')
58 data_state = self.c.Query('CALL:STATus:DATa?')
70 result_text = self.c.Query('CALL:COUNT:DTMonitor:%s:DRATe?' %
84 status = self.c.Query('CALL:STATus:DATa?')
101 self.c.Query("CALL:HSDPa:SERVice:PSData:HSDSchannel:CONFig?")
104 self.c.Query("CALL:HSDPa:MS:REPorted:HSDSChannel:CATegory?")
106 self.c.Query("CALL:STATUS:MS:HSDSChannel:CATegory?")
107 self.c.Query("CALL:HSDPA:SERV:PSD:CQI?")
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Support/
DSpecialCaseList.cpp61 unsigned SpecialCaseList::Matcher::match(StringRef Query) const { in match()
62 auto It = Strings.find(Query); in match()
65 if (Trigrams.isDefinitelyOut(Query)) in match()
68 if (RegExKV.first->match(Query)) in match()
204 StringRef Query, StringRef Category) const { in inSection() argument
205 return inSectionBlame(Section, Prefix, Query, Category); in inSection()
209 StringRef Query, in inSectionBlame() argument
214 inSectionBlame(SectionIter.Entries, Prefix, Query, Category); in inSectionBlame()
222 StringRef Prefix, StringRef Query, in inSectionBlame() argument
229 return II->getValue().match(Query); in inSectionBlame()
/external/llvm/include/llvm/CodeGen/
DLiveIntervalUnion.h59 class Query; variable
111 class Query {
123 Query(): LiveUnion(), VirtReg(), Tag(0), UserTag(0) {} in Query() function
125 Query(LiveInterval *VReg, LiveIntervalUnion *LIU): in Query() function
182 Query(const Query&) = delete;
183 void operator=(const Query&) = delete;
/external/swiftshader/third_party/llvm-7.0/llvm/lib/ExecutionEngine/Orc/
DOrcMCJITReplacement.h169 SymbolNameSet lookup(std::shared_ptr<AsynchronousSymbolQuery> Query, in lookup() argument
177 Query->resolve(S, JITEvaluatedSymbol(*Addr, Sym.getFlags())); in lookup()
178 Query->notifySymbolReady(); in lookup()
181 M.ES.legacyFailQuery(*Query, Addr.takeError()); in lookup()
185 M.ES.legacyFailQuery(*Query, std::move(Err)); in lookup()
190 Query->resolve(S, JITEvaluatedSymbol(*Addr, Sym2.getFlags())); in lookup()
191 Query->notifySymbolReady(); in lookup()
194 M.ES.legacyFailQuery(*Query, Addr.takeError()); in lookup()
198 M.ES.legacyFailQuery(*Query, std::move(Err)); in lookup()
205 if (NewSymbolsResolved && Query->isFullyResolved()) in lookup()
[all …]
/external/autotest/frontend/client/src/autotest/common/table/
DDataSource.java55 public interface Query { interface
76 abstract class DefaultQuery implements Query {
101 public void onQueryReady(Query query); in onQueryReady()
110 public void onQueryReady(Query query) {} in onQueryReady()
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Support/
DSpecialCaseList.h89 bool inSection(StringRef Section, StringRef Prefix, StringRef Query,
100 unsigned inSectionBlame(StringRef Section, StringRef Prefix, StringRef Query,
123 unsigned match(StringRef Query) const;
149 StringRef Query, StringRef Category) const;
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/CodeGen/GlobalISel/
DLegalizerInfo.h181 return [=](const LegalityQuery &Query) { in all()
182 return P0(Query) && P1(Query); in all()
254 bool match(const LegalityQuery &Query) const { in match() argument
255 return Predicate(Query); in match()
261 std::pair<unsigned, LLT> determineMutation(const LegalityQuery &Query) const { in determineMutation() argument
263 return Mutation(Query); in determineMutation()
640 [=](const LegalityQuery &Query) { in maxScalarIf()
642 Predicate(Query); in maxScalarIf()
671 [=](const LegalityQuery &Query) { in clampMinNumElements()
672 LLT VecTy = Query.Types[TypeIdx]; in clampMinNumElements()
[all …]
/external/llvm/lib/Support/
DSpecialCaseList.cpp42 bool match(StringRef Query) const { in match()
43 return Strings.count(Query) || (RegEx && RegEx->match(Query)); in match()
157 bool SpecialCaseList::inSection(StringRef Section, StringRef Query, in inSection() argument
165 return II->getValue().match(Query); in inSection()

12345678910>>...15