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

  /frameworks/base/media/libeffects/lvm/lib/Common/src/
LVC_Mixer_SetTimeConstant.c 29 /* Delta=(2147483647*4*1000)/(NumChannels*SampleRate*Tc_millisec) */
41 /* Delta - the step change for fractional gain per 4 samples */
63 LVM_INT32 Delta=DeltaTable[Fs];
64 Delta=Delta>>(NumChannels-1);
67 Delta=0x7FFFFFFF;
69 Delta=Delta/Tc_millisec;
71 if(Delta==0)
72 Delta=1; // If Time Constant is so large that Delta is 0, assign minimum value to Delt
    [all...]
LVC_Mixer_VarSlope_SetTimeConstant.c 30 /* Delta=(2147483647*4*1000)/(NumChannels*SampleRate*Tc_millisec) */
42 /* Delta - the step change for fractional gain per 4 samples */
64 LVM_INT32 Delta=DeltaTable[Fs];
69 Delta=Delta>>(NumChannels-1);
81 Delta=0x7FFFFFFF;
83 Delta=Delta/Tc_millisec;
85 if(Delta==0)
86 Delta=1; // If Time Constant is so large that Delta is 0, assign minimum value to Delt
    [all...]
LVC_Core_MixSoft_1St_D16C31_WRA.c 40 LVM_INT32 Delta=pInstance->Delta;
50 ADD2_SAT_32x32(Current,Delta,Temp); /* Q31 + Q31 into Q31*/
63 ADD2_SAT_32x32(Current,Delta,Temp); /* Q31 + Q31 into Q31*/
78 Current -= Delta; /* Q31 + Q31 into Q31*/
90 Current -= Delta; /* Q31 + Q31 into Q31*/
LVC_Mixer_Private.h 35 LVM_INT32 Delta; /* 32 bit number specifying the fractional value of Delta Gain */
LVC_Core_MixInSoft_D16C31_SAT.c 40 LVM_INT32 Delta=pInstance->Delta;
50 ADD2_SAT_32x32(Current,Delta,Temp); /* Q31 + Q31 into Q31*/
69 ADD2_SAT_32x32(Current,Delta,Temp); /* Q31 + Q31 into Q31*/
89 Current -= Delta; /* Q31 + Q31 into Q31*/
107 Current -= Delta; /* Q31 + Q31 into Q31*/
  /external/llvm/lib/Support/
DeltaAlgorithm.cpp 44 DeltaAlgorithm::Delta(const changeset_ty &Changes,
66 return Delta(Changes, SplitSets);
79 Res = Delta(*it, Sets);
95 Res = Delta(Complement, ComplementSets);
109 // Otherwise run the real delta algorithm.
113 return Delta(Changes, Sets);
MemoryBuffer.cpp 301 off_t Delta = Offset - RealMapOffset;
302 size_t RealMapSize = MapSize + Delta;
308 StringRef(Pages + Delta, MapSize), Filename, RequiresNullTerminator));
  /external/llvm/lib/Transforms/Scalar/
LowerAtomic.cpp 40 Value *Ptr = II->getArgOperand(0), *Delta = II->getArgOperand(1);
47 Res = Builder.CreateAdd(Orig, Delta);
50 Res = Builder.CreateSub(Orig, Delta);
53 Res = Builder.CreateAnd(Orig, Delta);
56 Res = Builder.CreateNot(Builder.CreateAnd(Orig, Delta));
59 Res = Builder.CreateOr(Orig, Delta);
62 Res = Builder.CreateXor(Orig, Delta);
65 Res = Builder.CreateSelect(Builder.CreateICmpSLT(Orig, Delta),
66 Delta, Orig);
69 Res = Builder.CreateSelect(Builder.CreateICmpSLT(Orig, Delta),
    [all...]
  /external/llvm/lib/MC/
MCObjectStreamer.cpp 240 const MCExpr *Delta =
243 if (!Delta->EvaluateAsAbsolute(Res, getAssembler()))
  /external/clang/lib/Rewrite/
DeltaTree.cpp 1 //===--- DeltaTree.cpp - B-Tree for Rewrite Delta tracking ----------------===//
26 /// DeltaTree implements a key/value mapping from FileIndex to Delta, allowing
28 /// can also efficiently tell us the full accumulated delta for a specific
33 /// former and adds children pointers. Each node knows the full delta of all
35 /// full delta implied by a whole subtree in constant time.
43 int Delta;
46 SourceDelta Delta;
47 Delta.FileLoc = Loc;
48 Delta.Delta = D
    [all...]
  /external/freetype/src/pshinter/
pshglob.c 155 FT_Int reference, delta; local
166 delta = read[0] - reference;
175 delta = read[1] - reference;
196 if ( delta < 0 )
198 if ( delta < delta0 )
199 zone->org_delta = delta;
203 if ( delta > delta0 )
204 zone->org_delta = delta;
214 zone->org_delta = delta;
279 FT_Int delta; local
302 FT_Int delta; local
319 FT_Int dim, top, bot, delta; local
533 FT_Pos delta; local
    [all...]
  /external/llvm/lib/Target/PowerPC/
PPCFrameLowering.cpp 30 // alignment. This does not currently work, because the delta between old and
33 // variable delta. You don't want to do that anyway; a better approach is to
569 int Delta = StackAdj - MaxTCRetDelta;
570 assert((Delta >= 0) && "Delta must be positive");
572 FrameSize += (StackAdj +Delta);
    [all...]
  /frameworks/base/services/input/
InputReader.h     [all...]

Completed in 327 milliseconds