/third_party/mesa3d/src/gallium/drivers/softpipe/ |
D | sp_query.c | 236 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/ |
D | r300_query.c | 144 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/ |
D | v3d_query_pipe.c | 139 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()
|
D | v3d_query.c | 90 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()
|
D | v3d_query_perfcnt.c | 276 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/ |
D | lp_query.c | 97 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/ |
D | svga_pipe_query.c | 1087 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/ |
D | i915_query.c | 69 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/ |
D | lima_query.c | 71 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/ |
D | vc4_query.c | 251 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/ |
D | gmock-actions_test.cc | 1364 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/ |
D | pan_context.c | 910 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/ |
D | noop_pipe.c | 79 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/ |
D | agx_pipe.c | 90 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/ |
D | ejdb2_node.c | 1457 napi_value vstream, vid, vdoc, vlog, vresult; in jn_resultset_tsf() local 1498 &vresult in jn_resultset_tsf()
|