/external/webrtc/src/common_audio/signal_processing/ |
D | dot_product_with_scale.c | 20 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 …]
|
D | ilbc_specific_functions.c | 27 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/ |
D | SimplexCollisionShape.java | 22 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/ |
D | SimplexCollisionShape.java | 22 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/ |
D | com_jme3_bullet_collision_shapes_SimplexCollisionShape.cpp | 49 (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/ |
D | innerprod_test.cpp | 43 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/ |
D | Support_Format.java | 71 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/ |
D | signal_processing_library.h | 330 WebRtc_Word16* vector1, 370 WebRtc_Word32 WebRtcSpl_DotProductWithScale(WebRtc_Word16* vector1,
|