/external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/heightmap/ |
D | FluidSimHeightMap.java | 52 private float timeStep = 0.033f; // constant time-step between each iteration field in FluidSimHeightMap 105 this.timeStep = timestep; in FluidSimHeightMap() 152 …A = (4 - (8 * waveSpeed * waveSpeed * timeStep * timeStep) / (nodeDistance * nodeDistance)) / (vis… in load() 153 coefB = (viscosity * timeStep - 2) / (viscosity * timeStep + 2); in load() 154 …coefC = ((2 * waveSpeed * waveSpeed * timeStep * timeStep) / (nodeDistance * nodeDistance)) / (vis… in load() 285 public void setTimeStep(float timeStep) { in setTimeStep() argument 286 this.timeStep = timeStep; in setTimeStep()
|
/external/aac/libSBRenc/src/ |
D | tran_det.cpp | 237 INT timeStep) in addHighbandEnergies() argument 257 for (i=0; i<timeStep; i++) { in addHighbandEnergies() 301 int timeStep, in FDKsbrEnc_frameSplitter() argument 310 INT sbrSlots = fMultI(GetInvInt(timeStep),no_cols); in FDKsbrEnc_frameSplitter() 312 FDK_ASSERT( sbrSlots * timeStep == no_cols ); in FDKsbrEnc_frameSplitter() 331 timeStep); in FDKsbrEnc_frameSplitter() 558 int timeStep, in FDKsbrEnc_transientDetect() argument 568 qmfStartSample = timeStep * frameMiddleBorder; in FDKsbrEnc_transientDetect() 572 switch (timeStep) { in FDKsbrEnc_transientDetect()
|
D | tran_det.h | 122 int timeStep, 147 int timeStep,
|
D | sbr_encoder.cpp | 1133 INT timeSlots, timeStep, startIndex; in initEnvChannel() local 1193 timeStep = sbrConfigData->noQmfSlots / timeSlots; in initEnvChannel() 1232 tran_off = LD_PRETRAN_OFF + FRAME_MIDDLE_SLOT_512LD*timeStep; in initEnvChannel() 1238 case 2048: tran_off = 8 + FRAME_MIDDLE_SLOT_2048 * timeStep; break; in initEnvChannel() 1239 case 1920: tran_off = 7 + FRAME_MIDDLE_SLOT_1920 * timeStep; break; in initEnvChannel() 1246 timeSlots, timeStep, tran_off, in initEnvChannel()
|
D | env_est.cpp | 591 INT timeStep = h_sbr->sbrExtractEnvelope.time_step; in calculateSbrEnvelope() local 624 start_pos = timeStep * frame_info->borders[i]; in calculateSbrEnvelope() 625 stop_pos = timeStep * frame_info->borders[i + 1]; in calculateSbrEnvelope() 630 …stop_pos -= fixMax(2, timeStep); /* consider at least 2 QMF slots less for short envelopes (envel… in calculateSbrEnvelope()
|
/external/jmonkeyengine/engine/src/bullet-native/ |
D | jmePhysicsSpace.cpp | 209 void jmePhysicsSpace::preTickCallback(btDynamicsWorld *world, btScalar timeStep) { in preTickCallback() argument 214 env->CallVoidMethod(javaPhysicsSpace, jmeClasses::PhysicsSpace_preTick, timeStep); in preTickCallback() 223 void jmePhysicsSpace::postTickCallback(btDynamicsWorld *world, btScalar timeStep) { in postTickCallback() argument 228 env->CallVoidMethod(javaPhysicsSpace, jmeClasses::PhysicsSpace_postTick, timeStep); in postTickCallback()
|
/external/aac/libSBRdec/src/ |
D | env_extr.cpp | 160 static int checkFrameInfo (FRAME_INFO *pFrameInfo, int numberOfTimeSlots, int overlap, int timeStep… 214 hHeaderData->timeStep = (flags & SBRDEC_ELD_GRID) ? 1 : 2; in initHeaderData() 227 hHeaderData->numberTimeSlots = (samplesPerFrame/numAnalysisBands) >> (hHeaderData->timeStep - 1); in initHeaderData() 510 …kFrameInfo (&hFrameData->frameInfo, hHeaderData->numberTimeSlots, overlap, hHeaderData->timeStep) ) in sbrGetSingleChannelElement() 591 …meInfo (&hFrameDataLeft->frameInfo, hHeaderData->numberTimeSlots, overlap, hHeaderData->timeStep) ) in sbrGetChannelPairElement() 602 …eInfo (&hFrameDataRight->frameInfo, hHeaderData->numberTimeSlots, overlap, hHeaderData->timeStep) ) in sbrGetChannelPairElement() 1316 int timeStep) /*!< QMF slots to SBR slots step factor */ in checkFrameInfo() argument 1342 if (timeStep < 1 || timeStep > 2) { in checkFrameInfo() 1345 maxPos = numberOfTimeSlots + (overlap/timeStep); in checkFrameInfo()
|
D | sbr_dec.cpp | 341 int noCols = hHeaderData->numberTimeSlots * hHeaderData->timeStep; in sbr_dec() 345 …assignTimeSlots( hSbrDec, hHeaderData->numberTimeSlots * hHeaderData->timeStep, flags & SBRDEC_LOW… in sbr_dec() 443 hHeaderData->timeStep, in sbr_dec() 736 int noCols = timeSlots * hHeaderData->timeStep; /* Number of QMF slots per frame */ in createSbrDec() 836 …assignTimeSlots( &hSbrChannel->SbrDec, hHeaderData->numberTimeSlots * hHeaderData->timeStep, qmfFl… in createSbrDec() 892 assignTimeSlots( hSbrDec, hHeaderData->numberTimeSlots * hHeaderData->timeStep, useLP); in resetSbrDec() 916 startSlot = hHeaderData->timeStep * (hPrevFrameData->stopPos - hHeaderData->numberTimeSlots); in resetSbrDec()
|
D | lpp_tran.h | 204 const int timeStep,
|
D | env_extr.h | 217 UCHAR timeStep; /*!< Time resolution of SBR in QMF-slots */ member
|
D | lpp_tran.cpp | 225 const int timeStep, /*!< Time step of envelope */ in lppTransposer() argument 266 startSample = firstSlotOffs * timeStep; in lppTransposer() 267 stopSample = pSettings->nCols + lastSlotOffs * timeStep; in lppTransposer()
|
D | env_calc.cpp | 526 int no_cols = hHeaderData->numberTimeSlots * hHeaderData->timeStep; in calculateSbrEnvelope() 527 UCHAR first_start = borders[0] * hHeaderData->timeStep; in calculateSbrEnvelope() 612 …UCHAR start_pos = hHeaderData->timeStep * borders[i]; /* Start-position in time (subband sample) … in calculateSbrEnvelope() 613 …UCHAR stop_pos = hHeaderData->timeStep * borders[i+1]; /* Stop-position in time (subband sample) f… in calculateSbrEnvelope()
|