HomeSort by relevance Sort by last modified time
    Searched defs:Current (Results 1 - 14 of 14) sorted by null

  /frameworks/base/media/libeffects/lvm/lib/Common/src/
LVC_Mixer_VarSlope_SetTimeConstant.c 66 LVM_INT32 Current;
72 Current = LVC_Mixer_GetCurrent( pStream );
75 if (Current != Target)
77 Tc_millisec = Tc_millisec * 32767 / (Current - Target);
LVC_Core_MixSoft_1St_D16C31_WRA.c 41 LVM_INT32 Current=pInstance->Current;
48 if(Current<Target){
50 ADD2_SAT_32x32(Current,Delta,Temp); /* Q31 + Q31 into Q31*/
51 Current=Temp;
52 if (Current > Target)
53 Current = Target;
55 CurrentShort = (LVM_INT16)(Current>>16); /* From Q31 to Q15*/
63 ADD2_SAT_32x32(Current,Delta,Temp); /* Q31 + Q31 into Q31*/
64 Current=Temp
    [all...]
LVC_Mixer_Private.h 33 LVM_INT32 Current; /* 32 bit number specifying fractional valude of Current Gain */
LVC_Core_MixInSoft_D16C31_SAT.c 41 LVM_INT32 Current=pInstance->Current;
48 if(Current<Target){
50 ADD2_SAT_32x32(Current,Delta,Temp); /* Q31 + Q31 into Q31*/
51 Current=Temp;
52 if (Current > Target)
53 Current = Target;
55 CurrentShort = (LVM_INT16)(Current>>16); /* From Q31 to Q15*/
69 ADD2_SAT_32x32(Current,Delta,Temp); /* Q31 + Q31 into Q31*/
70 Current=Temp
    [all...]
  /external/chromium/base/
process_posix.cc 54 Process Process::Current() {
process_win.cc 53 Process Process::Current() {
  /frameworks/base/media/libeffects/lvm/lib/StereoWidening/src/
LVCS_BypassMix.c 77 LVM_INT32 Current;
111 Current = LVC_Mixer_GetCurrent(&pConfig->Mixer_Instance.MixerStream[0]);
112 LVC_Mixer_Init(&pConfig->Mixer_Instance.MixerStream[0],(LVM_INT32)(Gain >> 15),Current);
119 Current = LVC_Mixer_GetCurrent(&pConfig->Mixer_Instance.MixerStream[1]);
120 LVC_Mixer_Init(&pConfig->Mixer_Instance.MixerStream[1],(LVM_INT32)(Gain >> 15),Current);
  /frameworks/base/media/libeffects/lvm/lib/Common/lib/
Mixer.h 37 LVM_INT32 Current; /* Current value. Set by the mixer function. */
  /external/gtest/include/gtest/internal/
gtest-param-util.h 103 // Dereferences the current iterator and provides (read-only) access
105 // Current() on an iterator equal to BaseGenerator()->End().
107 virtual const T* Current() const = 0;
132 const T& operator*() const { return *impl_->Current(); }
133 const T* operator->() const { return impl_->Current(); }
234 virtual const T* Current() const { return &value_; }
320 // responsible for not calling Current() on an out-of-range iterator.
321 virtual const T* Current() const {
348 // value_ needs to be mutable to be accessed in Current().
gtest-param-util-generated.h     [all...]
  /external/protobuf/gtest/include/gtest/internal/
gtest-param-util.h 103 // Dereferences the current iterator and provides (read-only) access
105 // Current() on an iterator equal to BaseGenerator()->End().
107 virtual const T* Current() const = 0;
132 const T& operator*() const { return *impl_->Current(); }
133 const T* operator->() const { return impl_->Current(); }
234 virtual const T* Current() const { return &value_; }
326 // responsible for not calling Current() on an out-of-range iterator.
327 virtual const T* Current() const {
354 // value_ needs to be mutable to be accessed in Current().
gtest-param-util-generated.h     [all...]
  /external/v8/src/
codegen.h 138 static CodeGenerator* Current() {
  /external/v8/tools/
test.py 801 def Current(self, length = 1):
815 while self.HasMore() and self.Current().isspace():
824 if self.Current() == '(':
827 elif self.Current() == ')':
830 elif self.Current() == '$':
833 elif self.Current() == ',':
836 elif IsAlpha(self.Current()):
838 while self.HasMore() and IsAlpha(self.Current()):
839 buf += self.Current()
842 elif self.Current(2) == '&&'
    [all...]

Completed in 147 milliseconds