Home
last modified time | relevance | path

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

/external/webrtc/src/common_audio/signal_processing/
Ddot_product_with_scale.c20 WebRtc_Word32 WebRtcSpl_DotProductWithScale(WebRtc_Word16 *vector1, WebRtc_Word16 *vector2, in WebRtcSpl_DotProductWithScale() argument
35 sum += WEBRTC_SPL_MUL_16_16_RSFT(*vector1++, *vector2++, scaling); in WebRtcSpl_DotProductWithScale()
42 sum += WEBRTC_SPL_MUL_16_16(*vector1, *vector2); in WebRtcSpl_DotProductWithScale()
44 vector2++; in WebRtcSpl_DotProductWithScale()
45 sum += WEBRTC_SPL_MUL_16_16(*vector1, *vector2); in WebRtcSpl_DotProductWithScale()
47 vector2++; in WebRtcSpl_DotProductWithScale()
48 sum += WEBRTC_SPL_MUL_16_16(*vector1, *vector2); in WebRtcSpl_DotProductWithScale()
50 vector2++; in WebRtcSpl_DotProductWithScale()
51 sum += WEBRTC_SPL_MUL_16_16(*vector1, *vector2); in WebRtcSpl_DotProductWithScale()
53 vector2++; in WebRtcSpl_DotProductWithScale()
[all …]
Dilbc_specific_functions.c28 WebRtc_Word16 *vector2, WebRtc_Word16 scale2, in WebRtcSpl_ScaleAndAddVectorsWithRound() argument
39 + WEBRTC_SPL_MUL_16_16(vector2[i], scale2) + roundVal) >> right_shifts); in WebRtcSpl_ScaleAndAddVectorsWithRound()
/external/jmonkeyengine/engine/src/bullet/com/jme3/bullet/collision/shapes/
DSimplexCollisionShape.java22 private Vector3f vector1, vector2, vector3, vector4; field in SimplexCollisionShape
29 vector2 = point2; in SimplexCollisionShape()
37 vector2 = point2; in SimplexCollisionShape()
44 vector2 = point2; in SimplexCollisionShape()
57 capsule.write(vector2, "simplexPoint2", null); in write()
66 vector2 = (Vector3f) capsule.readSavable("simplexPoint2", null); in read()
74 objectId = createShape(vector1, vector2, vector3, vector4); in createShape()
77 objectId = createShape(vector1, vector2, vector3); in createShape()
79 } else if (vector2 != null) { in createShape()
80 objectId = createShape(vector1, vector2); in createShape()
[all …]
/external/jmonkeyengine/engine/src/jbullet/com/jme3/bullet/collision/shapes/
DSimplexCollisionShape.java22 private Vector3f vector1, vector2, vector3, vector4; field in SimplexCollisionShape
29 vector2 = point2; in SimplexCollisionShape()
37 vector2 = point2; in SimplexCollisionShape()
44 vector2 = point2; in SimplexCollisionShape()
57 capsule.write(vector2, "simplexPoint2", null); in write()
66 vector2 = (Vector3f) capsule.readSavable("simplexPoint2", null); in read()
74 …cShape = new BU_Simplex1to4(Converter.convert(vector1), Converter.convert(vector2), Converter.conv… in createShape()
76 …cShape = new BU_Simplex1to4(Converter.convert(vector1), Converter.convert(vector2), Converter.conv… in createShape()
77 } else if (vector2 != null) { in createShape()
78 cShape = new BU_Simplex1to4(Converter.convert(vector1), Converter.convert(vector2)); in createShape()
/external/compiler-rt/lib/tsan/tests/unit/
Dtsan_clock_test.cc61 ThreadClock vector2(0); in TEST() local
62 vector2.acquire(&cache, &chunked); in TEST()
63 ASSERT_EQ(vector2.size(), 101U); in TEST()
64 ASSERT_EQ(vector2.get(0), 0U); in TEST()
65 ASSERT_EQ(vector2.get(1), 0U); in TEST()
66 ASSERT_EQ(vector2.get(99), 0U); in TEST()
67 ASSERT_EQ(vector2.get(100), 1U); in TEST()
114 ThreadClock vector2(20); in TEST() local
115 vector2.tick(); in TEST()
120 vector2.release(&cache, &chunked); in TEST()
[all …]
/external/jmonkeyengine/engine/src/bullet-native/
Dcom_jme3_bullet_collision_shapes_SimplexCollisionShape.cpp63 (JNIEnv *env, jobject object, jobject vector1, jobject vector2) { in Java_com_jme3_bullet_collision_shapes_SimplexCollisionShape_createShape__Lcom_jme3_math_Vector3f_2Lcom_jme3_math_Vector3f_2() argument
68 jmeBulletUtil::convert(env, vector2, &vec2); in Java_com_jme3_bullet_collision_shapes_SimplexCollisionShape_createShape__Lcom_jme3_math_Vector3f_2Lcom_jme3_math_Vector3f_2()
78 (JNIEnv * env, jobject object, jobject vector1, jobject vector2, jobject vector3) { in Java_com_jme3_bullet_collision_shapes_SimplexCollisionShape_createShape__Lcom_jme3_math_Vector3f_2Lcom_jme3_math_Vector3f_2Lcom_jme3_math_Vector3f_2() argument
83 jmeBulletUtil::convert(env, vector2, &vec2); in Java_com_jme3_bullet_collision_shapes_SimplexCollisionShape_createShape__Lcom_jme3_math_Vector3f_2Lcom_jme3_math_Vector3f_2Lcom_jme3_math_Vector3f_2()
95 …(JNIEnv * env, jobject object, jobject vector1, jobject vector2, jobject vector3, jobject vector4)… in Java_com_jme3_bullet_collision_shapes_SimplexCollisionShape_createShape__Lcom_jme3_math_Vector3f_2Lcom_jme3_math_Vector3f_2Lcom_jme3_math_Vector3f_2Lcom_jme3_math_Vector3f_2() argument
100 jmeBulletUtil::convert(env, vector2, &vec2); in Java_com_jme3_bullet_collision_shapes_SimplexCollisionShape_createShape__Lcom_jme3_math_Vector3f_2Lcom_jme3_math_Vector3f_2Lcom_jme3_math_Vector3f_2Lcom_jme3_math_Vector3f_2()
/external/clang/test/SemaTemplate/
Dderived.cpp4 template<typename T> class vector2 {}; class
5 template<typename T> class vector : vector2<T> {};
7 template<typename T> void Foo2(vector2<const T*> V) {} // expected-note{{candidate template ignore… in Foo2()
11 Foo2(vector2<int*>()); // expected-error{{no matching function for call to 'Foo2'}} in test()
/external/jmonkeyengine/engine/src/test/jme3test/bullet/
DBombControl.java38 private Vector3f vector2 = new Vector3f(); field in BombControl
120 rBody.getPhysicsLocation(vector2); in physicsTick()
121 vector2.subtractLocal(vector); in physicsTick()
122 float force = explosionRadius - vector2.length(); in physicsTick()
125 vector2.normalizeLocal(); in physicsTick()
126 vector2.multLocal(force); in physicsTick()
127 ((PhysicsRigidBody) physicsCollisionObject).applyImpulse(vector2, Vector3f.ZERO); in physicsTick()
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
DIntlTestDecimalFormatAPIC.java433 private static boolean compare(List vector1, List vector2) { in compare() argument
434 return vector1.size() == vector2.size() && vector1.containsAll(vector2); in compare()
/external/webrtc/src/common_audio/signal_processing/include/
Dsignal_processing_library.h331 WebRtc_Word16* vector2,
371 WebRtc_Word16* vector2,
/external/protobuf/gtest/test/
Dgtest_unittest.cc774 TestingVector vector2; in TEST_F() local
776 vector2.push_back(i); in TEST_F()
782 Shuffle(&random_, &vector2); in TEST_F()
785 ASSERT_PRED1(VectorIsNotCorrupt, vector2); in TEST_F()
788 EXPECT_EQ(vector_[i], vector2[i]) << " where i is " << i; in TEST_F()
/external/gtest/test/
Dgtest_unittest.cc981 TestingVector vector2; in TEST_F() local
983 vector2.push_back(i); in TEST_F()
989 Shuffle(&random_, &vector2); in TEST_F()
992 ASSERT_PRED1(VectorIsNotCorrupt, vector2); in TEST_F()
995 EXPECT_EQ(vector_[i], vector2[i]) << " where i is " << i; in TEST_F()
/external/google-breakpad/src/testing/gtest/test/
Dgtest_unittest.cc908 TestingVector vector2; in TEST_F() local
910 vector2.push_back(i); in TEST_F()
916 Shuffle(&random_, &vector2); in TEST_F()
919 ASSERT_PRED1(VectorIsNotCorrupt, vector2); in TEST_F()
922 EXPECT_EQ(vector_[i], vector2[i]) << " where i is " << i; in TEST_F()