| /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/angle/src/libANGLE/renderer/vulkan/doc/ |
| D | Queries.md | 1 # Queries chapter 3 OpenGL queries generally have a straightforward mapping to Vulkan queries, with the exception of 4 `GL_PRIMITIVES_GENERATED`. Some Vulkan queries are active only inside a render pass, while others 7 ## Outside Render Pass Queries 9 The following queries are recorded outside a render pass. If a render pass is active when 10 `begin()` or `end()` is called for these queries, it will be broken. 15 ## Inside Render Pass Queries 17 The rest of the queries are active only inside render passes. The context (`ContextVk`) keeps track 18 of currently active "render pass queries" and automatically pauses and resumes them as render passes 28 active queries. [all …]
|
| /external/google-cloud-java/java-dataproc/proto-google-cloud-dataproc-v1/src/main/java/com/google/cloud/dataproc/v1/ |
| D | QueryListOrBuilder.java | 30 * Required. The queries to execute. You do not need to end a query expression 31 * with a semicolon. Multiple queries can be specified in one 36 * "queries": [ 45 * <code>repeated string queries = 1 [(.google.api.field_behavior) = REQUIRED];</code> 47 * @return A list containing the queries. 54 * Required. The queries to execute. You do not need to end a query expression 55 * with a semicolon. Multiple queries can be specified in one 60 * "queries": [ 69 * <code>repeated string queries = 1 [(.google.api.field_behavior) = REQUIRED];</code> 71 * @return The count of queries. [all …]
|
| D | QueryList.java | 25 * A list of queries to run on a cluster. 78 * Required. The queries to execute. You do not need to end a query expression 79 * with a semicolon. Multiple queries can be specified in one 84 * "queries": [ 93 * <code>repeated string queries = 1 [(.google.api.field_behavior) = REQUIRED];</code> 95 * @return A list containing the queries. 104 * Required. The queries to execute. You do not need to end a query expression 105 * with a semicolon. Multiple queries can be specified in one 110 * "queries": [ 119 * <code>repeated string queries = 1 [(.google.api.field_behavior) = REQUIRED];</code> [all …]
|
| /external/mesa3d/src/broadcom/vulkan/ |
| D | v3dv_query.c | 52 pool->queries[query].perf.kperfmon_ids[i] = req.id; in kperfmon_create() 62 if (!pool->queries[query].perf.kperfmon_ids[0]) in kperfmon_destroy() 67 .id = pool->queries[query].perf.kperfmon_ids[i] in kperfmon_destroy() 169 .pSetLayouts = &device->queries.buf_descriptor_set_layout, in create_pool_descriptors() 270 pool->queries = vk_alloc2(&device->vk.alloc, pAllocator, pool_bytes, 8, in v3dv_CreateQueryPool() 272 if (pool->queries == NULL) { in v3dv_CreateQueryPool() 279 /* The hardware allows us to setup groups of 16 queries in consecutive in v3dv_CreateQueryPool() 280 * 4-byte addresses, requiring only that each group of 16 queries is in v3dv_CreateQueryPool() 336 /* Initialize queries in the pool */ in v3dv_CreateQueryPool() 338 pool->queries[query_idx].maybe_available = false; in v3dv_CreateQueryPool() [all …]
|
| /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. 83 trace queries slower than this threshold (ms) 86 dbslower postgres # trace PostgreSQL queries slower than 1ms [all …]
|
| 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
|
| 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
|
| /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/rust/crates/vulkano/src/command_buffer/standard/builder/ |
| D | query.rs | 126 .queries in validate_begin_query() 159 self.builder_state.queries.insert( in begin_query_unchecked() 207 .queries in validate_end_query() 241 .queries in end_query_unchecked() 506 /// Copies the results of a range of queries to a buffer on the GPU. 525 queries: Range<u32>, in copy_query_pool_results() 534 queries.clone(), in copy_query_pool_results() 545 .copy_query_pool_results_unchecked(query_pool, queries, dst_buffer, stride, flags)) in copy_query_pool_results() 552 queries: Range<u32>, in validate_copy_query_pool_results() 587 .queries_range(queries.clone()) in validate_copy_query_pool_results() [all …]
|
| /external/python/google-api-python-client/docs/dyn/ |
| D | dataproc_v1.projects.regions.jobs.html | 164 …;: { # A Dataproc job for running Apache Hive (https://hive.apache.org/) queries on YARN. # Option… 165 …ue executing queries if a query fails. The default value is false. Setting to true can be useful w… 172 …;queryFileUri": "A String", # The HCFS URI of the script that contains Hive queries. 173 "queryList": { # A list of queries to run on a cluster. # A list of queries. 174 …queries": [ # Required. The queries to execute. You do not need to end a query expression wit… 186 …"pigJob": { # A Dataproc job for running Apache Pig (https://pig.apache.org/) queries on… 187 …ue executing queries if a query fails. The default value is false. Setting to true can be useful w… 199 …eryFileUri": "A String", # The HCFS URI of the script that contains the Pig queries. 200 "queryList": { # A list of queries to run on a cluster. # A list of queries. 201 …queries": [ # Required. The queries to execute. You do not need to end a query expression wit… [all …]
|
| D | dataproc_v1beta2.projects.regions.jobs.html | 164 …;: { # A Dataproc job for running Apache Hive (https://hive.apache.org/) queries on YARN. # Option… 165 …ue executing queries if a query fails. The default value is false. Setting to true can be useful w… 172 …;queryFileUri": "A String", # The HCFS URI of the script that contains Hive queries. 173 "queryList": { # A list of queries to run on a cluster. # A list of queries. 174 …queries": [ # Required. The queries to execute. You do not need to end a query expression wit… 186 …"pigJob": { # A Dataproc job for running Apache Pig (https://pig.apache.org/) queries on… 187 …ue executing queries if a query fails. The default value is false. Setting to true can be useful w… 199 …eryFileUri": "A String", # The HCFS URI of the script that contains the Pig queries. 200 "queryList": { # A list of queries to run on a cluster. # A list of queries. 201 …queries": [ # Required. The queries to execute. You do not need to end a query expression wit… [all …]
|
| D | dns_v1.policies.html | 117 …rnative name server for the associated networks. When specified, all DNS queries are forwarded to … 119 …rnative name server for the associated networks. When specified, all DNS queries are forwarded to … 121 …ddresses go to the internet. When set to PRIVATE, Cloud DNS always sends queries through the VPC n… 128 …t;: True or False, # Allows networks bound to this policy to receive DNS queries sent by VMs or ap… 151 …rnative name server for the associated networks. When specified, all DNS queries are forwarded to … 153 …rnative name server for the associated networks. When specified, all DNS queries are forwarded to … 155 …ddresses go to the internet. When set to PRIVATE, Cloud DNS always sends queries through the VPC n… 162 …t;: True or False, # Allows networks bound to this policy to receive DNS queries sent by VMs or ap… 208 …rnative name server for the associated networks. When specified, all DNS queries are forwarded to … 210 …rnative name server for the associated networks. When specified, all DNS queries are forwarded to … [all …]
|
| D | dns_v1beta2.policies.html | 117 …rnative name server for the associated networks. When specified, all DNS queries are forwarded to … 119 …rnative name server for the associated networks. When specified, all DNS queries are forwarded to … 121 …ddresses go to the internet. When set to PRIVATE, Cloud DNS always sends queries through the VPC n… 129 …t;: True or False, # Allows networks bound to this policy to receive DNS queries sent by VMs or ap… 152 …rnative name server for the associated networks. When specified, all DNS queries are forwarded to … 154 …rnative name server for the associated networks. When specified, all DNS queries are forwarded to … 156 …ddresses go to the internet. When set to PRIVATE, Cloud DNS always sends queries through the VPC n… 164 …t;: True or False, # Allows networks bound to this policy to receive DNS queries sent by VMs or ap… 210 …rnative name server for the associated networks. When specified, all DNS queries are forwarded to … 212 …rnative name server for the associated networks. When specified, all DNS queries are forwarded to … [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 …]
|
| /external/rust/crates/vulkano/src/command_buffer/commands/ |
| D | query.rs | 35 /// # Commands related to queries. 448 /// Copies the results of a range of queries to a buffer on the GPU. 462 queries: Range<u32>, in copy_query_pool_results() 469 self.validate_copy_query_pool_results(&query_pool, queries.clone(), &destination, flags)?; in copy_query_pool_results() 476 .copy_query_pool_results(query_pool, queries, destination, stride, flags)?; in copy_query_pool_results() 485 queries: Range<u32>, in validate_copy_query_pool_results() 522 .queries_range(queries.clone()) in validate_copy_query_pool_results() 525 let count = queries.end - queries.start; in validate_copy_query_pool_results() 557 /// Resets a range of queries on a query pool. 559 /// The affected queries will be marked as "unavailable" after this command runs, and will no [all …]
|
| /external/virglrenderer/.gitlab-ci/expectations/virt/ |
| D | venus-fails.txt | 5 dEQP-VK.multiview.queries.15_15_15_15,Fail 6 dEQP-VK.multiview.queries.15,Fail 7 dEQP-VK.multiview.queries.5_10_5_10,Fail 8 dEQP-VK.multiview.renderpass2.queries.15_15_15_15,Fail 9 dEQP-VK.multiview.renderpass2.queries.15,Fail 10 dEQP-VK.multiview.renderpass2.queries.5_10_5_10,Fail
|
| /external/google-cloud-java/java-aiplatform/proto-google-cloud-aiplatform-v1beta1/src/main/java/com/google/cloud/aiplatform/v1beta1/ |
| D | FindNeighborsRequestOrBuilder.java | 98 * The list of queries. 101 * <code>repeated .google.cloud.aiplatform.v1beta1.FindNeighborsRequest.Query queries = 3;</code> 108 * The list of queries. 111 * <code>repeated .google.cloud.aiplatform.v1beta1.FindNeighborsRequest.Query queries = 3;</code> 118 * The list of queries. 121 * <code>repeated .google.cloud.aiplatform.v1beta1.FindNeighborsRequest.Query queries = 3;</code> 128 * The list of queries. 131 * <code>repeated .google.cloud.aiplatform.v1beta1.FindNeighborsRequest.Query queries = 3;</code> 139 * The list of queries. 142 * <code>repeated .google.cloud.aiplatform.v1beta1.FindNeighborsRequest.Query queries = 3;</code>
|
| /external/google-cloud-java/java-dataproc/proto-google-cloud-dataproc-v1/src/main/proto/google/cloud/dataproc/v1/ |
| D | jobs.proto | 289 // A list of queries to run on a cluster. 291 // Required. The queries to execute. You do not need to end a query expression 292 // with a semicolon. Multiple queries can be specified in one 298 // "queries": [ 305 repeated string queries = 1 [(google.api.field_behavior) = REQUIRED]; field 309 // queries on YARN. 311 // Required. The sequence of Hive queries to execute, specified as either 312 // an HCFS file URI or a list of queries. 313 oneof queries { oneof 314 // The HCFS URI of the script that contains Hive queries. [all …]
|
| /external/googleapis/google/cloud/dataproc/v1/ |
| D | jobs.proto | 291 // A list of queries to run on a cluster. 293 // Required. The queries to execute. You do not need to end a query expression 294 // with a semicolon. Multiple queries can be specified in one 300 // "queries": [ 307 repeated string queries = 1 [(google.api.field_behavior) = REQUIRED]; field 311 // queries on YARN. 313 // Required. The sequence of Hive queries to execute, specified as either 314 // an HCFS file URI or a list of queries. 315 oneof queries { oneof 316 // The HCFS URI of the script that contains Hive queries. [all …]
|
| /external/aws-crt-java/src/main/java/software/amazon/awssdk/crt/mqtt/ |
| D | MqttConnectionConfig.java | 76 * Queries the connection-related callbacks for a connection 95 * Queries the client_id being used by a connection 113 * Queries the IoT endpoint used by a connection 131 * Queries the port to connect to. 150 * Queries the common settings to use for a connection's socket 169 * Queries whether or not the service should try to resume prior subscriptions, if it has any 192 * @deprecated Queries the MQTT keep-alive via PING messages. Please use 217 * Queries the MQTT keep-alive via PING messages. 237 * Queries ping timeout value. If a response is not received within this 290 * Queries timeout value for requests that response is required on healthy connection. [all …]
|
| /external/mesa3d/src/compiler/nir/ |
| D | nir_opt_ray_queries.c | 34 * 1. Remove ray queries that the shader is not using the result of. 35 * 2. Combine ray queries which are not simultaneously. 39 mark_query_read(struct set *queries, in mark_query_read() argument 59 _mesa_set_add(queries, query); in mark_query_read() 63 nir_find_ray_queries_read(struct set *queries, in nir_find_ray_queries_read() argument 76 mark_query_read(queries, intrin); in nir_find_ray_queries_read() 79 mark_query_read(queries, intrin); in nir_find_ray_queries_read() 92 struct set *queries = data; in nir_replace_unread_queries_instr() local 113 struct set_entry *entry = _mesa_set_search(queries, query); in nir_replace_unread_queries_instr() 138 /* Update the number of queries if some have been removed. */ in nir_opt_ray_queries() [all …]
|
| /external/bcc/man/man8/ |
| D | dbslower.8 | 3 dbslower \- Trace MySQL/PostgreSQL server queries slower than a threshold. 7 This traces queries served by a MySQL or PostgreSQL server, and prints 14 Alternatively, MySQL queries can be traced without the USDT support using the 31 Path to MySQL binary. This option allow to MySQL queries even when USDT probes 41 Trace MySQL server queries slower than 1 ms: 62 This adds low-overhead instrumentation to queries, and only emits output
|
| /external/angle/src/libANGLE/renderer/vulkan/ |
| D | QueryVk.h | 45 // Called by ContextVk on render pass start / end for render pass queries. These will 46 // stash and create new queries as needed. 65 // Prepare for begin by handling peculiarities such as the two transform feedback queries 69 // Used for all queries, except TimeElapsed (begin) or those that are emulated. For transform 70 // feedback queries, these can be shared if the two queries are simultaneously active. 72 // Used for queries that may end up with multiple outstanding query helper objects as they end
|
| /external/autotest/client/cros/netprotos/ |
| D | cros_p2p.py | 101 """Sends queries to gather all the p2p information on the network. 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)
|