HomeSort by relevance Sort by last modified time
    Searched full:impulse (Results 51 - 75 of 249) sorted by null

1 23 4 5 6 7 8 910

  /external/libgdx/extensions/gdx-bullet/jni/src/bullet/BulletDynamics/ConstraintSolver/
btContactConstraint.h 67 btScalar distance, const btVector3& normal,btScalar& impulse ,btScalar timeStep);
btSolve2LinearConstraint.cpp 86 // jacobian * impulse = -error
89 //impulse = jacobianInverse * -error
170 // jacobian * impulse = -error
173 //impulse = jacobianInverse * -error
  /external/libvorbis/doc/vorbisenc/
vorbis_encode_ctl.html 86 <dd><b>Argument: double *</b><br> Returns the current encoder impulse
90 the impulse block bias to the the value pointed to by arg; valid range
91 is -15.0 to 0.0 [default]. A negative impulse block bias will direct
93 strong impulses, thus improving the accuracy of impulse encoding.</dd><p>
  /external/webrtc/webrtc/common_audio/
sparse_fir_filter.h 21 // A Finite Impulse Response filter implementation which takes advantage of a
  /external/libgdx/extensions/gdx-box2d/gdx-box2d/jni/Box2D/Dynamics/
b2WorldCallbacks.h 111 /// arbitrarily large if the sub-step is small. Hence the impulse is provided explicitly
114 virtual void PostSolve(b2Contact* contact, const b2ContactImpulse* impulse)
117 B2_NOT_USED(impulse);
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_imgfile.py 67 # scaling. The filter forms supported are 'impulse', 'box',
74 print 'Filtering with "impulse"'
75 simage = imgfile.readscaled (name, sizes[0]/2, sizes[1]/2, 'impulse', 2.0)
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_imgfile.py 67 # scaling. The filter forms supported are 'impulse', 'box',
74 print 'Filtering with "impulse"'
75 simage = imgfile.readscaled (name, sizes[0]/2, sizes[1]/2, 'impulse', 2.0)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_imgfile.py 67 # scaling. The filter forms supported are 'impulse', 'box',
74 print 'Filtering with "impulse"'
75 simage = imgfile.readscaled (name, sizes[0]/2, sizes[1]/2, 'impulse', 2.0)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_imgfile.py 67 # scaling. The filter forms supported are 'impulse', 'box',
74 print 'Filtering with "impulse"'
75 simage = imgfile.readscaled (name, sizes[0]/2, sizes[1]/2, 'impulse', 2.0)
  /external/libgdx/extensions/gdx-bullet/jni/src/bullet/BulletSoftBody/
btSoftBody.cpp 974 void btSoftBody::clusterVImpulse(Cluster* cluster,const btVector3& rpos,const btVector3& impulse)
976 const btVector3 li=cluster->m_imass*impulse;
977 const btVector3 ai=cluster->m_invwi*btCross(rpos,impulse);
984 void btSoftBody::clusterDImpulse(Cluster* cluster,const btVector3& rpos,const btVector3& impulse)
986 const btVector3 li=cluster->m_imass*impulse;
987 const btVector3 ai=cluster->m_invwi*btCross(rpos,impulse);
994 void btSoftBody::clusterImpulse(Cluster* cluster,const btVector3& rpos,const Impulse& impulse)
996 if(impulse.m_asVelocity) clusterVImpulse(cluster,rpos,impulse.m_velocity)
2796 btSoftBody::Impulse impulse; local
2841 btSoftBody::Impulse impulse; local
2887 btSoftBody::Impulse impulse; local
3015 const btVector3 impulse=a.m_c0*vr*a.m_influence; local
3042 const btVector3 impulse = c.m_c0 * ( (vr - (fv * c.m_c3) + (cti.m_normal * (dp * c.m_c4))) * kst ); local
    [all...]
  /external/libgdx/extensions/gdx-bullet/jni/swig-src/softbody/com/badlogic/gdx/physics/bullet/softbody/
btSoftBody.java 4089 SoftbodyJNI.btSoftBody_clusterVImpulse(btSoftBody.Cluster.getCPtr(cluster), cluster, rpos, impulse); local
4093 SoftbodyJNI.btSoftBody_clusterDImpulse(btSoftBody.Cluster.getCPtr(cluster), cluster, rpos, impulse); local
4097 SoftbodyJNI.btSoftBody_clusterImpulse(btSoftBody.Cluster.getCPtr(cluster), cluster, rpos, btSoftBody.Impulse.getCPtr(impulse), impulse); local
4101 SoftbodyJNI.btSoftBody_clusterVAImpulse(btSoftBody.Cluster.getCPtr(cluster), cluster, impulse); local
4105 SoftbodyJNI.btSoftBody_clusterDAImpulse(btSoftBody.Cluster.getCPtr(cluster), cluster, impulse); local
4109 SoftbodyJNI.btSoftBody_clusterAImpulse(btSoftBody.Cluster.getCPtr(cluster), cluster, btSoftBody.Impulse.getCPtr(impulse), impulse); local
4113 SoftbodyJNI.btSoftBody_clusterDCImpulse(btSoftBody.Cluster.getCPtr(cluster), cluster, impulse); local
    [all...]
  /external/libgdx/extensions/gdx-box2d/gdx-box2d-gwt/src/com/badlogic/gdx/physics/box2d/gwt/emu/org/jbox2d/dynamics/joints/
PulleyJoint.java 294 float impulse = -m_mass * Cdot; local
295 m_impulse += impulse;
297 PA.set(m_uA).mulLocal(-impulse);
298 PB.set(m_uB).mulLocal(-m_ratio * impulse);
371 float impulse = -mass * C; local
373 PA.set(uA).mulLocal(-impulse);
374 PB.set(uB).mulLocal(-m_ratio * impulse);
  /external/libgdx/extensions/gdx-box2d/gdx-box2d-gwt/src/com/badlogic/gdx/physics/box2d/gwt/emu/org/jbox2d/dynamics/
Body.java 515 * Apply an impulse at a point. This immediately modifies the velocity. It also modifies the
520 * @param impulse the world impulse vector, usually in N-seconds or kg-m/s.
524 public final void applyLinearImpulse(Vec2 impulse, Vec2 point, boolean wake) {
537 m_linearVelocity.x += impulse.x * m_invMass;
538 m_linearVelocity.y += impulse.y * m_invMass;
541 m_invI * ((point.x - m_sweep.c.x) * impulse.y - (point.y - m_sweep.c.y) * impulse.x);
545 * Apply an angular impulse.
547 * @param impulse the angular impulse in units of kg*m*m/
    [all...]
  /external/webrtc/webrtc/common_audio/vad/
vad_filterbank.c 49 // The sum of the absolute values of the impulse response:
51 // Impulse response: 0.4047 -0.6179 -0.0266 0.1993 0.1035 -0.0194
53 // Impulse response: 0.4047 -0.8094 0.4047 0 0 0
55 // Impulse response: 1.0000 0.4734 -0.1189 -0.2187 -0.0627 0.04532
88 // has the the same sign as the impulse responses first taps.
89 // First 6 taps of the impulse response:
  /external/libgdx/extensions/gdx-bullet/jni/src/bullet/BulletDynamics/MLCPSolvers/
btMLCPSolver.h 35 ///when using 'split impulse' we solve two separate (M)LCPs
  /external/libgdx/tests/gdx-tests/src/com/badlogic/gdx/tests/bullet/
BaseBulletTest.java 214 public BulletEntity shoot (final float x, final float y, final float impulse) {
215 return shoot("box", x, y, impulse);
218 public BulletEntity shoot (final String what, final float x, final float y, final float impulse) {
224 ((btRigidBody)entity.body).applyCentralImpulse(ray.direction.scl(impulse));
  /frameworks/av/media/libstagefright/codecs/amrnb/enc/src/
convolve.h 74 Word16 h[], /* (i) : impulse response */
  /frameworks/av/media/libstagefright/codecs/amrwbenc/src/
pitch_f4.c 42 Word16 h[], /* (i) Q15 : impulse response of synth/wgt filters */
52 Word16 h[], /* (i) Q15 : impulse response of synth/wgt filters */
69 Word16 h[], /* (i) Q15 : impulse response of synth/wgt filters */
166 Word16 h[], /* (i) Q15 : impulse response of synth/wgt filters */
  /external/libgdx/extensions/gdx-bullet/jni/swig-src/dynamics/com/badlogic/gdx/physics/bullet/dynamics/
Dynamics.java 92 public static void resolveSingleBilateral(btRigidBody body1, Vector3 pos1, btRigidBody body2, Vector3 pos2, float distance, Vector3 normal, SWIGTYPE_p_float impulse, float timeStep) {
93 DynamicsJNI.resolveSingleBilateral(btRigidBody.getCPtr(body1), body1, pos1, btRigidBody.getCPtr(body2), body2, pos2, distance, normal, SWIGTYPE_p_float.getCPtr(impulse), timeStep);
  /external/replicaisland/src/com/replica/replicaisland/
GameObject.java 196 public final void setImpulse(Vector2 impulse) {
197 mImpulse.set(impulse);
  /external/speex/include/speex/
speex_echo.h 55 /** Get size of impulse response (int32) */
59 /** Get impulse response (int32[]) */
  /external/libgdx/extensions/gdx-bullet/jni/src/bullet/BulletDynamics/Dynamics/
btRigidBody.h 321 void applyCentralImpulse(const btVector3& impulse)
323 m_linearVelocity += impulse *m_linearFactor * m_inverseMass;
331 void applyImpulse(const btVector3& impulse, const btVector3& rel_pos)
335 applyCentralImpulse(impulse);
338 applyTorqueImpulse(rel_pos.cross(impulse*m_linearFactor));
  /frameworks/av/media/libstagefright/codecs/amrwbenc/inc/
acelp.h 252 Word16 h[], /* (i) Q15 : impulse response */
259 Word16 h[], /* (i) Q15 : impulse response */
349 Word16 h[], /* (i) Q15 : impulse response of synth/wgt filters */
424 Word16 h[], /* (i) Q12 : impulse response of weighted synthesis filter */
431 Word16 H[], /* (i) Q12: impulse response of weighted synthesis filter */
440 Word16 H[], /* (i) Q12: impulse response of weighted synthesis filter */
455 Word16 * x, /* in/out: impulse response (or algebraic code) */
  /docs/source.android.com/src/devices/audio/
latency_measure.jd 100 and input latency by timing an impulse response loop. This test is not very useful
111 Alternatively, one can inject an impulse into the loop using software.</li>
140 The image below demonstrates the result of injecting an impulse
  /external/libgdx/extensions/gdx-bullet/jni/src/bullet/BulletDynamics/Featherstone/
btMultiBodyConstraintSolver.cpp 107 void btMultiBodyConstraintSolver::applyDeltaVee(btScalar* delta_vee, btScalar impulse, int velocityIndex, int ndof)
110 m_data.m_deltaVelocities[velocityIndex+i] += delta_vee[i] * impulse;
519 btScalar impulse = solverConstraint.m_appliedImpulse; local
522 multiBodyA->applyDeltaVeeMultiDof(deltaV,impulse);
524 multiBodyA->applyDeltaVee(deltaV,impulse);
525 applyDeltaVee(deltaV,impulse,solverConstraint.m_deltaVelAindex,ndofA);
533 btScalar impulse = solverConstraint.m_appliedImpulse; local
536 multiBodyB->applyDeltaVeeMultiDof(deltaV,impulse);
538 multiBodyB->applyDeltaVee(deltaV,impulse);
539 applyDeltaVee(deltaV,impulse,solverConstraint.m_deltaVelBindex,ndofB)
    [all...]

Completed in 842 milliseconds

1 23 4 5 6 7 8 910