/external/mesa3d/src/gallium/drivers/nouveau/nvc0/ |
D | nvc0_query_hw_metric.c | 118 uint32_t queries[8]; member 129 .queries[0] = _SM(ACTIVE_WARPS), 130 .queries[1] = _SM(ACTIVE_CYCLES), 138 .queries[0] = _SM(BRANCH), 139 .queries[1] = _SM(DIVERGENT_BRANCH), 147 .queries[0] = _SM(INST_EXECUTED), 148 .queries[1] = _SM(WARPS_LAUNCHED), 156 .queries[0] = _SM(INST_ISSUED), 157 .queries[1] = _SM(INST_EXECUTED), 165 .queries[0] = _SM(INST_ISSUED), [all …]
|
/external/mesa3d/src/gallium/drivers/nouveau/nv50/ |
D | nv50_query_hw_metric.c | 34 uint32_t queries[4]; member 45 .queries[0] = _SM(BRANCH), 46 .queries[1] = _SM(DIVERGENT_BRANCH), 74 if (hmq->queries[i]->funcs->destroy_query) in nv50_hw_metric_destroy_query() 75 hmq->queries[i]->funcs->destroy_query(nv50, hmq->queries[i]); in nv50_hw_metric_destroy_query() 87 ret = hmq->queries[i]->funcs->begin_query(nv50, hmq->queries[i]); in nv50_hw_metric_begin_query() 101 hmq->queries[i]->funcs->end_query(nv50, hmq->queries[i]); in nv50_hw_metric_end_query() 133 ret = hmq->queries[i]->funcs->get_query_result(nv50, hmq->queries[i], in nv50_hw_metric_get_query_result() 173 hmq->queries[i] = nv50_hw_sm_create_query(nv50, cfg->queries[i]); in nv50_hw_metric_create_query() 174 if (!hmq->queries[i]) { in nv50_hw_metric_create_query()
|
/external/bcc/tools/ |
D | dbslower_example.txt | 4 dbslower traces queries served by a MySQL or PostgreSQL server, and prints 9 Tracing database queries for pids 25776 slower than 1 ms... 15 This traced two queries slower than 1ms, one of which is very slow: over 2 19 Tracing database queries for pids 25776 slower than 1000 ms... 34 Tracing database queries for pids 25776 slower than 1 ms... 42 Specifying 0 as the threshold will print all the queries: 45 Tracing database queries for pids 25776 slower than 0 ms... 65 before the actual queries start coming in. 82 trace queries slower than this threshold (ms) 85 dbslower postgres # trace PostgreSQL queries slower than 1ms [all …]
|
D | dbstat_example.txt | 4 dbstat traces queries performed by a MySQL or PostgreSQL database process, and 8 Tracing database queries for pids 25776 slower than 0 ms... 23 It's immediately evident that the vast majority of queries finish very quickly, 24 in under 1ms, but there are some super-slow queries occasionally, in the 1-2 27 We can filter out the shorter queries with the -m switch: 30 Tracing database queries for pids 25776 slower than 1000 ms... 50 Tracing database queries for pids 25776 slower than 0 ms... 110 trace queries slower than this threshold (ms) 119 dbstat mysql -m 5 # trace only queries slower than 5ms 120 dbstat mysql -p 408 # trace queries in a specific process
|
D | mysqld_qslower_example.txt | 4 mysqld_qslower traces queries served by a MySQL server, and prints those that 9 Tracing MySQL server queries for PID 14371 slower than 1 ms... 17 This traced 5 queries, 4 of which took about 130 milliseconds. 25 Tracing MySQL server queries for PID 14371 slower than 0.1 ms... 31 It worked, but I'm not catching any faster queries in this example. Notice I 36 A 0 ms threshold can be specified to trace all queries: 39 Tracing MySQL server queries for PID 14371 slower than 0 ms... 51 database. I also added some "select 1;" queries, which do no work and return
|
/external/selinux/prebuilts/bin/ |
D | seinfo.py | 45 queries = parser.add_argument_group("Component Queries") variable 46 queries.add_argument("-a", "--attribute", help="Print type attributes.", dest="typeattrquery", 48 queries.add_argument("-b", "--bool", help="Print Booleans.", dest="boolquery", 50 queries.add_argument("-c", "--class", help="Print object classes.", dest="classquery", 52 queries.add_argument("-r", "--role", help="Print roles.", dest="rolequery", 54 queries.add_argument("-t", "--type", help="Print types.", dest="typequery", 56 queries.add_argument("-u", "--user", help="Print users.", dest="userquery", 58 queries.add_argument("--category", help="Print MLS categories.", dest="mlscatsquery", 60 queries.add_argument("--common", help="Print common permission set.", dest="commonquery", 62 queries.add_argument("--constrain", help="Print constraints.", dest="constraintquery", [all …]
|
/external/autotest/frontend/client/src/autotest/tko/ |
D | FilterStringViewer.java | 39 private TextArea queries = new TextArea(); field in FilterStringViewer 52 queries.setSize("35em", "10em"); in FilterStringViewer() 53 queries.setReadOnly(true); in FilterStringViewer() 54 queries.addChangeHandler(new ChangeHandler() { in FilterStringViewer() 65 queriesPanel.add(queries); in FilterStringViewer() 82 queries.setText(text); in setText() 86 return queries.getText(); in getText() 99 args.put(prefix + "_viewerText", queries.getText()); in addToHistory() 122 queries.setText(args.get(prefix + "_viewerText")); in handleHistoryArguments() 144 queries.setReadOnly(true); in changeEditable() [all …]
|
D | SavedQueriesControl.java | 188 JSONArray queries = result.isArray(); in onHistoryChanged() 189 if (queries.size() == 0) { in onHistoryChanged() 194 assert queries.size() == 1; in onHistoryChanged() 195 JSONObject query = queries.get(0).isObject(); in onHistoryChanged()
|
/external/guava/guava-tests/benchmark/com/google/common/collect/ |
D | SetContainsBenchmark.java | 54 private Element[] queries; field in SetContainsBenchmark 63 this.queries = sampleData.getQueries(); in setUp() 70 Element[] queries = this.queries; in contains() local 72 int mask = queries.length - 1; in contains() 76 dummy ^= set.contains(queries[i & mask]); in contains()
|
D | HashMultisetAddPresentBenchmark.java | 35 int[] queries = new int[ARRAY_SIZE]; field in HashMultisetAddPresentBenchmark 44 queries[i] = random.nextInt(); in setUp() 45 multiset.add(queries[i]); in setUp() 53 tmp += multisets.get(j).add(queries[j], 4); in add()
|
D | MapBenchmark.java | 173 private Element[] queries; field in MapBenchmark 191 this.queries = sampleData.getQueries(); in setUp() 198 Element[] queries = this.queries; in get() local 202 int mask = queries.length - 1; in get() 206 dummy ^= map.get(queries[i & mask]) != null; in get()
|
/external/autotest/client/cros/netprotos/ |
D | cros_p2p.py | 110 queries = [] 118 queries.append((p2p_peer, dpkt.dns.DNS_ANY)) 125 queries.append((srvname, dpkt.dns.DNS_ANY)) 126 if queries: 127 self._zeroconf.send_request(queries) 138 queries = [] 142 queries.append((ptrname, dpkt.dns.DNS_ANY)) 143 if queries: 144 self._zeroconf.send_request(queries)
|
/external/perfetto/ui/src/query/ |
D | index.ts | 147 queries: Map<number, QueryState>; property in QueryController 153 this.queries = new Map(); 194 this.queries.set(id, { 226 const oldQueryState = this.queries.get(input.id); 229 this.queries.set(input.id, { 239 const oldQueryState = this.queries.get(input.id); 242 this.queries.set(input.id, { 264 const queries = [...controller.queries.values()].sort((a, b) => b.id - a.id); constant 289 queries.map(
|
/external/caliper/examples/src/main/java/examples/ |
D | ContainsBenchmark.java | 39 private final List<Object> queries = new ArrayList<Object>(); field in ContainsBenchmark 45 queries.add(null); in setUp() 48 queries.add(new Object()); in setUp() 50 Collections.shuffle(queries, new Random(0)); in setUp() 55 for (Object query : queries) { in contains()
|
/external/deqp/external/openglcts/docs/specs/ |
D | CTS_EXT_texture_filter_anisotropic.txt | 36 * Verify if TexParameter*, GetTexParameter* queries works correctly for 37 TEXTURE_MAX_ANISOTROPY_EXT token and Get* queries for 47 * Test TexParameter{i f}{v}, GetTexParameter{i f} queries for <pname>: 54 * Test GetBooleanv, GetDoublev, GetFloatv and GetIntegerv queries for <pname>"
|
/external/deqp/doc/testspecs/GL3/ |
D | stress.conditional_render.txt | 25 + Multiple concurrent queries/renders 37 All tests are based on using occlusion queries with known results and rendering 41 Rendering is ordered so that all occlusion queries are started before any 44 Call count test use many occlusion queries and simple occluder geometry. Every
|
D | functional.conditional_render.txt | 45 + Dependent queries 85 occlusion queries. These tests thus only test for false positive occlusion 88 Dependent queries render a number of primitives where each conditionally 93 occlusion queries.
|
/external/mesa3d/docs/specs/ |
D | MESA_query_renderer.spec | 331 12) Should capability queries similar to those in 335 queries, it seems unlikely that applications would ever use this 339 GL_NVX_gpu_memory_info) allow easy queries after context creation. With 343 RESOLVED. Add versions of the queries that implicitly take the 346 14) Why not make the queries from issue #13 GL functions (instead of GLX)? 348 RESOLVED. It is fairly compelling for the post-creation queries to 354 15) Should the string queries be required to return the same values as 371 GLX_RENDERER_DEVICE_ID_MESA integer queries may return 0xFFFFFFFF if a 392 format queries. 405 the PCI queries on systems that don't have PCI.
|
/external/ltp/testcases/network/stress/dns/ |
D | 00_Descriptions.txt | 3 many name lookup queries 7 many reverse lookup queries
|
/external/guava/guava-tests/test/com/google/common/collect/ |
D | CollectionBenchmarkSampleData.java | 39 private final Element[] queries; field in CollectionBenchmarkSampleData 56 this.queries = createQueries(valuesInSet, 1024); in CollectionBenchmarkSampleData() 64 return queries; in getQueries()
|
/external/python/cpython3/Lib/sqlite3/test/ |
D | hooks.py | 258 queries = ["create table foo(x)", 265 cur.execute(queries[0]) 267 cur.execute(queries[1]) 268 self.assertEqual(traced_statements, queries)
|
/external/deqp/doc/testspecs/GLES31/ |
D | functional.program_interface_query.txt | 25 + Basic queries for every property of every program interface 30 + Exact layout validation for data layout related queries (offset, 32 + Consistency validation for location queries (as in no two different 37 buffer_limited_query.* cases test that queries function properly when
|
/external/tensorflow/tensorflow/contrib/image/python/ops/ |
D | dense_image_warp.py | 99 queries = unstacked_query_points[dim] 108 math_ops.maximum(min_floor, math_ops.floor(queries)), max_floor) 116 alpha = math_ops.cast(queries - floor, grid_type)
|
/external/llvm/docs/ |
D | AliasAnalysis.rst | 52 All ``AliasAnalysis`` interfaces require that in queries involving multiple 61 can modify or read a memory object, etc. For all of these queries, memory 269 information (returning "May" Alias and "Mod/Ref" for alias and mod/ref queries 298 In addition to analysis queries, you must make sure to unconditionally pass LLVM 365 alias analysis is to make sure that alias analysis **queries** are serviced 367 method) is only performed once, but many (perhaps duplicate) queries may be 394 route alias analysis queries directly to ``BasicAliasAnalysis`` instead. 411 ``AliasAnalysisCounter`` utility, collecting stats on all alias queries in a 417 non-deterministic number of alias queries. This can cause stats collected by 420 execution after a predetermined number of queries can be unreliable. [all …]
|
/external/perfetto/src/trace_processor/metrics/ |
D | metrics.cc | 69 auto queries = base::SplitString(sql_metrics::kAndroidMem, ";\n\n"); in ComputeMetrics() local 70 for (const auto& query : queries) { in ComputeMetrics()
|