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

1 2

  /external/libvpx/vp8/common/
quant_common.h 17 extern int vp8_dc_quant(int QIndex, int Delta);
18 extern int vp8_dc2quant(int QIndex, int Delta);
19 extern int vp8_ac2quant(int QIndex, int Delta);
20 extern int vp8_dc_uv_quant(int QIndex, int Delta);
21 extern int vp8_ac_uv_quant(int QIndex, int Delta);
quant_common.c 39 int vp8_dc_quant(int QIndex, int Delta)
43 QIndex = QIndex + Delta;
54 int vp8_dc2quant(int QIndex, int Delta)
58 QIndex = QIndex + Delta;
69 int vp8_dc_uv_quant(int QIndex, int Delta)
73 QIndex = QIndex + Delta;
101 int vp8_ac2quant(int QIndex, int Delta)
105 QIndex = QIndex + Delta;
119 int vp8_ac_uv_quant(int QIndex, int Delta)
123 QIndex = QIndex + Delta;
    [all...]
  /frameworks/av/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_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*/
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_MixSoft_1St_2i_D16C31_SAT.c 54 if(pInstance1->Delta == 0x7FFFFFFF)
60 else if (Abs_32(pInstance1->Current-pInstance1->Target) < pInstance1->Delta)
74 if(pInstance2->Delta == 0x7FFFFFFF)
80 else if (Abs_32(pInstance2->Current-pInstance2->Target) < pInstance2->Delta)
124 if (Abs_32(pInstance1->Current-pInstance1->Target) < pInstance1->Delta)
138 if (Abs_32(pInstance2->Current-pInstance2->Target) < pInstance2->Delta)
LVC_MixInSoft_D16C31_SAT.c 53 if(pInstance->Delta == 0x7FFFFFFF){
57 }else if (Abs_32(pInstance->Current-pInstance->Target) < pInstance->Delta){
99 if (Abs_32(pInstance->Current-pInstance->Target) < pInstance->Delta){
LVC_MixSoft_1St_D16C31_SAT.c 53 if(pInstance->Delta == 0x7FFFFFFF){
57 }else if (Abs_32(pInstance->Current-pInstance->Target) < pInstance->Delta){
99 if (Abs_32(pInstance->Current-pInstance->Target) < pInstance->Delta){
LVC_Core_MixSoft_1St_2i_D16C31_WRA.c 44 LVM_INT32 DeltaL=pInstanceL->Delta;
48 LVM_INT32 DeltaR=pInstanceR->Delta;
LVC_Mixer_Private.h 35 LVM_INT32 Delta; /* 32 bit number specifying the fractional value of Delta Gain */
  /external/clang/include/clang/Rewrite/
DeltaTree.h 1 //===--- DeltaTree.h - B-Tree for Rewrite Delta tracking --------*- C++ -*-===//
22 /// implements a key/value mapping from index to delta, and allows fast lookup
24 /// efficiently tell us the full accumulated delta for a specific file offset
36 /// getDeltaAt - Return the accumulated delta at the specified file offset.
42 /// this method is used to record that info. It inserts a delta of 'Delta'
44 void AddDelta(unsigned FileIndex, int Delta);
  /external/clang/lib/Rewrite/
DeltaTree.cpp 1 //===--- DeltaTree.cpp - B-Tree for Rewrite Delta tracking ----------------===//
24 /// DeltaTree implements a key/value mapping from FileIndex to Delta, allowing
26 /// can also efficiently tell us the full accumulated delta for a specific
31 /// former and adds children pointers. Each node knows the full delta of all
33 /// full delta implied by a whole subtree in constant time.
41 int Delta;
44 SourceDelta Delta;
45 Delta.FileLoc = Loc;
46 Delta.Delta = D
    [all...]
  /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 299 off_t Delta = Offset - RealMapOffset;
300 size_t RealMapSize = MapSize + Delta;
306 StringRef(Pages + Delta, MapSize), Filename, RequiresNullTerminator));
  /external/llvm/include/llvm/ADT/
DeltaAlgorithm.h 17 /// DeltaAlgorithm - Implements the delta debugging algorithm (A. Zeller '99)
58 /// Delta - Minimize a set of \arg Changes which has been partioned into
60 changeset_ty Delta(const changeset_ty &Changes,
  /external/llvm/lib/CodeGen/
InterferenceCache.h 90 void addRef(int Delta) { RefCount += Delta; }
  /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/MC/
MCObjectStreamer.cpp 248 const MCExpr *Delta =
251 if (!Delta->EvaluateAsAbsolute(Res, getAssembler()))
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/sound/
trident.h 312 unsigned short Delta; /* 16 bits */
  /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...]
  /external/llvm/lib/Target/ARM/
ARMConstantIslandPass.cpp 1642 int delta = TII->GetInstSizeInBytes(&MBB->back()); local
1978 int delta = OrigSize - NewSize; local
    [all...]
  /frameworks/base/services/input/
InputReader.h     [all...]
  /external/chromium/sdch/open-vcdiff/vsprojects/
vcdiff_test.bat 53 -dictionary %DICTIONARY_FILE% -target %TARGET_FILE% -delta %DELTA_FILE% ^
62 -delta %DELTA_FILE% ^
66 -delta %DELTA_FILE% ^
108 -delta %DELTA_FILE% ^
123 -delta %DELTA_FILE% ^
143 -delta %DELTA_FILE% ^
156 -delta %DELTA_FILE% ^
167 -delta %DELTA_FILE% ^
176 -delta %DELTA_FILE% ^
181 rem Delta file not found
    [all...]
  /external/clang/lib/AST/
StmtPrinter.cpp 79 raw_ostream &Indent(int Delta = 0) {
80 for (int i = 0, e = IndentLevel+Delta; i < e; ++i)
    [all...]

Completed in 1338 milliseconds

1 2