Home
last modified time | relevance | path

Searched refs:vresult (Results 1 – 15 of 15) sorted by relevance

/third_party/mesa3d/src/gallium/drivers/softpipe/
Dsp_query.c236 union pipe_query_result *vresult) in softpipe_get_query_result() argument
239 uint64_t *result = (uint64_t*)vresult; in softpipe_get_query_result()
244 (struct pipe_query_data_so_statistics *)vresult; in softpipe_get_query_result()
250 memcpy(vresult, &sq->stats, in softpipe_get_query_result()
254 vresult->b = true; in softpipe_get_query_result()
258 vresult->b = sq->end != 0; in softpipe_get_query_result()
262 (struct pipe_query_data_timestamp_disjoint *)vresult; in softpipe_get_query_result()
276 vresult->b = sq->end - sq->start != 0; in softpipe_get_query_result()
287 union pipe_query_result *vresult) in is_result_nonzero() argument
302 return vresult->b; in is_result_nonzero()
[all …]
/third_party/mesa3d/src/gallium/drivers/r300/
Dr300_query.c144 union pipe_query_result *vresult) in r300_get_query_result() argument
155 vresult->b = TRUE; in r300_get_query_result()
157 vresult->b = r300->rws->buffer_wait(r300->rws, q->buf, 0, RADEON_USAGE_READWRITE); in r300_get_query_result()
159 return vresult->b; in r300_get_query_result()
178 vresult->b = temp != 0; in r300_get_query_result()
180 vresult->u64 = temp; in r300_get_query_result()
/third_party/mesa3d/src/gallium/drivers/v3d/
Dv3d_query_pipe.c139 bool wait, union pipe_query_result *vresult) in v3d_get_query_result_pipe() argument
164 vresult->u64 = result; in v3d_get_query_result_pipe()
168 vresult->b = result != 0; in v3d_get_query_result_pipe()
172 vresult->u64 = pquery->end - pquery->start; in v3d_get_query_result_pipe()
Dv3d_query.c90 bool wait, union pipe_query_result *vresult) in v3d_get_query_result() argument
95 return q->funcs->get_query_result(v3d, q, wait, vresult); in v3d_get_query_result()
Dv3d_query_perfcnt.c276 bool wait, union pipe_query_result *vresult) in v3d_get_query_result_perfcnt() argument
300 vresult->batch[i].u64 = pquery->perfmon->values[i]; in v3d_get_query_result_perfcnt()
/third_party/mesa3d/src/gallium/drivers/llvmpipe/
Dlp_query.c97 union pipe_query_result *vresult) in llvmpipe_get_query_result() argument
102 uint64_t *result = (uint64_t *)vresult; in llvmpipe_get_query_result()
132 vresult->b = vresult->b || pq->end[i]; in llvmpipe_get_query_result()
155 (struct pipe_query_data_timestamp_disjoint *)vresult; in llvmpipe_get_query_result()
162 vresult->b = true; in llvmpipe_get_query_result()
171 vresult->b = false; in llvmpipe_get_query_result()
173 vresult->b |= pq->num_primitives_generated[s] > pq->num_primitives_written[s]; in llvmpipe_get_query_result()
176 vresult->b = pq->num_primitives_generated[0] > pq->num_primitives_written[0]; in llvmpipe_get_query_result()
180 (struct pipe_query_data_so_statistics *)vresult; in llvmpipe_get_query_result()
187 (struct pipe_query_data_pipeline_statistics *)vresult; in llvmpipe_get_query_result()
/third_party/mesa3d/src/gallium/drivers/svga/
Dsvga_pipe_query.c1087 union pipe_query_result *vresult) in svga_get_query_result() argument
1092 uint64_t *result = (uint64_t *)vresult; in svga_get_query_result()
1117 vresult->b = occResult.anySamplesRendered != 0; in svga_get_query_result()
1121 vresult->b = count != 0; in svga_get_query_result()
1128 (struct pipe_query_data_so_statistics *)vresult; in svga_get_query_result()
1184 vresult->u64 = sq->end_count - sq->begin_count; in svga_get_query_result()
1188 vresult->u64 = svgascreen->hud.total_resource_bytes; in svga_get_query_result()
1191 vresult->u64 = svga->hud.num_shaders; in svga_get_query_result()
1194 vresult->u64 = svgascreen->hud.num_resources; in svga_get_query_result()
1197 vresult->u64 = (svga->hud.num_blend_objects + in svga_get_query_result()
[all …]
/third_party/mesa3d/src/gallium/drivers/i915/
Di915_query.c69 bool wait, union pipe_query_result *vresult) in i915_get_query_result() argument
71 uint64_t *result = (uint64_t *)vresult; in i915_get_query_result()
/third_party/mesa3d/src/gallium/drivers/lima/
Dlima_query.c71 bool wait, union pipe_query_result *vresult) in lima_get_query_result() argument
73 uint64_t *result = &vresult->u64; in lima_get_query_result()
/third_party/mesa3d/src/gallium/drivers/vc4/
Dvc4_query.c251 bool wait, union pipe_query_result *vresult) in vc4_get_query_result() argument
260 vresult->u64 = 0; in vc4_get_query_result()
275 vresult->batch[i].u64 = query->hwperfmon->counters[i]; in vc4_get_query_result()
/third_party/googletest/googlemock/test/
Dgmock-actions_test.cc1364 std::vector<std::unique_ptr<int>> vresult = mock.MakeVectorUnique(); in TEST() local
1365 EXPECT_EQ(1u, vresult.size()); in TEST()
1366 EXPECT_NE(nullptr, vresult[0]); in TEST()
1367 EXPECT_EQ(7, *vresult[0]); in TEST()
1404 std::vector<std::unique_ptr<int>> vresult = mock.MakeVectorUnique(); in TEST() local
1405 EXPECT_EQ(1u, vresult.size()); in TEST()
1406 EXPECT_NE(nullptr, vresult[0]); in TEST()
1407 EXPECT_EQ(7, *vresult[0]); in TEST()
/third_party/mesa3d/src/gallium/drivers/panfrost/
Dpan_context.c910 union pipe_query_result *vresult) in panfrost_get_query_result() argument
935 vresult->u64 = passed; in panfrost_get_query_result()
937 vresult->b = !!result[0]; in panfrost_get_query_result()
945 vresult->u64 = query->end - query->start; in panfrost_get_query_result()
/third_party/mesa3d/src/gallium/auxiliary/driver_noop/
Dnoop_pipe.c79 union pipe_query_result *vresult) in noop_get_query_result() argument
81 uint64_t *result = (uint64_t*)vresult; in noop_get_query_result()
/third_party/mesa3d/src/gallium/drivers/asahi/
Dagx_pipe.c90 union pipe_query_result *vresult) in agx_get_query_result() argument
92 uint64_t *result = (uint64_t*)vresult; in agx_get_query_result()
/third_party/ejdb/src/bindings/ejdb2_node/
Dejdb2_node.c1457 napi_value vstream, vid, vdoc, vlog, vresult; in jn_resultset_tsf() local
1498 &vresult in jn_resultset_tsf()