Searched refs:v0 (Results 276 - 300 of 604) sorted by relevance

<<11121314151617181920>>

/external/chromium_org/v8/src/mips/
H A Dcode-stubs-mips.cc277 WriteInt32ToHeapNumberStub stub1(isolate, a1, v0, a2, a3);
278 WriteInt32ToHeapNumberStub stub2(isolate, a2, v0, a3, a0);
373 __ li(v0, Operand(GREATER));
376 __ li(v0, Operand(LESS));
386 __ li(v0, Operand(GREATER)); // Things aren't less than themselves.
388 __ li(v0, Operand(LESS)); // Things aren't greater than themselves.
390 __ mov(v0, zero_reg); // Things are <=, >=, ==, === themselves.
414 __ Or(v0, t3, Operand(t2));
415 // For equal we already have the right value in v0: Return zero (equal)
417 // not (it's a NaN). For <= and >= we need to load v0 wit
[all...]
/external/chromium_org/v8/src/mips64/
H A Dcode-stubs-mips64.cc273 WriteInt32ToHeapNumberStub stub1(isolate, a1, v0, a2, a3);
274 WriteInt32ToHeapNumberStub stub2(isolate, a2, v0, a3, a0);
369 __ li(v0, Operand(GREATER));
372 __ li(v0, Operand(LESS));
382 __ li(v0, Operand(GREATER)); // Things aren't less than themselves.
384 __ li(v0, Operand(LESS)); // Things aren't greater than themselves.
386 __ mov(v0, zero_reg); // Things are <=, >=, ==, === themselves.
409 __ Or(v0, a7, Operand(a6));
410 // For equal we already have the right value in v0: Return zero (equal)
412 // not (it's a NaN). For <= and >= we need to load v0 wit
[all...]
/external/chromium-trace/trace-viewer/third_party/gl-matrix/src/gl-matrix/
H A Dmat2.js217 v0 = v[0], v1 = v[1];
218 out[0] = a0 * v0;
220 out[2] = a2 * v0;
/external/chromium_org/third_party/mesa/src/src/mesa/swrast/
H A Dswrast.h186 _swrast_Line( struct gl_context *ctx, const SWvertex *v0, const SWvertex *v1 );
189 _swrast_Triangle( struct gl_context *ctx, const SWvertex *v0,
194 const SWvertex *v0, const SWvertex *v1,
H A Ds_context.c349 const SWvertex *v0,
365 swrast->Triangle( ctx, v0, v1, v2 );
373 _swrast_validate_line( struct gl_context *ctx, const SWvertex *v0, const SWvertex *v1 ) argument
386 swrast->Line( ctx, v0, v1 );
394 _swrast_validate_point( struct gl_context *ctx, const SWvertex *v0 )
406 swrast->Point( ctx, v0 );
608 const SWvertex *v0, const SWvertex *v1,
613 _swrast_print_vertex( ctx, v0 );
618 SWRAST_CONTEXT(ctx)->Triangle( ctx, v0, v1, v3 );
623 _swrast_Triangle( struct gl_context *ctx, const SWvertex *v0, argument
348 _swrast_validate_triangle( struct gl_context *ctx, const SWvertex *v0, const SWvertex *v1, const SWvertex *v2 ) argument
607 _swrast_Quad( struct gl_context *ctx, const SWvertex *v0, const SWvertex *v1, const SWvertex *v2, const SWvertex *v3 ) argument
636 _swrast_Line( struct gl_context *ctx, const SWvertex *v0, const SWvertex *v1 ) argument
[all...]
/external/deqp/framework/referencerenderer/
H A DrrRasterizer.hpp132 void init (const tcu::Vec4& v0, const tcu::Vec4& v1, const tcu::Vec4& v2);
182 void init (const tcu::Vec4& v0, const tcu::Vec4& v1, float lineWidth);
223 void init (const tcu::Vec4& v0, const tcu::Vec4& v1, float lineWidth);
/external/mesa3d/src/mesa/swrast/
H A Dswrast.h186 _swrast_Line( struct gl_context *ctx, const SWvertex *v0, const SWvertex *v1 );
189 _swrast_Triangle( struct gl_context *ctx, const SWvertex *v0,
194 const SWvertex *v0, const SWvertex *v1,
H A Ds_context.c349 const SWvertex *v0,
365 swrast->Triangle( ctx, v0, v1, v2 );
373 _swrast_validate_line( struct gl_context *ctx, const SWvertex *v0, const SWvertex *v1 ) argument
386 swrast->Line( ctx, v0, v1 );
394 _swrast_validate_point( struct gl_context *ctx, const SWvertex *v0 )
406 swrast->Point( ctx, v0 );
608 const SWvertex *v0, const SWvertex *v1,
613 _swrast_print_vertex( ctx, v0 );
618 SWRAST_CONTEXT(ctx)->Triangle( ctx, v0, v1, v3 );
623 _swrast_Triangle( struct gl_context *ctx, const SWvertex *v0, argument
348 _swrast_validate_triangle( struct gl_context *ctx, const SWvertex *v0, const SWvertex *v1, const SWvertex *v2 ) argument
607 _swrast_Quad( struct gl_context *ctx, const SWvertex *v0, const SWvertex *v1, const SWvertex *v2, const SWvertex *v3 ) argument
636 _swrast_Line( struct gl_context *ctx, const SWvertex *v0, const SWvertex *v1 ) argument
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/draw/
H A Ddraw_pipe.c112 * Build primitive to render a point with vertex at v0.
115 const char *v0 )
121 prim.v[0] = (struct vertex_header *)v0;
128 * Build primitive to render a line with vertices at v0, v1.
133 const char *v0,
140 prim.v[0] = (struct vertex_header *)v0;
148 * Build primitive to render a triangle with vertices at v0, v1, v2.
153 char *v0,
159 prim.v[0] = (struct vertex_header *)v0;
131 do_line( struct draw_context *draw, ushort flags, const char *v0, const char *v1 ) argument
151 do_triangle( struct draw_context *draw, ushort flags, char *v0, char *v1, char *v2 ) argument
/external/mesa3d/src/gallium/auxiliary/draw/
H A Ddraw_pipe.c112 * Build primitive to render a point with vertex at v0.
115 const char *v0 )
121 prim.v[0] = (struct vertex_header *)v0;
128 * Build primitive to render a line with vertices at v0, v1.
133 const char *v0,
140 prim.v[0] = (struct vertex_header *)v0;
148 * Build primitive to render a triangle with vertices at v0, v1, v2.
153 char *v0,
159 prim.v[0] = (struct vertex_header *)v0;
131 do_line( struct draw_context *draw, ushort flags, const char *v0, const char *v1 ) argument
151 do_triangle( struct draw_context *draw, ushort flags, char *v0, char *v1, char *v2 ) argument
/external/chromium_org/third_party/skia/src/gpu/gl/
H A DGrGLNoOpInterface.h190 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLUniform1f(GrGLint location, GrGLfloat v0);
192 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLUniform1i(GrGLint location, GrGLint v0);
203 GrGLfloat v0,
206 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLUniform2i(GrGLint location, GrGLint v0, GrGLint v1);
217 GrGLfloat v0,
222 GrGLint v0,
235 GrGLfloat v0,
241 GrGLint v0,
/external/chromium_org/third_party/tcmalloc/chromium/src/
H A Dfree_list.h61 template <typename T> inline void FL_EqualityCheck(const T& v0, argument
65 if (v0 != v1) Log(kCrash, file, line, "Memory corruption detected.");
/external/chromium_org/ui/gfx/geometry/
H A Dvector2d_unittest.cc163 int v0 = int_values[i][0]; local
166 static_cast<double>(v0) * v0 + static_cast<double>(v1) * v1;
168 Vector2d vector(v0, v1);
187 double v0 = float_values[i][0]; local
190 static_cast<double>(v0) * v0 + static_cast<double>(v1) * v1;
192 Vector2dF vector(v0, v1);
/external/clang/test/SemaCXX/
H A Dcaptured-statements.cpp67 void set(const T &v0) { argument
70 v = v0;
/external/clang/test/SemaTemplate/
H A Dexplicit-instantiation.cpp7 int v0; // expected-note{{refers here}} variable
8 template int v0; // expected-error{{does not refer}} variable
/external/libhevc/common/arm64/
H A Dihevc_intra_pred_luma_planar.s128 dup v0.8b,w7 //src[nt-1]
184 umlal v27.8h, v5.8b, v0.8b //(1)(row+1) * src[nt-1]
201 umlal v30.8h, v5.8b, v0.8b //(2)
215 umlal v28.8h, v5.8b, v0.8b //(3)
232 umlal v25.8h, v5.8b, v0.8b //(4)
249 umlal v16.8h, v5.8b, v0.8b //(5)
265 umlal v18.8h, v5.8b, v0.8b //(6)
282 umlal v26.8h, v5.8b, v0.8b //(7)
299 umlal v24.8h, v5.8b, v0.8b //(8)
351 umlal v27.8h, v5.8b, v0
[all...]
H A Dihevc_intra_pred_luma_dc.s153 ld1 {v0.8b},[x6],#8 //load from src[nt]
157 uaddlp v2.4h, v0.8b
163 ld1 {v0.8b},[x6],#8 //load from src[nt] (extra load for 8)
178 uaddlp v2.4h, v0.8b
185 ld1 {v0.8b},[x6],#8 //load from src[nt] (extra load for 16)
231 ld1 {v0.8b},[x8],#8 //col 1::7 load (prol)
237 uxtl v20.8h, v0.8b
427 ld1 {v0.8b},[x6],#8 //load from src[nt]
430 uaddlp v2.4h, v0.8b
468 ld1 {v0
[all...]
/external/llvm/test/MC/AArch64/
H A Dneon-scalar-by-elem-saturating-mul.s27 sqdmulh h0, h1, v0.h[0]
33 // CHECK: sqdmulh h0, h1, v0.h[0] // encoding: [0x20,0xc0,0x40,0x5f]
/external/llvm/test/MC/Mips/mips1/
H A Dinvalid-mips2-wrong-error.s12 ll $v0,-7321($s2) # CHECK: :[[@LINE]]:{{[0-9]+}}: error: invalid operand for instruction
/external/qemu/android/base/
H A DString_unittest.cpp133 StringView v0("What a beautiful world");
135 s = v0;
136 EXPECT_EQ(v0.size(), s.size());
137 EXPECT_STREQ(v0.str(), s.c_str());
188 StringView v0("Input string view");
190 s.assign(v0);
191 EXPECT_EQ(v0.size(), s.size());
192 EXPECT_STREQ(v0.str(), s.c_str());
/external/skia/src/gpu/gl/
H A DGrGLNoOpInterface.h190 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLUniform1f(GrGLint location, GrGLfloat v0);
192 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLUniform1i(GrGLint location, GrGLint v0);
203 GrGLfloat v0,
206 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLUniform2i(GrGLint location, GrGLint v0, GrGLint v1);
217 GrGLfloat v0,
222 GrGLint v0,
235 GrGLfloat v0,
241 GrGLint v0,
/external/valgrind/main/coregrind/
H A Dpub_core_syscall.h85 extern SysRes VG_(mk_SysRes_mips32_linux)( UWord v0, UWord v1,
87 extern SysRes VG_(mk_SysRes_mips64_linux)( ULong v0, ULong v1,
/external/chromium_org/third_party/libvpx/source/libvpx/vp8/common/ppc/
H A Dloopfilter_filters_altivec.asm116 Tpair v16,v17, v0,v8
127 Tpair v0,v1, v16,v24
150 ;# v0 = 0 1 ... 14 15
166 ;# v0 = 0 16 32 48 4 20 36 52 8 24 40 56 12 28 44 60
178 ;# It acts in place on registers v0...v3, uses v4...v7 as temporaries,
187 vmrghb v4, v0, v1
188 vmrglb v5, v0, v1
194 vmrghh v0, v4, v6
201 vmrghw v4, v0, v1
202 vmrglw v5, v0, v
[all...]
/external/libvpx/libvpx/vp8/common/ppc/
H A Dloopfilter_filters_altivec.asm116 Tpair v16,v17, v0,v8
127 Tpair v0,v1, v16,v24
150 ;# v0 = 0 1 ... 14 15
166 ;# v0 = 0 16 32 48 4 20 36 52 8 24 40 56 12 28 44 60
178 ;# It acts in place on registers v0...v3, uses v4...v7 as temporaries,
187 vmrghb v4, v0, v1
188 vmrglb v5, v0, v1
194 vmrghh v0, v4, v6
201 vmrghw v4, v0, v1
202 vmrglw v5, v0, v
[all...]
/external/opencv/cxcore/src/
H A Dcxdxt.cpp558 CvComplex64f* v0;
562 v0 = dst + i;
563 v1 = v0 + nx*2;
565 r2 = v0[0].re; i2 = v0[0].im;
566 r1 = v0[nx].re; i1 = v0[nx].im;
577 v0[0].re = r0 + r1; v0[0].im = i0 + i1;
579 v0[n
[all...]

Completed in 1617 milliseconds

<<11121314151617181920>>