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

1 2 3

  /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/llvm/lib/Target/Mips/MCTargetDesc/
MipsDirectObjLower.cpp 21 // If the D<shift> instruction has a shift amount that is greater
22 // than 31 (checked in calling routine), lower it to a D<shift>32 instruction
25 assert(Inst.getNumOperands() == 3 && "Invalid no. of operands for shift!");
28 int64_t Shift = Inst.getOperand(2).getImm();
29 if (Shift <= 31)
31 Shift -= 32;
34 Inst.getOperand(2).setImm(Shift);
39 llvm_unreachable("Unexpected shift instruction");
MipsMCCodeEmitter.cpp 54 unsigned Shift = IsLittleEndian ? i * 8 : (Size - 1 - i) * 8;
55 EmitByte((Val >> Shift) & 0xff, OS);
123 // If shift amount is >= 32 it the inst needs to be lowered further
  /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 */
  /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/chromium/third_party/libjingle/source/talk/base/
bytebuffer.cc 202 void ByteBuffer::Shift(size_t size) {
  /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/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();
  /external/llvm/lib/Archive/
ArchiveReader.cpp 28 unsigned Shift = 0;
34 Result |= (unsigned)((*At++) & 0x7F) << Shift;
35 Shift += 7;
  /external/llvm/lib/Target/AArch64/
AArch64ISelDAGToDAG.cpp 184 int UImm16, Shift;
188 if (A64Imms::isMOVZImm(DestWidth, BitPat, UImm16, Shift)) {
191 } else if (A64Imms::isMOVNImm(DestWidth, BitPat, UImm16, Shift)) {
194 } else if (DestWidth == 64 && A64Imms::isMOVNImm(32, BitPat, UImm16, Shift)) {
214 CurDAG->getTargetConstant(Shift, MVT::i32));
  /external/llvm/lib/Transforms/InstCombine/
InstCombineShifts.cpp 26 // See if we can fold away this shift.
40 // X shift (A srem B) -> X shift (A and B-1) iff B is a power of 2.
77 // If this is the opposite shift, we can directly reuse the input of the shift
79 // the value which means that we don't care if the shift has multiple uses.
80 // TODO: Handle opposite shift by exact value.
116 // We can often fold the shift into shifts-by-a-constant.
140 // We can often fold the shift into shifts-by-a-constant.
220 // If this is oversized composite shift, then unsigned shifts get 0
    [all...]
  /external/v8/src/
fixed-dtoa.cc 64 void Shift(int shift_amount) {
272 fractionals128.Shift(-exponent - 64);

Completed in 1063 milliseconds

1 2 3