HomeSort by relevance Sort by last modified time
    Searched refs:Current (Results 1 - 25 of 61) sorted by null

1 2 3

  /bootable/recovery/edify/
yydefs.h 25 #define YYLLOC_DEFAULT(Current, Rhs, N) \
28 (Current).start = YYRHSLOC(Rhs, 1).start; \
29 (Current).end = YYRHSLOC(Rhs, N).end; \
31 (Current).start = YYRHSLOC(Rhs, 0).start; \
32 (Current).end = YYRHSLOC(Rhs, 0).end; \
  /frameworks/base/media/libeffects/lvm/lib/Common/src/
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...]
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_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);
MixInSoft_D32C31_SAT.c 48 if (pInstance->Current != pInstance->Target)
51 pInstance->Current = pInstance->Target;
52 }else if ((pInstance->Current-pInstance->Target <POINT_ZERO_ONE_DB)&&
53 (pInstance->Current-pInstance->Target > -POINT_ZERO_ONE_DB)){
54 pInstance->Current = pInstance->Target; /* Difference is not significant anymore. Make them equal. */
72 pInstance->Current = pInstance->Target; /* In case the core function would have changed the Current value */
81 use of the core soft mix function which can change the Current value! */
84 if ((pInstance->Current-pInstance->Target <POINT_ZERO_ONE_DB)&&
85 (pInstance->Current-pInstance->Target > -POINT_ZERO_ONE_DB))
    [all...]
MixSoft_1St_D32C31_WRA.c 50 if (pInstance->Current != pInstance->Target)
53 pInstance->Current = pInstance->Target;
54 }else if ((pInstance->Current-pInstance->Target <POINT_ZERO_ONE_DB)&&
55 (pInstance->Current-pInstance->Target > -POINT_ZERO_ONE_DB)){
56 pInstance->Current = pInstance->Target; /* Difference is not significant anymore. Make them equal. */
76 Mult3s_32x16( src, (LVM_INT16)(pInstance->Current>>16), dst, n );
84 if ((pInstance->Current-pInstance->Target <POINT_ZERO_ONE_DB)&&
85 (pInstance->Current-pInstance->Target > -POINT_ZERO_ONE_DB)){
86 pInstance->Current = pInstance->Target; /* Difference is not significant anymore. Make them equal. */
LVC_MixSoft_1St_2i_D16C31_SAT.c 52 if ((pInstance1->Current != pInstance1->Target)||(pInstance2->Current != pInstance2->Target))
56 pInstance1->Current = pInstance1->Target;
60 else if (Abs_32(pInstance1->Current-pInstance1->Target) < pInstance1->Delta)
62 pInstance1->Current = pInstance1->Target; /* Difference is not significant anymore. Make them equal. */
76 pInstance2->Current = pInstance2->Target;
80 else if (Abs_32(pInstance2->Current-pInstance2->Target) < pInstance2->Delta)
82 pInstance2->Current = pInstance2->Target; /* Difference is not significant anymore. Make them equal. */
124 if (Abs_32(pInstance1->Current-pInstance1->Target) < pInstance1->Delta)
126 pInstance1->Current = pInstance1->Target; /* Difference is not significant anymore. Make them equal. *
    [all...]
LVC_Mixer_GetCurrent.c 39 CurrentGain=pInstance->Current>>(16-pInstance->Shift); // CurrentGain in Q16.15 format
LVC_MixSoft_2St_D16C31_SAT.c 43 if ((pInstance1->Current == pInstance1->Target)&&(pInstance1->Current == 0)){
46 else if ((pInstance2->Current == pInstance2->Target)&&(pInstance2->Current == 0)){
49 else if ((pInstance1->Current != pInstance1->Target) || (pInstance2->Current != pInstance2->Target))
Core_MixInSoft_D32C31_SAT.c 46 if (pInstance->Target >= pInstance->Current){
51 MUL32x32INTO32(pInstance->Current,pInstance->Alpha,CurrentTimesAlpha,31); /* Q0 * Q31 in Q0 */
52 pInstance->Current = TargetTimesOneMinAlpha + CurrentTimesAlpha; /* Q0 + Q0 into Q0*/
53 CurrentShort = (LVM_INT16)(pInstance->Current>>16); /* From Q31 to Q15*/
72 MUL32x32INTO32(pInstance->Current,pInstance->Alpha,CurrentTimesAlpha,31); /* Q0 * Q31 in Q0 */
73 pInstance->Current = TargetTimesOneMinAlpha + CurrentTimesAlpha; /* Q0 + Q0 into Q0*/
74 CurrentShort = (LVM_INT16)(pInstance->Current>>16); /* From Q31 to Q15*/
Core_MixSoft_1St_D32C31_WRA.c 46 if (pInstance->Target >= pInstance->Current)
53 MUL32x32INTO32(pInstance->Current,pInstance->Alpha,CurrentTimesAlpha,31) /* Q31 * Q31 in Q31 */
54 pInstance->Current = TargetTimesOneMinAlpha + CurrentTimesAlpha; /* Q31 + Q31 into Q31*/
55 CurrentShort = (LVM_INT16)(pInstance->Current>>16); /* From Q31 to Q15*/
70 MUL32x32INTO32(pInstance->Current,pInstance->Alpha,CurrentTimesAlpha,31) /* Q31 * Q31 in Q31 */
71 pInstance->Current = TargetTimesOneMinAlpha + CurrentTimesAlpha; /* Q31 + Q31 into Q31*/
72 CurrentShort = (LVM_INT16)(pInstance->Current>>16); /* From Q31 to Q15*/
LVC_MixInSoft_D16C31_SAT.c 51 if (pInstance->Current != pInstance->Target)
54 pInstance->Current = pInstance->Target;
57 }else if (Abs_32(pInstance->Current-pInstance->Target) < pInstance->Delta){
58 pInstance->Current = pInstance->Target; /* Difference is not significant anymore. Make them equal. */
88 pInstance->Current = pInstance->Target; /* In case the LVCore function would have changed the Current value */
99 if (Abs_32(pInstance->Current-pInstance->Target) < pInstance->Delta){
100 pInstance->Current = pInstance->Target; /* Difference is not significant anymore. Make them equal. */
LVC_Mixer_SetTarget.c 28 /* Current for a given Audio Stream based on new value of TargetGain */
32 /* "Current" based on maximum(TargetGain,CurrentGain) */
34 /* MaxGain of 2.5, Shift = 2, Current=1.9/4=0.475, Target=2.5/4=0.625 */
36 /* fraction gain is provided through Current=0.475 and Target=0.625 */
54 CurrentGain=pInstance->Current>>(16-pInstance->Shift); // CurrentGain in Q16.15 format
64 pInstance->Current=CurrentGain<<(16-Shift); // Update fractional gain Current
LVC_MixSoft_1St_D16C31_SAT.c 51 if (pInstance->Current != pInstance->Target)
54 pInstance->Current = pInstance->Target;
57 }else if (Abs_32(pInstance->Current-pInstance->Target) < pInstance->Delta){
58 pInstance->Current = pInstance->Target; /* Difference is not significant anymore. Make them equal. */
99 if (Abs_32(pInstance->Current-pInstance->Target) < pInstance->Delta){
100 pInstance->Current = pInstance->Target; /* Difference is not significant anymore. Make them equal. */
LVC_Core_MixHard_1St_2i_D16C31_SAT.c 45 Current1Short = (LVM_INT16)(pInstance1->Current >> 16);
46 Current2Short = (LVM_INT16)(pInstance2->Current >> 16);
LVC_Core_MixHard_2St_D16C31_SAT.c 43 Current1Short = (LVM_INT16)(pInstance1->Current >> 16);
44 Current2Short = (LVM_INT16)(pInstance2->Current >> 16);
LVC_Mixer_Init.c 32 /* "Current" based on maximum(TargetGain,CurrentGain) */
34 /* MaxGain of 2.5, Shift = 2, Current=1.9/4=0.475, Target=2.5/4=0.625 */
36 /* fraction gain is provided through Current=0.475 and Target=0.625 */
64 pInstance->Current=CurrentGain<<(16-Shift); // Update fractional gain Current
LVC_Core_MixSoft_1St_2i_D16C31_WRA.c 45 LVM_INT32 CurrentL=pInstanceL->Current;
49 LVM_INT32 CurrentR=pInstanceR->Current;
139 pInstanceL->Current=CurrentL;
140 pInstanceR->Current=CurrentR;
  /external/v8/src/ia32/
register-allocator-ia32.cc 42 Result fresh = CodeGeneratorScope::Current()->allocator()->Allocate();
44 if (CodeGeneratorScope::Current()->IsUnsafeSmi(handle())) {
45 CodeGeneratorScope::Current()->MoveUnsafeSmi(fresh.reg(), handle());
47 CodeGeneratorScope::Current()->masm()->Set(fresh.reg(),
60 Result fresh = CodeGeneratorScope::Current()->allocator()->Allocate(target);
63 CodeGeneratorScope::Current()->masm()->mov(fresh.reg(), reg());
66 if (CodeGeneratorScope::Current()->IsUnsafeSmi(handle())) {
67 CodeGeneratorScope::Current()->MoveUnsafeSmi(fresh.reg(), handle());
69 CodeGeneratorScope::Current()->masm()->Set(fresh.reg(),
75 ASSERT(CodeGeneratorScope::Current()->has_valid_frame())
    [all...]
  /external/v8/src/x64/
register-allocator-x64.cc 42 Result fresh = CodeGeneratorScope::Current()->allocator()->Allocate();
44 CodeGeneratorScope::Current()->masm()->Move(fresh.reg(), handle());
55 Result fresh = CodeGeneratorScope::Current()->allocator()->Allocate(target);
58 CodeGeneratorScope::Current()->masm()->movq(fresh.reg(), reg());
61 CodeGeneratorScope::Current()->masm()->Move(fresh.reg(), handle());
65 ASSERT(CodeGeneratorScope::Current()->has_valid_frame());
66 CodeGeneratorScope::Current()->frame()->Spill(target);
67 ASSERT(CodeGeneratorScope::Current()->allocator()->count(target) == 1);
  /external/v8/src/
register-allocator-inl.h 67 CodeGeneratorScope::Current()->allocator()->Unuse(reg());
74 CodeGeneratorScope::Current()->allocator()->Unuse(reg());
83 CodeGeneratorScope::Current()->allocator()->Use(reg());
jump-target-inl.h 35 return CodeGeneratorScope::Current();
  /external/chromium/base/
process_posix.cc 54 Process Process::Current() {
process.h 53 // A handle to the current process.
54 static Process Current();
69 // Is the this process the current process.
process_win.cc 53 Process Process::Current() {

Completed in 196 milliseconds

1 2 3