Home
last modified time | relevance | path

Searched refs:Delta (Results 1 – 12 of 12) sorted by relevance

/frameworks/av/media/libeffects/lvm/lib/Common/src/
DLVC_Mixer_SetTimeConstant.c78 LVM_FLOAT Delta = DeltaTable[Fs]; in LVC_Mixer_SetTimeConstant() local
79 Delta = Delta / (NumChannels); in LVC_Mixer_SetTimeConstant()
82 Delta = 1.000000f; in LVC_Mixer_SetTimeConstant()
84 Delta = Delta / Tc_millisec; in LVC_Mixer_SetTimeConstant()
86 if(Delta == 0) in LVC_Mixer_SetTimeConstant()
87 Delta = 0.0000000005f; /* If Time Constant is so large that Delta is 0, \ in LVC_Mixer_SetTimeConstant()
89 pInstance->Delta = Delta; // Delta=(2147483647*4*1000)/(NumChannels*SampleRate*Tc_millisec) in LVC_Mixer_SetTimeConstant()
107 LVM_INT32 Delta=DeltaTable[Fs]; in LVC_Mixer_SetTimeConstant() local
108 Delta=Delta>>(NumChannels-1); in LVC_Mixer_SetTimeConstant()
111 Delta=0x7FFFFFFF; in LVC_Mixer_SetTimeConstant()
[all …]
DLVC_Mixer_VarSlope_SetTimeConstant.c79 LVM_FLOAT Delta = DeltaTable[Fs]; in LVC_Mixer_VarSlope_SetTimeConstant() local
84 Delta=Delta / (NumChannels); in LVC_Mixer_VarSlope_SetTimeConstant()
97 Delta = 1.000000f; in LVC_Mixer_VarSlope_SetTimeConstant()
99 Delta = Delta / Tc_millisec_float; in LVC_Mixer_VarSlope_SetTimeConstant()
101 if(Delta == 0) in LVC_Mixer_VarSlope_SetTimeConstant()
102 Delta = 0.0000000005f; /* If Time Constant is so large that Delta is 0, \ in LVC_Mixer_VarSlope_SetTimeConstant()
107 Delta = 0.0000000005f; /* Minimum value for proper call-backs \ in LVC_Mixer_VarSlope_SetTimeConstant()
111 pInstance->Delta = Delta; // Delta=(2147483647*4*1000)/(NumChannels*SampleRate*Tc_millisec) in LVC_Mixer_VarSlope_SetTimeConstant()
129 LVM_INT32 Delta=DeltaTable[Fs]; in LVC_Mixer_VarSlope_SetTimeConstant() local
134 Delta=Delta>>(NumChannels-1); in LVC_Mixer_VarSlope_SetTimeConstant()
[all …]
DLVC_Core_MixSoft_1St_D16C31_WRA.c39 LVM_FLOAT Delta= (LVM_FLOAT)pInstance->Delta; in LVC_Core_MixSoft_1St_D16C31_WRA() local
50 Temp = Current + Delta; in LVC_Core_MixSoft_1St_D16C31_WRA()
67 Temp = Current + Delta; in LVC_Core_MixSoft_1St_D16C31_WRA()
86 Current -= Delta; in LVC_Core_MixSoft_1St_D16C31_WRA()
96 Current -= Delta; in LVC_Core_MixSoft_1St_D16C31_WRA()
119 LVM_INT32 Delta=pInstance->Delta; in LVC_Core_MixSoft_1St_D16C31_WRA() local
129 … ADD2_SAT_32x32(Current,Delta,Temp); /* Q31 + Q31 into Q31*/ in LVC_Core_MixSoft_1St_D16C31_WRA()
142 … ADD2_SAT_32x32(Current,Delta,Temp); /* Q31 + Q31 into Q31*/ in LVC_Core_MixSoft_1St_D16C31_WRA()
157 … Current -= Delta; /* Q31 + Q31 into Q31*/ in LVC_Core_MixSoft_1St_D16C31_WRA()
169 … Current -= Delta; /* Q31 + Q31 into Q31*/ in LVC_Core_MixSoft_1St_D16C31_WRA()
DLVC_Core_MixInSoft_D16C31_SAT.c39 LVM_FLOAT Delta = pInstance->Delta; in LVC_Core_MixInSoft_D16C31_SAT() local
49 Temp = Current + Delta; in LVC_Core_MixInSoft_D16C31_SAT()
66 Temp = Current + Delta; in LVC_Core_MixInSoft_D16C31_SAT()
84 Current -= Delta; in LVC_Core_MixInSoft_D16C31_SAT()
100 Current -= Delta; in LVC_Core_MixInSoft_D16C31_SAT()
129 LVM_INT32 Delta=pInstance->Delta; in LVC_Core_MixInSoft_D16C31_SAT() local
139 … ADD2_SAT_32x32(Current,Delta,Temp); /* Q31 + Q31 into Q31*/ in LVC_Core_MixInSoft_D16C31_SAT()
158 … ADD2_SAT_32x32(Current,Delta,Temp); /* Q31 + Q31 into Q31*/ in LVC_Core_MixInSoft_D16C31_SAT()
178 … Current -= Delta; /* Q31 + Q31 into Q31*/ in LVC_Core_MixInSoft_D16C31_SAT()
196 … Current -= Delta; /* Q31 + Q31 into Q31*/ in LVC_Core_MixInSoft_D16C31_SAT()
DLVC_MixSoft_1St_2i_D16C31_SAT.c56 if(pInstance1->Delta == 1.0f) in LVC_MixSoft_1St_2i_D16C31_SAT()
62 else if (Abs_Float(pInstance1->Current - pInstance1->Target) < pInstance1->Delta) in LVC_MixSoft_1St_2i_D16C31_SAT()
77 if(pInstance2->Delta == 1.0f) in LVC_MixSoft_1St_2i_D16C31_SAT()
83 else if (Abs_Float(pInstance2->Current - pInstance2->Target) < pInstance2->Delta) in LVC_MixSoft_1St_2i_D16C31_SAT()
132 if (Abs_Float(pInstance1->Current - pInstance1->Target) < pInstance1->Delta) in LVC_MixSoft_1St_2i_D16C31_SAT()
150 if (Abs_Float(pInstance2->Current - pInstance2->Target) < pInstance2->Delta) in LVC_MixSoft_1St_2i_D16C31_SAT()
185 if(pInstance1->Delta == 0x7FFFFFFF) in LVC_MixSoft_1St_2i_D16C31_SAT()
191 else if (Abs_32(pInstance1->Current-pInstance1->Target) < pInstance1->Delta) in LVC_MixSoft_1St_2i_D16C31_SAT()
205 if(pInstance2->Delta == 0x7FFFFFFF) in LVC_MixSoft_1St_2i_D16C31_SAT()
211 else if (Abs_32(pInstance2->Current-pInstance2->Target) < pInstance2->Delta) in LVC_MixSoft_1St_2i_D16C31_SAT()
[all …]
DLVC_MixInSoft_D16C31_SAT.c54 if(pInstance->Delta == 1.0f){ in LVC_MixInSoft_D16C31_SAT()
58 }else if (Abs_Float(pInstance->Current - pInstance->Target) < pInstance->Delta){ in LVC_MixInSoft_D16C31_SAT()
93 if (Abs_Float(pInstance->Current - pInstance->Target) < pInstance->Delta){ in LVC_MixInSoft_D16C31_SAT()
126 if(pInstance->Delta == 0x7FFFFFFF){ in LVC_MixInSoft_D16C31_SAT()
130 }else if (Abs_32(pInstance->Current-pInstance->Target) < pInstance->Delta){ in LVC_MixInSoft_D16C31_SAT()
172 if (Abs_32(pInstance->Current-pInstance->Target) < pInstance->Delta){ in LVC_MixInSoft_D16C31_SAT()
DLVC_MixSoft_1St_D16C31_SAT.c54 if(pInstance->Delta == 1.0f){ in LVC_MixSoft_1St_D16C31_SAT()
58 }else if (Abs_Float(pInstance->Current - pInstance->Target) < pInstance->Delta){ in LVC_MixSoft_1St_D16C31_SAT()
91 if (Abs_Float(pInstance->Current - pInstance->Target) < pInstance->Delta){ in LVC_MixSoft_1St_D16C31_SAT()
123 if(pInstance->Delta == 0x7FFFFFFF){ in LVC_MixSoft_1St_D16C31_SAT()
127 }else if (Abs_32(pInstance->Current-pInstance->Target) < pInstance->Delta){ in LVC_MixSoft_1St_D16C31_SAT()
169 if (Abs_32(pInstance->Current-pInstance->Target) < pInstance->Delta){ in LVC_MixSoft_1St_D16C31_SAT()
DLVC_Core_MixSoft_1St_2i_D16C31_WRA.c56 LVM_FLOAT DeltaL = pInstanceL->Delta; in LVC_Core_MixSoft_1St_2i_D16C31_WRA()
60 LVM_FLOAT DeltaR = pInstanceR->Delta; in LVC_Core_MixSoft_1St_2i_D16C31_WRA()
164 LVM_INT32 DeltaL=pInstanceL->Delta; in LVC_Core_MixSoft_1St_2i_D16C31_WRA()
168 LVM_INT32 DeltaR=pInstanceR->Delta; in LVC_Core_MixSoft_1St_2i_D16C31_WRA()
DLVC_Mixer_Private.h35 LVM_FLOAT Delta; /*number specifying value of Delta Gain */ member
44 …LVM_INT32 Delta; /* 32 bit number specifying the fractional… member
/frameworks/base/cmds/incidentd/testdata/
Dkmsg.txt5 D - 104829 - APPSBL Image Loaded, Delta - (2498816 Bytes)
7 D - 643611 - SBL1, Delta
13 D - 244 - clock_init, Delta
17 D - 3386 - QSEE Dev Config Image Loaded, Delta - (46232 Bytes)
20 D - 2166 - APDP Image Loaded, Delta - (7696 Bytes)
23 D - 50782 - QSEE Image Loaded, Delta - (1648640 Bytes)
25 D - 244 - SEC Image Loaded, Delta - (4096 Bytes)
29 D - 91 - sbl1_efs_handle_cookies, Delta
32 D - 11010 - QHEE Image Loaded, Delta - (258280 Bytes)
35 D - 10736 - RPM Image Loaded, Delta - (224104 Bytes)
[all …]
Dkmsg.txt.gz
/frameworks/native/services/inputflinger/
DInputReader.h1732 struct Delta { struct
1735 Delta referenceDeltas[MAX_POINTER_ID + 1];