Home
last modified time | relevance | path

Searched refs:vector1 (Results 1 – 8 of 8) 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()
43 vector1++; in WebRtcSpl_DotProductWithScale()
45 sum += WEBRTC_SPL_MUL_16_16(*vector1, *vector2); in WebRtcSpl_DotProductWithScale()
46 vector1++; in WebRtcSpl_DotProductWithScale()
48 sum += WEBRTC_SPL_MUL_16_16(*vector1, *vector2); in WebRtcSpl_DotProductWithScale()
49 vector1++; in WebRtcSpl_DotProductWithScale()
51 sum += WEBRTC_SPL_MUL_16_16(*vector1, *vector2); in WebRtcSpl_DotProductWithScale()
52 vector1++; in WebRtcSpl_DotProductWithScale()
[all …]
Dilbc_specific_functions.c27 void WebRtcSpl_ScaleAndAddVectorsWithRound(WebRtc_Word16 *vector1, WebRtc_Word16 scale1, in WebRtcSpl_ScaleAndAddVectorsWithRound() argument
38 out[i] = (WebRtc_Word16)((WEBRTC_SPL_MUL_16_16(vector1[i], scale1) in WebRtcSpl_ScaleAndAddVectorsWithRound()
/external/jmonkeyengine/engine/src/bullet/com/jme3/bullet/collision/shapes/
DSimplexCollisionShape.java22 private Vector3f vector1, vector2, vector3, vector4; field in SimplexCollisionShape
28 vector1 = point1; in SimplexCollisionShape()
36 vector1 = point1; in SimplexCollisionShape()
43 vector1 = point1; in SimplexCollisionShape()
49 vector1 = point1; in SimplexCollisionShape()
56 capsule.write(vector1, "simplexPoint1", null); in write()
65 vector1 = (Vector3f) capsule.readSavable("simplexPoint1", null); in read()
74 objectId = createShape(vector1, vector2, vector3, vector4); in createShape()
77 objectId = createShape(vector1, vector2, vector3); 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
28 vector1 = point1; in SimplexCollisionShape()
36 vector1 = point1; in SimplexCollisionShape()
43 vector1 = point1; in SimplexCollisionShape()
49 vector1 = point1; in SimplexCollisionShape()
56 capsule.write(vector1, "simplexPoint1", null); in write()
65 vector1 = (Vector3f) capsule.readSavable("simplexPoint1", 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()
78 cShape = new BU_Simplex1to4(Converter.convert(vector1), Converter.convert(vector2)); in createShape()
[all …]
/external/jmonkeyengine/engine/src/bullet-native/
Dcom_jme3_bullet_collision_shapes_SimplexCollisionShape.cpp49 (JNIEnv *env, jobject object, jobject vector1) { in Java_com_jme3_bullet_collision_shapes_SimplexCollisionShape_createShape__Lcom_jme3_math_Vector3f_2() argument
52 jmeBulletUtil::convert(env, vector1, &vec1); in Java_com_jme3_bullet_collision_shapes_SimplexCollisionShape_createShape__Lcom_jme3_math_Vector3f_2()
63 (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
66 jmeBulletUtil::convert(env, vector1, &vec1); 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
81 jmeBulletUtil::convert(env, vector1, &vec1); 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
98 jmeBulletUtil::convert(env, vector1, &vec1); 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/stlport/test/unit/
Dinnerprod_test.cpp43 int vector1[5] = { 1, 2, 3, 4, 5 }; in inprod0() local
47 result = inner_product(vector1, vector1 + 5, vector2, 0); in inprod0()
/external/apache-harmony/text/src/test/java/org/apache/harmony/text/tests/java/text/
DSupport_Format.java71 protected static boolean compare(Vector<FieldContainer> vector1, Vector<FieldContainer> vector2) { in compare() argument
72 return vector1.size() == vector2.size() && vector1.containsAll(vector2); in compare()
/external/webrtc/src/common_audio/signal_processing/include/
Dsignal_processing_library.h330 WebRtc_Word16* vector1,
370 WebRtc_Word32 WebRtcSpl_DotProductWithScale(WebRtc_Word16* vector1,