Home
last modified time | relevance | path

Searched +full:- +full:- +full:query (Results 1 – 25 of 1266) sorted by relevance

12345678910>>...51

/external/deqp/android/cts/main/vk-main-2023-03-01/
Dycbcr.txt1 dEQP-VK.ycbcr.query.levels.mesh.b10x6g10x6r10x6g10x6_422_unorm_4pack16
2 dEQP-VK.ycbcr.query.levels.mesh.b12x4g12x4r12x4g12x4_422_unorm_4pack16
3 dEQP-VK.ycbcr.query.levels.mesh.b16g16r16g16_422_unorm
4 dEQP-VK.ycbcr.query.levels.mesh.b8g8r8g8_422_unorm
5 dEQP-VK.ycbcr.query.levels.mesh.g10x6_b10x6_r10x6_3plane_420_unorm_3pack16
6 dEQP-VK.ycbcr.query.levels.mesh.g10x6_b10x6_r10x6_3plane_420_unorm_3pack16_disjoint
7 dEQP-VK.ycbcr.query.levels.mesh.g10x6_b10x6_r10x6_3plane_422_unorm_3pack16
8 dEQP-VK.ycbcr.query.levels.mesh.g10x6_b10x6_r10x6_3plane_422_unorm_3pack16_disjoint
9 dEQP-VK.ycbcr.query.levels.mesh.g10x6_b10x6_r10x6_3plane_444_unorm_3pack16
10 dEQP-VK.ycbcr.query.levels.mesh.g10x6_b10x6_r10x6_3plane_444_unorm_3pack16_disjoint
[all …]
Dmesh-shader.txt1 dEQP-VK.mesh_shader.ext.api.draw.draw_count_0.no_indirect_args.no_count_limit.no_count_offset.no_ta…
2 dEQP-VK.mesh_shader.ext.api.draw.draw_count_0.no_indirect_args.no_count_limit.no_count_offset.no_ta…
3 dEQP-VK.mesh_shader.ext.api.draw.draw_count_0.no_indirect_args.no_count_limit.no_count_offset.with_…
4 dEQP-VK.mesh_shader.ext.api.draw.draw_count_0.no_indirect_args.no_count_limit.no_count_offset.with_…
5 dEQP-VK.mesh_shader.ext.api.draw.draw_count_1.no_indirect_args.no_count_limit.no_count_offset.no_ta…
6 dEQP-VK.mesh_shader.ext.api.draw.draw_count_1.no_indirect_args.no_count_limit.no_count_offset.no_ta…
7 dEQP-VK.mesh_shader.ext.api.draw.draw_count_1.no_indirect_args.no_count_limit.no_count_offset.with_…
8 dEQP-VK.mesh_shader.ext.api.draw.draw_count_1.no_indirect_args.no_count_limit.no_count_offset.with_…
9 dEQP-VK.mesh_shader.ext.api.draw.draw_count_2.no_indirect_args.no_count_limit.no_count_offset.no_ta…
10 dEQP-VK.mesh_shader.ext.api.draw.draw_count_2.no_indirect_args.no_count_limit.no_count_offset.no_ta…
[all …]
/external/wpa_supplicant_8/wpa_supplicant/
Dgas_query.c2 * Generic advertisement service (GAS) query
4 * Copyright (c) 2011-2014, Qualcomm Atheros, Inc.
5 * Copyright (c) 2011-2014, Jouni Malinen <j@w1.fi>
26 /** GAS query timeout in seconds */
29 /* GAS query wait-time / duration in ms */
36 * struct gas_query_pending - Pending GAS query
64 * struct gas_query - Internal GAS query data
81 struct gas_query_pending *query);
96 * gas_query_init - Initialize GAS query component
98 * Returns: Pointer to GAS query data or %NULL on failure
[all …]
/external/wpa_supplicant_8/src/ap/
Dgas_query_ap.c2 * Generic advertisement service (GAS) query (hostapd)
4 * Copyright (c) 2011-2017, Qualcomm Atheros, Inc.
5 * Copyright (c) 2011-2014, Jouni Malinen <j@w1.fi>
25 /** GAS query timeout in seconds */
28 /* GAS query wait-time / duration in ms */
35 * struct gas_query_pending - Pending GAS query
61 * struct gas_query_ap - Internal GAS query data
75 struct gas_query_pending *query);
90 * gas_query_ap_init - Initialize GAS query component
92 * Returns: Pointer to GAS query data or %NULL on failure
[all …]
/external/mesa3d/src/intel/perf/
Dintel_perf_mdapi.c31 #include <drm-uapi/i915_drm.h>
37 const struct intel_perf_query_info *query, in intel_perf_query_result_write_mdapi() argument
40 switch (devinfo->ver) { in intel_perf_query_result_write_mdapi()
47 assert(devinfo->platform == INTEL_PLATFORM_HSW); in intel_perf_query_result_write_mdapi()
49 for (int i = 0; i < ARRAY_SIZE(mdapi_data->ACounters); i++) in intel_perf_query_result_write_mdapi()
50 mdapi_data->ACounters[i] = result->accumulator[1 + i]; in intel_perf_query_result_write_mdapi()
52 for (int i = 0; i < ARRAY_SIZE(mdapi_data->NOACounters); i++) { in intel_perf_query_result_write_mdapi()
53 mdapi_data->NOACounters[i] = in intel_perf_query_result_write_mdapi()
54 result->accumulator[1 + ARRAY_SIZE(mdapi_data->ACounters) + i]; in intel_perf_query_result_write_mdapi()
57 mdapi_data->PerfCounter1 = result->accumulator[query->perfcnt_offset + 0]; in intel_perf_query_result_write_mdapi()
[all …]
Dintel_perf_setup.h35 struct intel_perf_query_info *query = rzalloc(perf, struct intel_perf_query_info); in intel_query_alloc() local
36 query->perf = perf; in intel_query_alloc()
37 query->kind = INTEL_PERF_QUERY_TYPE_OA; in intel_query_alloc()
38 query->n_counters = 0; in intel_query_alloc()
39 query->oa_metrics_set_id = 0; /* determined at runtime, via sysfs */ in intel_query_alloc()
40 query->counters = rzalloc_array(query, struct intel_perf_query_counter, ncounters); in intel_query_alloc()
43 if (perf->devinfo.verx10 <= 75) { in intel_query_alloc()
44 query->oa_format = I915_OA_FORMAT_A45_B8_C8; in intel_query_alloc()
45 query->gpu_time_offset = 0; in intel_query_alloc()
46 query->a_offset = query->gpu_time_offset + 1; in intel_query_alloc()
[all …]
Dintel_perf_query.c38 #include "drm-uapi/i915_drm.h"
55 * perf_ctx->sample_buffers linked list. When we process the
56 * results of an OA metrics query we need to consider all the periodic
65 * Time ---->
74 * These nodes may hold samples for query A:
77 * These nodes may hold samples for query B:
80 * These nodes may hold samples for query C:
106 * When a query starts we take a reference on the current tail of
107 * the list, knowing that no already-buffered samples can possibly
108 * relate to the newly-started query. A pointer to this node is
[all …]
/external/swiftshader/tests/regres/testlists/vk-default/
Dmesh-shader.txt1 dEQP-VK.mesh_shader.nv.smoke.mesh_shader_triangle
2 dEQP-VK.mesh_shader.nv.smoke.mesh_task_shader_triangle
3 dEQP-VK.mesh_shader.nv.smoke.task_only_shader_triangle
4 dEQP-VK.mesh_shader.nv.smoke.fullscreen_gradient
5 dEQP-VK.mesh_shader.nv.smoke.fullscreen_gradient_fs2x2
6 dEQP-VK.mesh_shader.nv.smoke.fullscreen_gradient_fs2x1
7 dEQP-VK.mesh_shader.nv.api.draw.draw_count_0.no_indirect_args.no_count_limit.no_count_offset.no_tas…
8 dEQP-VK.mesh_shader.nv.api.draw.draw_count_0.no_indirect_args.no_count_limit.no_count_offset.no_tas…
9 dEQP-VK.mesh_shader.nv.api.draw.draw_count_0.no_indirect_args.no_count_limit.no_count_offset.with_t…
10 dEQP-VK.mesh_shader.nv.api.draw.draw_count_0.no_indirect_args.no_count_limit.no_count_offset.with_t…
[all …]
/external/deqp/external/vulkancts/mustpass/main/vk-default/
Dmesh-shader.txt1 dEQP-VK.mesh_shader.ext.api.draw.draw_count_0.no_indirect_args.no_count_limit.no_count_offset.no_ta…
2 dEQP-VK.mesh_shader.ext.api.draw.draw_count_0.no_indirect_args.no_count_limit.no_count_offset.no_ta…
3 dEQP-VK.mesh_shader.ext.api.draw.draw_count_0.no_indirect_args.no_count_limit.no_count_offset.with_…
4 dEQP-VK.mesh_shader.ext.api.draw.draw_count_0.no_indirect_args.no_count_limit.no_count_offset.with_…
5 dEQP-VK.mesh_shader.ext.api.draw.draw_count_1.no_indirect_args.no_count_limit.no_count_offset.no_ta…
6 dEQP-VK.mesh_shader.ext.api.draw.draw_count_1.no_indirect_args.no_count_limit.no_count_offset.no_ta…
7 dEQP-VK.mesh_shader.ext.api.draw.draw_count_1.no_indirect_args.no_count_limit.no_count_offset.with_…
8 dEQP-VK.mesh_shader.ext.api.draw.draw_count_1.no_indirect_args.no_count_limit.no_count_offset.with_…
9 dEQP-VK.mesh_shader.ext.api.draw.draw_count_2.no_indirect_args.no_count_limit.no_count_offset.no_ta…
10 dEQP-VK.mesh_shader.ext.api.draw.draw_count_2.no_indirect_args.no_count_limit.no_count_offset.no_ta…
[all …]
/external/rust/crates/grpcio-sys/grpc/third_party/cares/cares/src/lib/
Dares_send.c32 struct query *query; in ares_send() local
36 /* Verify that the query is at least long enough to hold the header. */ in ares_send()
42 if (channel->nservers < 1) in ares_send()
47 /* Allocate space for query and allocated fields. */ in ares_send()
48 query = ares_malloc(sizeof(struct query)); in ares_send()
49 if (!query) in ares_send()
54 query->tcpbuf = ares_malloc(qlen + 2); in ares_send()
55 if (!query->tcpbuf) in ares_send()
57 ares_free(query); in ares_send()
61 query->server_info = ares_malloc(channel->nservers * in ares_send()
[all …]
/external/mesa3d/src/gallium/drivers/zink/
Dzink_query.c56 /* Everytime the gallium query needs
57 * another vulkan query, add a new start.
66 bool active; /* query is considered active by vk */
67 bool needs_reset; /* query is considered active by vk and cannot be destroyed */
68 bool dead; /* query should be destroyed when its fence finishes */
69 bool needs_update; /* query needs to update its qbos */
70 bool needs_rast_discard_workaround; /* query needs discard disabled */
76 …struct list_head stats_list; /* when active, statistics queries are added to ctx->primitives_gener…
79 struct zink_batch_usage *batch_uses; //batch that the query was started in
92 {"render-passes", ZINK_QUERY_RENDER_PASSES, { 0 }},
[all …]
/external/libchrome/base/test/
Dtrace_event_analyzer.h2 // Use of this source code is governed by a BSD-style license that can be
5 // Use trace_analyzer::Query and trace_analyzer::TraceAnalyzer to search for
9 // - Get trace events JSON string from base::trace_event::TraceLog.
10 // - Create TraceAnalyzer with JSON string.
11 // - Call TraceAnalyzer::AssociateBeginEndEvents (optional).
12 // - Call TraceAnalyzer::AssociateEvents (zero or more times).
13 // - Call TraceAnalyzer::FindEvents with queries to find specific events.
15 // A Query is a boolean expression tree that evaluates to true or false for a
34 // analyzer.FindEvents(Query(EVENT_NAME) == "my_event", &events);
38 // Query q = (Query(EVENT_NAME) == Query::String("my_event") &&
[all …]
Dtrace_event_analyzer_unittest.cc2 // Use of this source code is governed by a BSD-style license that can be
48 buffer_.AddFragment(json_events_str->data()); in OnTraceDataCollected()
50 flush_complete_event->Signal(); in OnTraceDataCollected()
56 base::trace_event::TraceLog::GetInstance()->SetEnabled( in BeginTracing()
62 base::trace_event::TraceLog::GetInstance()->SetDisabled(); in EndTracing()
66 base::trace_event::TraceLog::GetInstance()->Flush( in EndTracing()
89 analyzer->FindEvents(Query::Bool(true), &found); in TEST_F()
126 EXPECT_EQ(base::Value::Type::DICTIONARY, arg->type()); in TEST_F()
159 Query event_pid = Query::EventPidIs(event.thread.process_id); in TEST_F()
160 Query event_tid = Query::EventTidIs(event.thread.thread_id); in TEST_F()
[all …]
Dtrace_event_analyzer.cc2 // Use of this source code is governed by a BSD-style license that can be
27 buffer->AddFragment(json->data()); in OnTraceDataCollected()
51 if (event_value->type() != base::Value::Type::DICTIONARY) { in SetFromJSON()
61 if (!dictionary->GetString("ph", &phase_str)) { in SetFromJSON()
81 if (require_origin && !dictionary->GetInteger("pid", &thread.process_id)) { in SetFromJSON()
85 if (require_origin && !dictionary->GetInteger("tid", &thread.thread_id)) { in SetFromJSON()
89 if (require_origin && !dictionary->GetDouble("ts", &timestamp)) { in SetFromJSON()
94 dictionary->GetDouble("dur", &duration); in SetFromJSON()
96 if (!dictionary->GetString("cat", &category)) { in SetFromJSON()
100 if (!dictionary->GetString("name", &name)) { in SetFromJSON()
[all …]
/external/cronet/base/test/
Dtrace_event_analyzer.h2 // Use of this source code is governed by a BSD-style license that can be
5 // Use trace_analyzer::Query and trace_analyzer::TraceAnalyzer to search for
9 // - Get trace events JSON string from base::trace_event::TraceLog.
10 // - Create TraceAnalyzer with JSON string.
11 // - Call TraceAnalyzer::AssociateBeginEndEvents (optional).
12 // - Call TraceAnalyzer::AssociateEvents (zero or more times).
13 // - Call TraceAnalyzer::FindEvents with queries to find specific events.
15 // A Query is a boolean expression tree that evaluates to true or false for a
34 // analyzer.FindEvents(Query(EVENT_NAME) == "my_event", &events);
38 // Query q = (Query(EVENT_NAME) == Query::String("my_event") &&
[all …]
Dtrace_event_analyzer_unittest.cc2 // Use of this source code is governed by a BSD-style license that can be
49 buffer_.AddFragment(json_events_str->data()); in OnTraceDataCollected()
51 flush_complete_event->Signal(); in OnTraceDataCollected()
57 base::trace_event::TraceLog::GetInstance()->SetEnabled( in BeginTracing()
63 base::trace_event::TraceLog::GetInstance()->SetDisabled(); in EndTracing()
67 base::trace_event::TraceLog::GetInstance()->Flush(base::BindRepeating( in EndTracing()
89 analyzer->FindEvents(Query::Bool(true), &found); in TEST_F()
157 Query event_pid = Query::EventPidIs(event.thread.process_id); in TEST_F()
158 Query event_tid = Query::EventTidIs(event.thread.thread_id); in TEST_F()
159 Query event_time = Query::EventTimeIs(event.timestamp); in TEST_F()
[all …]
Dtrace_event_analyzer.cc2 // Use of this source code is governed by a BSD-style license that can be
24 #include "third_party/abseil-cpp/absl/types/optional.h"
31 buffer->AddFragment(json->data()); in OnTraceDataCollected()
50 if (!event_value->is_dict()) { in SetFromJSON()
55 const base::Value::Dict& event_dict = event_value->GetDict(); in SetFromJSON()
62 phase = *maybe_phase->data(); in SetFromJSON()
165 const std::string* maybe_global_id2 = maybe_id2->FindString("global"); in SetFromJSON()
169 const std::string* maybe_local_id2 = maybe_id2->FindString("local"); in SetFromJSON()
210 return fabs(other_event->timestamp - timestamp); in GetAbsTimeToOtherEvent()
217 *arg = it->second; in GetArgAsString()
[all …]
/external/mesa3d/src/gallium/drivers/asahi/
Dagx_query.c3 * Copyright 2019-2020 Collabora, Ltd.
4 * SPDX-License-Identifier: MIT
20 is_occlusion(struct agx_query *query) in is_occlusion() argument
22 switch (query->type) { in is_occlusion()
33 is_timer(struct agx_query *query) in is_timer() argument
35 switch (query->type) { in is_timer()
50 /* Bitset of query indices that are in use */
58 agx_bo_unreference(heap->bo); in agx_destroy_oq_heap()
67 heap->bo = agx_bo_create(agx_device(ctx->base.screen), in agx_alloc_oq_heap()
69 AGX_BO_WRITEBACK, "Occlusion query heap"); in agx_alloc_oq_heap()
[all …]
/external/mesa3d/src/gallium/drivers/virgl/
Dvirgl_query.c17 * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL
28 #include "virtio-gpu/virgl_protocol.h"
115 struct virgl_query *query = virgl_query(q); in virgl_render_condition() local
118 handle = query->handle; in virgl_render_condition()
126 struct virgl_query *query; in virgl_create_query() local
128 query = CALLOC_STRUCT(virgl_query); in virgl_create_query()
129 if (!query) in virgl_create_query()
132 query->type = query_type; in virgl_create_query()
134 if (query->type == PIPE_QUERY_GPU_FINISHED) in virgl_create_query()
135 return (struct pipe_query *)query; in virgl_create_query()
[all …]
/external/ComputeLibrary/src/runtime/CL/gemm_auto_heuristics/
DCLGEMMAutoHeuristics.cpp4 * SPDX-License-Identifier: MIT
48 GEMMTypeResult select_mlgo_gemm_kernel(const CommonQuery &query, bool reshape_b_only_on_first_run) in select_mlgo_gemm_kernel() argument
56 …lgo_heuristics->get()->query_gemm_type(mlgo::Query{ string_from_target(query.gpu_target), query.da… in select_mlgo_gemm_kernel()
60 …ARM_COMPUTE_LOG_INFO_MSG_WITH_FORMAT_CORE("MLGOHeuristics query returns gemm type: %s.", to_string… in select_mlgo_gemm_kernel()
64 ARM_COMPUTE_LOG_INFO_MSG_CORE("MLGOHeuristics query failed"); in select_mlgo_gemm_kernel()
69 GEMMTypeResult select_default_gemm_kernel(const CommonQuery &query, bool reshape_b_only_on_first_ru… in select_default_gemm_kernel() argument
71 …CLGEMMKernelSelection> default_heuristics = CLGEMMKernelSelectionFactory::create(query.gpu_target); in select_default_gemm_kernel()
75 params.m = query.m; in select_default_gemm_kernel()
76 params.n = query.n; in select_default_gemm_kernel()
77 params.k = query.k; in select_default_gemm_kernel()
[all …]
/external/mesa3d/src/gallium/drivers/radeonsi/
Dsi_query.c6 * SPDX-License-Identifier: MIT
47 struct si_query_sw *query = (struct si_query_sw *)squery; in si_query_sw_destroy() local
49 sctx->b.screen->fence_reference(sctx->b.screen, &query->fence, NULL); in si_query_sw_destroy()
50 FREE(query); in si_query_sw_destroy()
99 unreachable("query type does not correspond to winsys id"); in winsys_id_from_type()
105 struct si_query_sw *query = (struct si_query_sw *)squery; in si_query_sw_begin() local
108 switch (query->b.type) { in si_query_sw_begin()
113 query->begin_result = sctx->num_draw_calls; in si_query_sw_begin()
116 query->begin_result = sctx->num_decompress_calls; in si_query_sw_begin()
119 query->begin_result = sctx->num_compute_calls; in si_query_sw_begin()
[all …]
/external/swiftshader/third_party/llvm-16.0/llvm/lib/CodeGen/GlobalISel/
DLegalityPredicates.cpp1 //===- lib/CodeGen/GlobalISel/LegalizerPredicates.cpp - Predicates --------===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
11 //===----------------------------------------------------------------------===//
13 // Enable optimizations to work around MSVC debug mode bug in 32-bit:
14 …community.visualstudio.com/content/problem/1179643/msvc-copies-overaligned-non-trivially-copyable-
30 [=](const LegalityQuery &Query) { return Query.Types[TypeIdx] == Type; }; in typeIs() argument
37 return [=](const LegalityQuery &Query) { in typeInSet() argument
38 return llvm::is_contained(Types, Query.Types[TypeIdx]); in typeInSet()
46 return [=](const LegalityQuery &Query) { in typePairInSet() argument
[all …]
/external/cronet/components/nacl/loader/
Dnacl_validation_query_unittest.cc2 // Use of this source code is governed by a BSD-style license that can be
89 query.reset(context->CreateQuery()); in TestQuery()
94 std::unique_ptr<NaClValidationQuery> query; member in __anon8b3962f70111::TestQuery
108 ASSERT_TRUE(query1->db->did_query_); in AssertQuerySame()
109 ASSERT_TRUE(query2->db->did_query_); in AssertQuerySame()
110 ASSERT_EQ(0, memcmp(query1->db->query_signature_, in AssertQuerySame()
111 query2->db->query_signature_, in AssertQuerySame()
116 ASSERT_TRUE(query1->db->did_query_); in AssertQueryDifferent()
117 ASSERT_TRUE(query2->db->did_query_); in AssertQueryDifferent()
118 ASSERT_NE(0, memcmp(query1->db->query_signature_, in AssertQueryDifferent()
[all …]
/external/mesa3d/src/gallium/drivers/r600/
Dr600_query.c18 * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL
60 struct r600_query_sw *query = (struct r600_query_sw *)rquery; in r600_query_sw_destroy() local
62 rscreen->b.fence_reference(&rscreen->b, &query->fence, NULL); in r600_query_sw_destroy()
63 FREE(query); in r600_query_sw_destroy()
88 default: unreachable("query type does not correspond to winsys id"); in winsys_id_from_type()
95 struct r600_query_sw *query = (struct r600_query_sw *)rquery; in r600_query_sw_begin() local
98 switch(query->b.type) { in r600_query_sw_begin()
103 query->begin_result = rctx->num_draw_calls; in r600_query_sw_begin()
106 query->begin_result = rctx->num_decompress_calls; in r600_query_sw_begin()
109 query->begin_result = rctx->num_mrt_draw_calls; in r600_query_sw_begin()
[all …]
/external/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/GlobalISel/
DLegalityPredicates.cpp1 //===- lib/CodeGen/GlobalISel/LegalizerPredicates.cpp - Predicates --------===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
11 //===----------------------------------------------------------------------===//
13 // Enable optimizations to work around MSVC debug mode bug in 32-bit:
14 …community.visualstudio.com/content/problem/1179643/msvc-copies-overaligned-non-trivially-copyable-
30 [=](const LegalityQuery &Query) { return Query.Types[TypeIdx] == Type; }; in typeIs() argument
37 return [=](const LegalityQuery &Query) { in typeInSet() argument
38 return std::find(Types.begin(), Types.end(), Query.Types[TypeIdx]) != Types.end(); in typeInSet()
46 return [=](const LegalityQuery &Query) { in typePairInSet() argument
[all …]

12345678910>>...51