HomeSort by relevance Sort by last modified time
    Searched defs:Shift (Results 1 - 25 of 78) sorted by null

1 2 3 4

  /frameworks/av/media/libeffects/lvm/lib/Common/src/
LVC_Mixer_Init.c 30 /* This function caclulates the "Shift" required to provide the */
34 /* MaxGain of 2.5, Shift = 2, Current=1.9/4=0.475, Target=2.5/4=0.625 */
35 /* Therefore integer gain of 4 is provided by Left Shift of 2 and */
52 LVM_INT16 Shift=0;
59 while(MaxGain>0){ // Update Shift required to provide integer gain
60 Shift++;
63 pInstance->Target=TargetGain<<(16-Shift); // Update fractional gain Target
64 pInstance->Current=CurrentGain<<(16-Shift); // Update fractional gain Current
65 pInstance->Shift=Shift; // Update Shif
    [all...]
LVC_Mixer_SetTarget.c 27 /* This function updates the private instance parameters: Shift,Target,*/
30 /* This function caclulates the "Shift" required to provide the */
34 /* MaxGain of 2.5, Shift = 2, Current=1.9/4=0.475, Target=2.5/4=0.625 */
35 /* Therefore integer gain of 4 is provided by Left Shift of 2 and */
50 LVM_INT32 Shift=0;
54 CurrentGain=pInstance->Current>>(16-pInstance->Shift); // CurrentGain in Q16.15 format
59 while(MaxGain>0){ // Update Shift required to provide integer gain
60 Shift++;
63 pInstance->Target=TargetGain<<(16-Shift); // Update fractional gain Target
64 pInstance->Current=CurrentGain<<(16-Shift); // Update fractional gain Curren
    [all...]
FO_2I_D16F32Css_LShx_TRC_WRA_01_Private.h 27 LVM_INT16 Shift; /* Shift value*/
LVM_Mixer_TimeConstant.c 68 LVM_UINT16 Shift;
133 for (Shift=0; Shift<((Alpha_TableSize-1)/2); Shift++)
142 Shift = (LVM_UINT16)((Shift << 1));
146 Shift++;
151 Diff = (LVM_INT32)(Table[Shift] - Table[Shift+1]);
153 Product = Table[Shift+1] + (LVM_UINT32)Diff
    [all...]
FO_2I_D16F32C15_LShx_TRC_WRA_01.c 28 pBiquadState->Shift is Shift value
45 LVM_INT16 Shift;
51 Shift = pBiquadState->Shift;
93 /*Apply shift: Instead of left shift on 16-bit result, right shift of (15-shift) is applied
95 ynL = ynL>>(15-Shift);
    [all...]
LVC_Mixer_Private.h 34 LVM_INT32 Shift; /* Left Shift for Integer part of Gain */
dB_to_Lin32.c 70 LVM_INT16 Shift;
81 Shift = (LVM_INT16)((((LVM_UINT32)(-db_fix) >> 4) * FOUR_OVER_SIX) >> 17); /* Number of 6dB steps in Q11.4 format */
82 Remain = -db_fix - (Shift * SIX_DB);
84 Lin_val_32 = (LVM_INT32)((LVM_UINT32)Remain >> (16 + Shift));
95 Shift = (LVM_INT16)((((LVM_UINT32)db_fix >> 4) * FOUR_OVER_SIX) >> 17); /* Number of 6dB steps in Q11.4 format */
96 Remain = db_fix - (Shift * SIX_DB);
98 Lin_val_32 = (LVM_INT32)((LVM_UINT32)Remain >> (15 - Shift));
  /external/chromium_org/net/server/
http_connection.cc 43 void HttpConnection::Shift(int num_bytes) {
  /external/llvm/include/llvm/Support/
LEB128.h 27 // NOTE: this assumes that this signed shift is an arithmetic right shift.
83 unsigned Shift = 0;
85 Value += (*p & 0x7f) << Shift;
86 Shift += 7;
  /frameworks/av/media/libeffects/lvm/lib/StereoWidening/src/
LVCS_BypassMix.h 46 LVM_UINT16 Output_Shift; /* Correcting gain output shift */
54 /* Output gain settings, Gain = (Loss/32768) * 2^Shift */
55 LVM_UINT16 Shift; /* Left shifts required */
  /art/runtime/base/
bit_field.h 48 // Returns the shift count needed to right-shift the bit field to
50 static int Shift() {
  /external/llvm/lib/Target/Mips/MCTargetDesc/
MipsMCCodeEmitter.cpp 51 // If the D<shift> instruction has a shift amount that is greater
52 // than 31 (checked in calling routine), lower it to a D<shift>32 instruction
55 assert(Inst.getNumOperands() == 3 && "Invalid no. of operands for shift!");
58 int64_t Shift = Inst.getOperand(2).getImm();
59 if (Shift <= 31)
61 Shift -= 32;
64 Inst.getOperand(2).setImm(Shift);
69 llvm_unreachable("Unexpected shift instruction");
136 unsigned Shift = IsLittleEndian ? i * 8 : (Size - 1 - i) * 8
    [all...]
  /external/pdfium/core/src/fxcodec/lcms2/lcms2-2.6/src/
cmshalf.c 462 static cmsUInt8Number Shift[512] = {
    [all...]
  /frameworks/av/media/libeffects/lvm/lib/Common/lib/
CompLim.h 47 LVM_INT16 Shift; /* Shift gain */
BIQUAD.h 76 /*** First order coefficients with Shift*****************************************************/
82 LVM_INT16 Shift; /* Shift */
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p10/src/
omxVCM4P10_DequantTransformResidualFromPairAndAdd.c 35 int Shift = QP / 6;
42 Value = (pSrcDst[i] * pVRow[armVCM4P10_PosToVCol4x4[i]]) << Shift;
omxVCM4P10_TransformDequantChromaDCFromPair.c 34 int Shift = (QP/6)-1 ;
38 if (Shift >= 0)
42 Value = (pDst[i] * Scale) << Shift;
omxVCM4P10_TransformDequantLumaDCFromPair.c 34 int Shift = (QP/6)-2 ;
38 if (Shift >= 0)
42 Value = (pDst[i] * Scale) << Shift;
48 Shift = -Shift;;
49 Round = 1<<(Shift-1);
53 Value = (pDst[i] * Scale + Round) >> Shift;
  /external/clang/include/clang/Basic/
OperatorPrecedence.h 39 Shift = 11, // <<, >>
  /external/llvm/lib/Support/
ScaledNumber.cpp 46 // Shift as little as possible to maximize precision.
48 int Shift = 64 - LeadingZeros;
50 Upper = Upper << LeadingZeros | Lower >> Shift;
51 return getRounded(Upper, Shift,
52 Shift && (Lower & UINT64_C(1) << (Shift - 1)));
64 int Shift = 0;
66 Shift -= Zeros;
74 return getAdjusted<uint32_t>(Quotient, Shift);
77 return getRounded<uint32_t>(Quotient, Shift, Remainder >= getHalf(Divisor))
    [all...]
  /external/lzma/C/
Ppmd.h 21 #define PPMD_GET_MEAN_SPEC(summ, shift, round) (((summ) + (1 << ((shift) - (round)))) >> (shift))
36 Byte Shift; /* Speed of Freq change; low Shift is for fast change */
37 Byte Count; /* Count to next change of Shift */
40 #define Ppmd_See_Update(p) if ((p)->Shift < PPMD_PERIOD_BITS && --(p)->Count == 0) \
41 { (p)->Summ <<= 1; (p)->Count = (Byte)(3 << (p)->Shift++); }
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/m4p10/src/
omxVCM4P10_TransformDequantChromaDCFromPair_s.s 54 Shift RN 9
103 LDRSB Shift, [pQPDivTable, QP] ;// Shift = pQPDivTable[QP]
109 LSL Scale, Scale, Shift ;// Scale = Scale << Shift
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/vc/m4p10/src/
omxVCM4P10_TransformDequantChromaDCFromPair_s.s 57 Shift RN 9
113 LDRSB Shift, [pQPDivTable, QP] ;// Shift = pQPDivTable[QP]
123 LSL Scale, Scale, Shift ;// Scale = Scale << Shift
  /external/clang/lib/Format/
WhitespaceManager.cpp 212 int Shift = 0;
214 Shift = Column - Changes[i].StartOfTokenColumn;
217 Shift = Changes[i].IndentationOffset +
221 assert(Shift >= 0);
222 Changes[i].Spaces += Shift;
224 Changes[i + 1].PreviousEndOfTokenColumn += Shift;
225 Changes[i].StartOfTokenColumn += Shift;
  /external/qemu/distrib/sdl-1.2.15/src/main/symbian/EKA2/
vectorbuffer.h 50 TPtrC8 Shift();
143 //Shift(); //data is lost
149 TPtrC8 TVectorBuffer<C>::Shift()
162 // RDebug::Print(_L("vector: shift"));
163 return Shift(); //this happens when buffer is terminated, and data lies in next
200 const T& Shift();
218 const T& TVector<T, C>::Shift()
220 const TPtrC8 ptr = TVectorBuffer<C * sizeof(T)>::Shift();

Completed in 962 milliseconds

1 2 3 4