Home
last modified time | relevance | path

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

/external/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(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()
/external/mesa3d/src/gallium/drivers/softpipe/
Dsp_query.c222 union pipe_query_result *vresult) in softpipe_get_query_result() argument
225 uint64_t *result = (uint64_t*)vresult; in softpipe_get_query_result()
230 (struct pipe_query_data_so_statistics *)vresult; in softpipe_get_query_result()
236 memcpy(vresult, &sq->stats, in softpipe_get_query_result()
240 vresult->b = true; in softpipe_get_query_result()
244 vresult->b = sq->end != 0; in softpipe_get_query_result()
248 (struct pipe_query_data_timestamp_disjoint *)vresult; in softpipe_get_query_result()
262 vresult->b = sq->end - sq->start != 0; in softpipe_get_query_result()
/external/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()
144 (struct pipe_query_data_timestamp_disjoint *)vresult; in llvmpipe_get_query_result()
151 vresult->b = true; in llvmpipe_get_query_result()
160 vresult->b = false; in llvmpipe_get_query_result()
162 vresult->b |= pq->num_primitives_generated[s] > pq->num_primitives_written[s]; in llvmpipe_get_query_result()
165 vresult->b = pq->num_primitives_generated[0] > pq->num_primitives_written[0]; in llvmpipe_get_query_result()
169 (struct pipe_query_data_so_statistics *)vresult; in llvmpipe_get_query_result()
176 (struct pipe_query_data_pipeline_statistics *)vresult; in llvmpipe_get_query_result()
/external/mesa3d/src/gallium/drivers/v3d/
Dv3d_query.c149 bool wait, union pipe_query_result *vresult) in v3d_get_query_result() argument
175 vresult->u64 = result; in v3d_get_query_result()
179 vresult->b = result != 0; in v3d_get_query_result()
183 vresult->u64 = q->end - q->start; in v3d_get_query_result()
/external/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 …]
/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/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()
/external/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()
/external/googletest/googlemock/test/
Dgmock-actions_test.cc1319 std::vector<std::unique_ptr<int>> vresult = mock.MakeVectorUnique(); in TEST() local
1320 EXPECT_EQ(1u, vresult.size()); in TEST()
1321 EXPECT_NE(nullptr, vresult[0]); in TEST()
1322 EXPECT_EQ(7, *vresult[0]); in TEST()
1359 std::vector<std::unique_ptr<int>> vresult = mock.MakeVectorUnique(); in TEST() local
1360 EXPECT_EQ(1u, vresult.size()); in TEST()
1361 EXPECT_NE(nullptr, vresult[0]); in TEST()
1362 EXPECT_EQ(7, *vresult[0]); in TEST()
/external/mesa3d/src/gallium/auxiliary/driver_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()
/external/mesa3d/src/gallium/drivers/panfrost/
Dpan_context.c1405 union pipe_query_result *vresult) in panfrost_get_query_result() argument
1429 vresult->u64 = passed; in panfrost_get_query_result()
1431 vresult->b = !!result[0]; in panfrost_get_query_result()
1439 vresult->u64 = query->end - query->start; in panfrost_get_query_result()