Home
last modified time | relevance | path

Searched defs:v0 (Results 1 – 25 of 221) sorted by relevance

123456789

/external/guava/guava-testlib/src/com/google/common/collect/testing/google/
DBiMapPutTester.java39 V v0 = samples.e0.getValue(); in testPutWithSameValueFails() local
56 V v0 = samples.e0.getValue(); in testPutPresentKeyDifferentValue() local
80 V v0 = samples.e0.getValue(); in testForcePutOverwritesOldValueEntry() local
92 V v0 = samples.e0.getValue(); in testInversePut() local
DListMultimapRemoveTester.java45 V v0 = sampleValues().e0; in testMultimapRemoveDeletesFirstOccurrence() local
59 V v0 = sampleValues().e0; in testRemoveAtIndexFromGetPropagates() local
79 V v0 = sampleValues().e0; in testRemoveAtIndexFromAsMapPropagates() local
100 V v0 = sampleValues().e0; in testRemoveAtIndexFromAsMapEntrySetPropagates() local
DSetMultimapReplaceValuesTester.java38 V v0 = sampleValues().e3; in testReplaceValuesHandlesDuplicates() local
DSetMultimapPutAllTester.java39 V v0 = sampleValues().e3; in testPutAllHandlesDuplicates() local
/external/mesa3d/src/mesa/swrast/
Ds_feedback.c55 _swrast_feedback_triangle(struct gl_context *ctx, const SWvertex *v0, in _swrast_feedback_triangle()
77 _swrast_feedback_line(struct gl_context *ctx, const SWvertex *v0, in _swrast_feedback_line()
110 _swrast_select_triangle(struct gl_context *ctx, const SWvertex *v0, in _swrast_select_triangle()
124 _swrast_select_line(struct gl_context *ctx, const SWvertex *v0, const SWvertex *v1) in _swrast_select_line()
Ds_context.c346 const SWvertex *v0, in _swrast_validate_triangle()
370 _swrast_validate_line( struct gl_context *ctx, const SWvertex *v0, const SWvertex *v1 ) in _swrast_validate_line()
391 _swrast_validate_point( struct gl_context *ctx, const SWvertex *v0 ) in _swrast_validate_point()
606 const SWvertex *v0, const SWvertex *v1, in _swrast_Quad()
621 _swrast_Triangle( struct gl_context *ctx, const SWvertex *v0, in _swrast_Triangle()
634 _swrast_Line( struct gl_context *ctx, const SWvertex *v0, const SWvertex *v1 ) in _swrast_Line()
645 _swrast_Point( struct gl_context *ctx, const SWvertex *v0 ) in _swrast_Point()
/external/libvpx/libvpx/vpx_dsp/arm/
Dmem_neon.h25 const int32x4x2_t v0 = vld2q_s32(buf); in load_tran_low_to_s16x2q() local
42 const int32x4_t v0 = vld1q_s32(buf); in load_tran_low_to_s16q() local
54 const int32x4_t v0 = vld1q_s32(buf); in load_tran_low_to_s16d() local
63 const int32x4_t v0 = vmovl_s16(vget_low_s16(a)); in store_s16q_to_tran_low() local
/external/clang/test/CXX/temp/temp.spec/temp.expl.spec/
Dp2-0x.cpp97 template<typename T> int v0; // expected-note +{{here}} variable
111 template<> int N0::v0<int[1]>; member in N0
112 template<> int v0<int[2]>; // FIXME: ill-formed variable
116 template<> int N0::v0<char[1]>; member in N0
117 template<> int v0<char[2]>; // FIXME: ill-formed variable
122 template<> int N0::v0<int[5]>; // expected-error {{must originally be declared in namespace 'N0'}} … member in N1::N0
123 template<> int v0<int[6]>; // expected-error {{must originally be declared in namespace 'N0'}} variable
127 template<> int N0::v0<char[5]>; // expected-error {{does not enclose namespace 'N0'}} member in N1::N0
128 template<> int v0<char[6]>; // FIXME: ill-formed variable
/external/skia/tests/
DInsetConvexPolyTest.cpp15 SkVector v0 = poly[0] - poly[poly.count() - 1]; in is_convex() local
23 SkVector v0 = poly[j] - poly[i]; in is_convex() local
DVerticesTest.cpp11 static bool equal(const SkVertices* v0, const SkVertices* v1) { in equal()
78 sk_sp<SkVertices> v0 = builder.detach(); in DEF_TEST() local
/external/mesa3d/src/gallium/auxiliary/indices/
Du_indices_gen.py116 def vert( intype, outtype, v0 ): argument
122 def point( intype, outtype, ptr, v0 ): argument
125 def line( intype, outtype, ptr, v0, v1 ): argument
129 def tri( intype, outtype, ptr, v0, v1, v2 ): argument
134 def lineadj( intype, outtype, ptr, v0, v1, v2, v3 ): argument
140 def triadj( intype, outtype, ptr, v0, v1, v2, v3, v4, v5 ): argument
148 def do_point( intype, outtype, ptr, v0 ): argument
151 def do_line( intype, outtype, ptr, v0, v1, inpv, outpv ): argument
157 def do_tri( intype, outtype, ptr, v0, v1, v2, inpv, outpv ): argument
166 def do_quad( intype, outtype, ptr, v0, v1, v2, v3, inpv, outpv ): argument
[all …]
Du_unfilled_gen.py99 def vert( intype, outtype, v0 ): argument
105 def line( intype, outtype, ptr, v0, v1 ): argument
113 def do_tri( intype, outtype, ptr, v0, v1, v2 ): argument
118 def do_quad( intype, outtype, ptr, v0, v1, v2, v3 ): argument
/external/mesa3d/src/mesa/drivers/dri/i915/
Dintel_tris.c368 intelVertexPtr v0, in intel_draw_quad()
397 intelVertexPtr v0, intelVertexPtr v1, intelVertexPtr v2) in intel_draw_triangle()
411 intelVertexPtr v0, intelVertexPtr v1) in intel_draw_line()
423 intel_draw_point(struct intel_context *intel, intelVertexPtr v0) in intel_draw_point()
442 intel_atten_point(struct intel_context *intel, intelVertexPtr v0) in intel_atten_point()
511 intelVertexPtr v0, intelVertexPtr v1, intelVertexPtr v2) in intel_wpos_triangle()
523 intelVertexPtr v0, intelVertexPtr v1) in intel_wpos_line()
532 intel_wpos_point(struct intel_context *intel, intelVertexPtr v0) in intel_wpos_point()
564 #define LINE( v0, v1 ) \ argument
572 #define POINT( v0 ) \ argument
[all …]
/external/mesa3d/src/mesa/main/
Duniforms.c150 _mesa_Uniform1f(GLint location, GLfloat v0) in _mesa_Uniform1f()
157 _mesa_Uniform2f(GLint location, GLfloat v0, GLfloat v1) in _mesa_Uniform2f()
167 _mesa_Uniform3f(GLint location, GLfloat v0, GLfloat v1, GLfloat v2) in _mesa_Uniform3f()
178 _mesa_Uniform4f(GLint location, GLfloat v0, GLfloat v1, GLfloat v2, in _mesa_Uniform4f()
191 _mesa_Uniform1i(GLint location, GLint v0) in _mesa_Uniform1i()
198 _mesa_Uniform2i(GLint location, GLint v0, GLint v1) in _mesa_Uniform2i()
208 _mesa_Uniform3i(GLint location, GLint v0, GLint v1, GLint v2) in _mesa_Uniform3i()
219 _mesa_Uniform4i(GLint location, GLint v0, GLint v1, GLint v2, GLint v3) in _mesa_Uniform4i()
288 _mesa_ProgramUniform1f(GLuint program, GLint location, GLfloat v0) in _mesa_ProgramUniform1f()
298 _mesa_ProgramUniform2f(GLuint program, GLint location, GLfloat v0, GLfloat v1) in _mesa_ProgramUniform2f()
[all …]
/external/mesa3d/src/gallium/auxiliary/draw/
Ddraw_pipe_unfilled.c91 struct vertex_header *v0) in point()
102 struct vertex_header *v0, in line()
117 struct vertex_header *v0 = header->v[0]; in points() local
135 struct vertex_header *v0 = header->v[0]; in lines() local
/external/webrtc/webrtc/modules/desktop_capture/
Ddiffer_block_sse2.cc28 __m128i v0; in BlockDifference_SSE2_W16() local
68 __m128i v0; in BlockDifference_SSE2_W32() local
/external/clang/test/Sema/
D2010-05-31-palignr.c16 vSInt16 v0; in main() local
/external/skia/src/utils/
DSkInsetConvexPolygon.cpp21 SkVector v0 = s1 - s0; in compute_side() local
99 SkVector v0 = s0.fP1 - s0.fP0; in compute_intersection() local
145 SkVector v0 = poly[0] - poly[poly.count() - 1]; in is_convex() local
153 SkVector v0 = poly[j] - poly[i]; in is_convex() local
/external/eigen/test/
Dgeo_orthomethods.cpp27 Vector3 v0 = Vector3::Random(), in orthomethods_3() local
88 VectorType v0 = VectorType::Random(size); in orthomethods() local
/external/mesa3d/src/mesa/drivers/dri/i965/
Dbrw_clip_unfilled.c55 struct brw_reg v0 = byte_offset(c->reg.vertex[0], hpos_offset); in compute_tri_direction() local
291 struct brw_indirect v0 = brw_indirect(0, 0); in emit_lines() local
362 struct brw_indirect v0 = brw_indirect(0, 0); in emit_points() local
/external/mesa3d/src/mesa/swrast_setup/
Dss_triangle.c68 const SWvertex *v0, in _swsetup_edge_render_line_tri()
94 const SWvertex *v0, in _swsetup_edge_render_point_tri()
119 SWvertex *v0 = &verts[e0]; in _swsetup_render_tri() local
231 static void swsetup_line( struct gl_context *ctx, GLuint v0, GLuint v1 ) in swsetup_line()
/external/vulkan-validation-layers/libs/glm/gtx/
Dvector_query.inl92 vecType<T, P> const & v0,
105 vecType<T, P> const & v0,
194 vecType<T, P> const & v0,
/external/eigen/doc/snippets/
DHouseholderSequence_HouseholderSequence.cpp5 Vector3d v0(1, v(1,0), v(2,0)); variable
/external/clang/test/CodeGen/
Dhexagon-inline-asm.c8 void foo(v64 v0, v64 v1, v64 *p) { in foo()
/external/mdnsresponder/Clients/
DClientCommon.c57 int v0 = cstr[-1] - '0'; // then interpret as three-digit decimal in GetNextLabel() local

123456789