Searched refs:v0 (Results 1 - 25 of 604) sorted by path

1234567891011>>

/external/bluetooth/bluedroid/embdrv/sbc/decoder/srce/
H A Dsynthesis-dct8.c65 OI_UINT32 u0, v0; local
69 v0 = v & 0xFFFF; v1 = v >> 16;
70 t = u0*v0;
71 t = u1*v0 + ((OI_UINT32)t >> 16);
H A Dsynthesis-sbc.c218 OI_UINT16 v0; local
223 v0 = (OI_UINT16)(v & 0xffff);
227 x = u * v0;
/external/ceres-solver/internal/ceres/
H A Djet_test.cc52 J MakeJet(double a, double v0, double v1) { argument
55 z.v[0] = v0;
H A Drotation_test.cc656 J3 MakeJ3(double a, double v0, double v1, double v2) { argument
659 j.v[0] = v0;
665 J4 MakeJ4(double a, double v0, double v1, double v2, double v3) { argument
668 j.v[0] = v0;
/external/chromium-trace/trace-viewer/src/ui/
H A Dquad_view.js26 u0, v0, u1, v1, u2, v2) {
40 v1 -= v0;
42 v2 -= v0;
53 e = x0 - a * u0 - c * v0,
54 f = y0 - b * u0 - d * v0;
/external/chromium-trace/trace-viewer/third_party/gl-matrix/dist/
H A Dgl-matrix.js1775 v0 = v[0], v1 = v[1];
1776 out[0] = a0 * v0;
1778 out[2] = a2 * v0;
/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/cc/output/
H A Dgeometry_binding.cc23 Vertex v0, v1, v2, v3; member in struct:cc::Quad
38 Vertex v0 = {{quad_vertex_rect.x(), quad_vertex_rect.bottom(), 0.0f, }, local
46 Quad x = {v0, v1, v2, v3};
/external/chromium_org/chrome/installer/util/
H A Dcompat_checks.cc29 bool ParseSEPVersion(const std::wstring& version, int* v0, int* v1, int* v2) { argument
34 if (!base::StringToInt(v[0], v0))
44 bool IsBadSEPVersion(int v0, int v1, int v2) { argument
45 if (v0 < 11)
57 int v0, v1, v2; local
59 if (!ParseSEPVersion(ver_str, &v0, &v1, &v2))
61 return IsBadSEPVersion(v0, v1, v2);
/external/chromium_org/gpu/command_buffer/service/
H A Dgles2_cmd_decoder.cc1432 void DoUniform1i(GLint fake_location, GLint v0);
1459 void DoVertexAttrib1f(GLuint index, GLfloat v0);
1460 void DoVertexAttrib2f(GLuint index, GLfloat v0, GLfloat v1);
1461 void DoVertexAttrib3f(GLuint index, GLfloat v0, GLfloat v1, GLfloat v2);
1463 GLuint index, GLfloat v0, GLfloat v1, GLfloat v2, GLfloat v3);
5911 void GLES2DecoderImpl::DoUniform1i(GLint fake_location, GLint v0) { argument
5924 state_.texture_units.size(), fake_location, 1, &v0)) {
5929 glUniform1i(real_location, v0);
7247 void GLES2DecoderImpl::DoVertexAttrib1f(GLuint index, GLfloat v0) { argument
7248 GLfloat v[4] = { v0, 0.
7254 DoVertexAttrib2f(GLuint index, GLfloat v0, GLfloat v1) argument
7261 DoVertexAttrib3f( GLuint index, GLfloat v0, GLfloat v1, GLfloat v2) argument
7269 DoVertexAttrib4f( GLuint index, GLfloat v0, GLfloat v1, GLfloat v2, GLfloat v3) argument
[all...]
/external/chromium_org/media/base/simd/
H A Dconvert_yuv_to_rgb_c.cc197 int v0 = v_buf[(x >> 17)]; local
203 int v = (uv_frac * v1 + (uv_frac ^ 65535) * v0) >> 16;
/external/chromium_org/sdch/open-vcdiff/
H A DMakefile.am230 dist_noinst_DATA = testdata/configure.ac.v0.1 \
231 testdata/configure.ac.v0.2 \
/external/chromium_org/sdch/open-vcdiff/src/
H A Dvcdiff_test.sh32 DICTIONARY_FILE=$srcdir/testdata/configure.ac.v0.1
33 TARGET_FILE=$srcdir/testdata/configure.ac.v0.2
/external/chromium_org/sdch/open-vcdiff/vsprojects/
H A Dvcdiff_test.bat37 set DICTIONARY_FILE=%TESTDATA_DIR%\configure.ac.v0.1
38 set TARGET_FILE=%TESTDATA_DIR%\configure.ac.v0.2
/external/chromium_org/third_party/WebKit/Source/core/html/canvas/
H A DWebGLRenderingContextBase.cpp4113 void WebGLRenderingContextBase::vertexAttrib1f(GLuint index, GLfloat v0) argument
4115 vertexAttribfImpl("vertexAttrib1f", index, 1, v0, 0.0f, 0.0f, 1.0f);
4128 void WebGLRenderingContextBase::vertexAttrib2f(GLuint index, GLfloat v0, GLfloat v1) argument
4130 vertexAttribfImpl("vertexAttrib2f", index, 2, v0, v1, 0.0f, 1.0f);
4143 void WebGLRenderingContextBase::vertexAttrib3f(GLuint index, GLfloat v0, GLfloat v1, GLfloat v2) argument
4145 vertexAttribfImpl("vertexAttrib3f", index, 3, v0, v1, v2, 1.0f);
4158 void WebGLRenderingContextBase::vertexAttrib4f(GLuint index, GLfloat v0, GLfloat v1, GLfloat v2, GLfloat v3) argument
4160 vertexAttribfImpl("vertexAttrib4f", index, 4, v0, v1, v2, v3);
5417 void WebGLRenderingContextBase::vertexAttribfImpl(const char* functionName, GLuint index, GLsizei expectedSize, GLfloat v0, GLfloat v1, GLfloat v2, GLfloat v3) argument
5428 webContext()->vertexAttrib1f(index, v0);
[all...]
/external/chromium_org/third_party/WebKit/Source/devtools/scripts/closure/
H A Dcompiler.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/javascript/ com/google/javascript/jscomp/ ...
/external/chromium_org/third_party/WebKit/Source/platform/geometry/
H A DFloatQuad.cpp62 FloatSize v0 = t3 - t1; local
67 float dot00 = dot(v0, v0);
68 float dot01 = dot(v0, v1);
69 float dot02 = dot(v0, v2);
/external/chromium_org/third_party/angle/include/GLES3/
H A Dgl3.h1000 GL_APICALL void GL_APIENTRY glUniform1ui (GLint location, GLuint v0);
1001 GL_APICALL void GL_APIENTRY glUniform2ui (GLint location, GLuint v0, GLuint v1);
1002 GL_APICALL void GL_APIENTRY glUniform3ui (GLint location, GLuint v0, GLuint v1, GLuint v2);
1003 GL_APICALL void GL_APIENTRY glUniform4ui (GLint location, GLuint v0, GLuint v1, GLuint v2, GLuint v3);
/external/chromium_org/third_party/angle/src/libGLESv2/
H A DlibGLESv2.cpp6525 void __stdcall glUniform1ui(GLint location, GLuint v0) argument
6527 glUniform1uiv(location, 1, &v0);
6530 void __stdcall glUniform2ui(GLint location, GLuint v0, GLuint v1) argument
6532 const GLuint xy[] = { v0, v1 };
6536 void __stdcall glUniform3ui(GLint location, GLuint v0, GLuint v1, GLuint v2) argument
6538 const GLuint xyz[] = { v0, v1, v2 };
6542 void __stdcall glUniform4ui(GLint location, GLuint v0, GLuint v1, GLuint v2, GLuint v3) argument
6544 const GLuint xyzw[] = { v0, v1, v2, v3 };
/external/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d/d3d11/shaders/compiled/
H A Dbuffertotexture11_vs.h49 dcl_input_sgv v0.x, vertex_id
56 udiv r0.z, null, v0.x, r0.x
57 imad r0.x, -r0.z, r0.x, v0.x
H A Dclearfloat11vs.h24 dcl_input v0.xyz
28 mov o0.xyz, v0.xyzx
H A Dclearsint11vs.h24 dcl_input v0.xyz
28 mov o0.xyz, v0.xyzx
H A Dclearuint11vs.h24 dcl_input v0.xyz
28 mov o0.xyz, v0.xyzx
H A Dpassthrough2d11vs.h24 dcl_input v0.xy
28 mov o0.xy, v0.xyxx
H A Dpassthrough3d11vs.h26 dcl_input v0.xy
32 mov o0.xy, v0.xyxx

Completed in 561 milliseconds

1234567891011>>