Home
last modified time | relevance | path

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

/external/mesa3d/src/gallium/drivers/llvmpipe/
Dlp_query.c96 union pipe_query_result *vresult) in llvmpipe_get_query_result() argument
101 uint64_t *result = (uint64_t *)vresult; in llvmpipe_get_query_result()
131 vresult->b = vresult->b || pq->end[i]; in llvmpipe_get_query_result()
143 (struct pipe_query_data_timestamp_disjoint *)vresult; in llvmpipe_get_query_result()
150 vresult->b = TRUE; in llvmpipe_get_query_result()
160 vresult->b = pq->num_primitives_generated > pq->num_primitives_written; in llvmpipe_get_query_result()
164 (struct pipe_query_data_so_statistics *)vresult; in llvmpipe_get_query_result()
171 (struct pipe_query_data_pipeline_statistics *)vresult; in llvmpipe_get_query_result()
/external/mesa3d/src/gallium/drivers/softpipe/
Dsp_query.c219 union pipe_query_result *vresult) in softpipe_get_query_result() argument
222 uint64_t *result = (uint64_t*)vresult; in softpipe_get_query_result()
227 (struct pipe_query_data_so_statistics *)vresult; in softpipe_get_query_result()
233 memcpy(vresult, &sq->stats, in softpipe_get_query_result()
237 vresult->b = TRUE; in softpipe_get_query_result()
241 vresult->b = sq->end != 0; in softpipe_get_query_result()
245 (struct pipe_query_data_timestamp_disjoint *)vresult; in softpipe_get_query_result()
259 vresult->b = sq->end - sq->start != 0; in softpipe_get_query_result()
/external/mesa3d/src/gallium/drivers/r300/
Dr300_query.c143 union pipe_query_result *vresult) in r300_get_query_result() argument
154 vresult->b = TRUE; in r300_get_query_result()
156 vresult->b = r300->rws->buffer_wait(q->buf, 0, RADEON_USAGE_READWRITE); in r300_get_query_result()
158 return vresult->b; in r300_get_query_result()
177 vresult->b = temp != 0; in r300_get_query_result()
179 vresult->u64 = temp; in r300_get_query_result()
/external/mesa3d/src/gallium/drivers/vc5/
Dvc5_query.c117 boolean wait, union pipe_query_result *vresult) in vc5_get_query_result() argument
143 vresult->u64 = result; in vc5_get_query_result()
147 vresult->b = result != 0; in vc5_get_query_result()
151 vresult->u64 = q->end - q->start; in vc5_get_query_result()
/external/mesa3d/src/gallium/drivers/svga/
Dsvga_pipe_query.c1080 union pipe_query_result *vresult) in svga_get_query_result() argument
1085 uint64_t *result = (uint64_t *)vresult; in svga_get_query_result()
1110 vresult->b = occResult.anySamplesRendered != 0; in svga_get_query_result()
1114 vresult->b = count != 0; in svga_get_query_result()
1121 (struct pipe_query_data_so_statistics *)vresult; in svga_get_query_result()
1174 vresult->u64 = sq->end_count - sq->begin_count; in svga_get_query_result()
1178 vresult->u64 = svgascreen->hud.total_resource_bytes; in svga_get_query_result()
1181 vresult->u64 = svga->hud.num_shaders; in svga_get_query_result()
1184 vresult->u64 = svgascreen->hud.num_resources; in svga_get_query_result()
1187 vresult->u64 = (svga->hud.num_blend_objects + in svga_get_query_result()
[all …]
/external/mesa3d/src/gallium/drivers/vc4/
Dvc4_query.c67 boolean wait, union pipe_query_result *vresult) in vc4_get_query_result() argument
69 uint64_t *result = &vresult->u64; in vc4_get_query_result()
/external/mesa3d/src/gallium/drivers/i915/
Di915_query.c71 union pipe_query_result *vresult) in i915_get_query_result() argument
73 uint64_t *result = (uint64_t*)vresult; in i915_get_query_result()
/external/googletest/googlemock/test/
Dgmock-actions_test.cc1273 std::vector<std::unique_ptr<int>> vresult = mock.MakeVectorUnique(); in TEST() local
1274 EXPECT_EQ(1u, vresult.size()); in TEST()
1275 EXPECT_NE(nullptr, vresult[0]); in TEST()
1276 EXPECT_EQ(7, *vresult[0]); in TEST()
1313 std::vector<std::unique_ptr<int>> vresult = mock.MakeVectorUnique(); in TEST() local
1314 EXPECT_EQ(1u, vresult.size()); in TEST()
1315 EXPECT_NE(nullptr, vresult[0]); in TEST()
1316 EXPECT_EQ(7, *vresult[0]); in TEST()
/external/mesa3d/src/gallium/drivers/noop/
Dnoop_pipe.c75 union pipe_query_result *vresult) in noop_get_query_result() argument
77 uint64_t *result = (uint64_t*)vresult; in noop_get_query_result()