Home
last modified time | relevance | path

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

/external/marisa-trie/bindings/ruby/
Dmarisa-swig_wrap.cxx2126 VALUE vresult = Qnil; in _wrap_Key_str() local
2147 vresult = SWIG_Ruby_AppendOutput(vresult, SWIG_FromCharPtrAndSize(*arg2,*arg3)); in _wrap_Key_str()
2150 return vresult; in _wrap_Key_str()
2162 VALUE vresult = Qnil; in _wrap_Key_id() local
2181 vresult = SWIG_From_size_t(static_cast< size_t >(result)); in _wrap_Key_id()
2182 return vresult; in _wrap_Key_id()
2194 VALUE vresult = Qnil; in _wrap_Key_weight() local
2213 vresult = SWIG_From_float(static_cast< float >(result)); in _wrap_Key_weight()
2214 return vresult; in _wrap_Key_weight()
2236 VALUE vresult = Qnil; in _wrap_Query_str() local
[all …]
/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.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()
/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/llvm-project/clang/lib/Headers/ppc_wrappers/
Dmmintrin.h153 __vector signed char vresult; in _mm_packs_pi16() local
161 vresult = vec_packs(vm1, vm1); in _mm_packs_pi16()
162 return (__m64)((__vector long long)vresult)[0]; in _mm_packs_pi16()
178 __vector signed short vresult; in _mm_packs_pi32() local
186 vresult = vec_packs(vm1, vm1); in _mm_packs_pi32()
187 return (__m64)((__vector long long)vresult)[0]; in _mm_packs_pi32()
/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()