Searched defs:v2 (Results 1 - 25 of 507) sorted by path

1234567891011>>

/external/aac/libAACenc/src/
H A Dpsy_configuration.cpp13 AAC's HE-AAC and HE-AAC v2 versions are regarded as today's most efficient general perceptual
450 FIXP_DBL v1, v2, cur_bark; local
452 v2 = FDKaacEnc_BarcLineValue(numLines, pbOffset[i+1], samplingFrequency);
453 cur_bark = (v1 >> 1) + (v2 >> 1);
/external/antlr/antlr-3.4/lib/
H A Dantlr-3.4-complete.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/antlr/ org/antlr/analysis/ org/antlr/codegen/ org/ ...
/external/apache-xml/src/main/java/org/apache/xalan/processor/
H A DXSLTAttributeDef.java115 * @param v2 An integer representation of k2.
118 boolean prefixedQNameValAllowed, int errorType, String k1, int v1, String k2, int v2)
130 m_enums.put(k2, v2);
146 * @param v2 An integer representation of k2.
151 boolean prefixedQNameValAllowed, int errorType, String k1, int v1, String k2, int v2, String k3, int v3)
163 m_enums.put(k2, v2);
179 * @param v2 An integer representation of k2.
186 boolean prefixedQNameValAllowed, int errorType, String k1, int v1, String k2, int v2,
199 m_enums.put(k2, v2);
117 XSLTAttributeDef(String namespace, String name, boolean required, boolean supportsAVT, boolean prefixedQNameValAllowed, int errorType, String k1, int v1, String k2, int v2) argument
150 XSLTAttributeDef(String namespace, String name, boolean required, boolean supportsAVT, boolean prefixedQNameValAllowed, int errorType, String k1, int v1, String k2, int v2, String k3, int v3) argument
185 XSLTAttributeDef(String namespace, String name, boolean required, boolean supportsAVT, boolean prefixedQNameValAllowed, int errorType, String k1, int v1, String k2, int v2, String k3, int v3, String k4, int v4) argument
/external/apache-xml/src/main/java/org/apache/xml/utils/
H A DNodeVector.java242 * @param v2 Second node to add to vector
244 public final void pushPair(int v1, int v2) argument
267 m_map[m_firstFree + 1] = v2;
/external/apache-xml/src/main/java/org/apache/xpath/
H A DNodeSet.java1003 * @param v2 Second node to add to vector
1005 public final void pushPair(Node v1, Node v2) argument
1028 m_map[m_firstFree + 1] = v2;
/external/bluetooth/bluedroid/stack/smp/
H A Daes.c232 { uint_8t p1 = x, p2 = BPOLY, n1 = hibit(x), n2 = 0x80, v1 = 1, v2 = 0; local
244 v2 ^= (v1 * n2); /* shift accumulated value and */
255 v1 ^= v2 * n1;
259 return v2;
/external/ceres-solver/internal/ceres/
H A Dconditioned_cost_function_test.cc71 double v1[kTestCostFunctionSize], v2[kTestCostFunctionSize], local
77 v2[i] = i * 10;
84 // Make a cost function that computes x - v2
85 VectorRef v2_vector(v2, kTestCostFunctionSize, 1);
110 EXPECT_DOUBLE_EQ((i + 2) * (v1[i] - v2[i]) + i * 7, result[i]);
H A Drotation_test.cc656 J3 MakeJ3(double a, double v0, double v1, double v2) { argument
661 j.v[2] = v2;
665 J4 MakeJ4(double a, double v0, double v1, double v2, double v3) { argument
670 j.v[2] = v2;
/external/chromium_org/ash/display/
H A Ddisplay_pref_util.h19 T k2, const std::string& v2,
24 (*map)[k2] = v2;
32 T k2, const std::string& v2,
36 (*map)[k2] = v2;
18 CreateToStringMap(T k1, const std::string& v1, T k2, const std::string& v2, T k3, const std::string& v3, T k4, const std::string& v4) argument
31 CreateToStringMap(T k1, const std::string& v1, T k2, const std::string& v2, T k3, const std::string& v3) argument
/external/chromium_org/base/
H A Dlogging.h479 std::string* MakeCheckOpString(const t1& v1, const t2& v2, const char* names) { argument
481 ss << names << " (" << v1 << " vs. " << v2 << ")"; local
512 inline std::string* Check##name##Impl(const t1& v1, const t2& v2, \
514 if (v1 op v2) return NULL; \
515 else return MakeCheckOpString(v1, v2, names); \
517 inline std::string* Check##name##Impl(int v1, int v2, const char* names) { \
518 if (v1 op v2) return NULL; \
519 else return MakeCheckOpString(v1, v2, names); \
/external/chromium_org/cc/animation/
H A Dscroll_offset_animation_curve.cc38 const double v2 = velocity * velocity; local
39 const double x1 = std::sqrt(r2 / (v2 + 1));
40 const double y1 = std::sqrt(r2 * v2 / (v2 + 1));
H A Dtransform_operation.cc317 gfx::Vector3dF v2 = gfx::CrossProduct(normal, v1); local
320 // v2 is a perpenticular basis vector of our plane (+y).
327 // x(t) = r*cos(t)*v1.x + r*sin(t)*v2.x + cx
328 // y(t) = r*cos(t)*v1.y + r*sin(t)*v2.y + cy
329 // z(t) = r*cos(t)*v1.z + r*sin(t)*v2.z + cz
332 // x'(t) = r*cos(t)*v2.x - r*sin(t)*v1.x = 0
333 // tan(t) = v2.x/v1.x
334 // t = atan2(v2.x, v1.x) + n*M_PI;
335 candidates[0] = atan2(v2.x(), v1.x());
337 candidates[2] = atan2(v2
[all...]
/external/chromium_org/cc/base/
H A Dmath_util.cc677 const gfx::Vector2dF& v2) {
678 double dot_product = gfx::DotProduct(v1, v2) / v1.Length() / v2.Length();
676 SmallestAngleBetweenVectors(const gfx::Vector2dF& v1, const gfx::Vector2dF& v2) argument
H A Dscoped_ptr_vector_unittest.cc52 ScopedPtrVector<Data> v2; local
53 v2.push_back(Data::Create(3));
54 v2.push_back(Data::Create(4));
55 v2.push_back(Data::Create(5));
62 v.insert_and_take(it, &v2);
72 EXPECT_EQ(3u, v2.size());
73 EXPECT_EQ(NULL, v2[0]);
74 EXPECT_EQ(NULL, v2[1]);
75 EXPECT_EQ(NULL, v2[2]);
/external/chromium_org/cc/output/
H A Dgeometry_binding.cc23 Vertex v0, v1, v2, v3; member in struct:cc::Quad
42 Vertex v2 = {{quad_vertex_rect.right(), quad_vertex_rect.y(), 0.0f, }, local
46 Quad x = {v0, v1, v2, v3};
/external/chromium_org/chrome/browser/extensions/api/preference/
H A Dpreference_api_prefs_unittest.cc427 MockStringValue* v2 = new MockStringValue("https://www.chromium.org"); variable
440 EXPECT_CALL(*v2, Die()).Times(1);
442 InstallExtensionControlledPref(extension1(), kPref1, v2); variable
447 testing::Mock::VerifyAndClearExpectations(v2);
/external/chromium_org/chrome/browser/extensions/
H A Dextension_service_unittest.cc400 scoped_ptr<Version> v2; variable
401 EXPECT_TRUE(provider_->GetExtensionDetails(id, &location, &v2));
403 EXPECT_STREQ(version->GetString().c_str(), v2->GetString().c_str());
2409 // Now try updating to v2.
2411 extensions_path.AppendASCII("v2.crx"),
2439 // Now try updating to v2.
2440 UpdateExtension(id, extensions_path.AppendASCII("v2.crx"), ENABLED);
6163 path = base_path.AppendASCII("v2");
6199 path = base_path.AppendASCII("v2");
/external/chromium_org/chrome/browser/task_manager/
H A Dtask_manager.cc75 int OrderUnavailableValue(bool v1, bool v2) { argument
76 if (!v1 && !v2)
/external/chromium_org/chrome/installer/util/
H A Dcompat_checks.cc29 bool ParseSEPVersion(const std::wstring& version, int* v0, int* v1, int* v2) { argument
38 if (!base::StringToInt(v[2], v2))
44 bool IsBadSEPVersion(int v0, int v1, int v2) { argument
49 if (v2 < 3001)
57 int v0, v1, v2; local
59 if (!ParseSEPVersion(ver_str, &v0, &v1, &v2))
61 return IsBadSEPVersion(v0, v1, v2);
/external/chromium_org/chromecast/media/cma/ipc/
H A Dmedia_message_unittest.cc58 uint8 v2 = k; local
59 EXPECT_TRUE(msg1->WritePod(v2));
72 uint8 v2; local
74 EXPECT_TRUE(msg2->ReadPod(&v2));
75 EXPECT_EQ(v2, expected_v2);
90 uint8 v2 = 0; local
95 EXPECT_FALSE(msg1->WritePod(v2));
115 uint32 v2; local
116 EXPECT_TRUE(msg2->ReadPod(&v2));
117 EXPECT_EQ(v2, v
[all...]
/external/chromium_org/content/public/android/javatests/src/org/chromium/content/browser/
H A DDeviceSensorsTest.java370 private void verifyValues(double v1, double v2, double v3) { argument
372 assertEquals(v2, mValue2);
376 private void verifyValuesEpsilon(double v1, double v2, double v3) { argument
378 assertEquals(v2, mValue2, 0.1);
/external/chromium_org/gpu/command_buffer/service/
H A Dgles2_cmd_decoder.cc1461 void DoVertexAttrib3f(GLuint index, GLfloat v0, GLfloat v1, GLfloat v2);
1463 GLuint index, GLfloat v0, GLfloat v1, GLfloat v2, GLfloat v3);
7262 GLuint index, GLfloat v0, GLfloat v1, GLfloat v2) {
7263 GLfloat v[4] = { v0, v1, v2, 1.0f, };
7265 glVertexAttrib3f(index, v0, v1, v2);
7270 GLuint index, GLfloat v0, GLfloat v1, GLfloat v2, GLfloat v3) {
7271 GLfloat v[4] = { v0, v1, v2, v3, };
7273 glVertexAttrib4f(index, v0, v1, v2, v3);
7261 DoVertexAttrib3f( GLuint index, GLfloat v0, GLfloat v1, GLfloat v2) argument
7269 DoVertexAttrib4f( GLuint index, GLfloat v0, GLfloat v1, GLfloat v2, GLfloat v3) argument
/external/chromium_org/ipc/
H A Dipc_fuzzing_tests.cc40 int v2 = 666; local
43 EXPECT_TRUE(m.WriteInt(v2));
53 int v2 = 777; local
56 EXPECT_TRUE(m.WriteInt(v2));
/external/chromium_org/media/cdm/ppapi/
H A Dcdm_wrapper.h133 virtual void ConvertInputBuffer(const cdm::InputBuffer& v2,
372 virtual void ConvertInputBuffer(const cdm::InputBuffer& v2, argument
374 v1->data = v2.data;
375 v1->data_size = v2.data_size;
377 v1->key_id = v2.key_id;
378 v1->key_id_size = v2.key_id_size;
379 v1->iv = v2.iv;
380 v1->iv_size = v2.iv_size;
381 v1->subsamples = v2.subsamples;
382 v1->num_subsamples = v2
[all...]
/external/chromium_org/mojo/services/public/cpp/view_manager/tests/
H A Dview_unittest.cc50 TestView v2; local
54 v2.AddChild(&v11);
55 EXPECT_EQ(1U, v2.children().size());

Completed in 6957 milliseconds

1234567891011>>