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

1 2

  /frameworks/base/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));
  /frameworks/base/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/base/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/base/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/chromium/third_party/libjingle/source/talk/base/
bytebuffer.cc 202 void ByteBuffer::Shift(size_t size) {
  /frameworks/base/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
omxVCM4P10_TransformDequantLumaDCFromPair_s.s 119 Shift RN 10
326 LDRSB Shift, [pQPDivTable, QP] ;// Shift = pQPDivTable[QP]
336 ;// Both the cases i.e., Shift>=0 and Shift<0 cases are covered together
337 ;// We do not subtract 2 from Shift as in C reference, instead perform a
338 ;// Scale << Shift once in the beginning and do a right shift by a
347 LSL Scale, Scale, Shift ;// Scale = Scale << Shift
    [all...]
  /frameworks/base/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
omxVCM4P10_TransformDequantLumaDCFromPair_s.s 59 Shift RN 4
141 LDRSB Shift, [pQPDivTable, QP] ;// ARM CODE: Shift = pQPDivTable[QP]
147 LSL Scale, Scale, Shift ;// ARM CODE: Scale = Scale << Shift
174 ;// Both the cases i.e., Shift>=0 and Shift<0 cases are covered together
175 ;// We do not subtract 2 from Shift as in C reference, instead perform a
176 ;// Scale << Shift once in the beginning and do a right shift by a
    [all...]
  /external/llvm/lib/Archive/
ArchiveReader.cpp 24 unsigned Shift = 0;
30 Result |= (unsigned)((*At++) & 0x7F) << Shift;
31 Shift += 7;
  /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.
219 // If this is oversized composite shift, then unsigned shifts get 0
    [all...]
  /external/v8/src/
fixed-dtoa.cc 62 void Shift(int shift_amount) {
270 fractionals128.Shift(-exponent - 64);
  /external/webkit/Source/WebCore/inspector/front-end/
KeyboardShortcut.js 40 Shift: 1,
109 modifiers |= WebInspector.KeyboardShortcut.Modifiers.Shift;
163 if (modifiers & WebInspector.KeyboardShortcut.Modifiers.Shift)
164 res += isMac ? shiftKey : "<Shift> + ";
  /external/chromium/net/server/
http_server.cc 205 void HttpServer::Connection::Shift(int num_bytes) {
385 connection->Shift(pos);
408 connection->Shift(pos);
414 connection->Shift(pos);
  /external/llvm/lib/Target/MSP430/
MSP430ISelLowering.cpp 603 assert(0 && "Invalid shift opcode!");
618 // FIXME: for some shift amounts this might be done better!
792 bool Shift = false;
810 Shift = true;
815 Shift = true;
825 if (Shift)
    [all...]
  /external/llvm/lib/Target/PowerPC/
PPCISelDAGToDAG.cpp 85 /// isRotateAndMask - Returns true if Mask and Shift can be folded into a
339 unsigned Shift = 32;
343 !isInt32Immediate(N->getOperand(1).getNode(), Shift) || (Shift > 31))
347 // apply shift left to mask if it comes first
348 if (isShiftMask) Mask = Mask << Shift;
349 // determine which bits are made indeterminant by shift
350 Indeterminant = ~(0xFFFFFFFFu << Shift);
352 // apply shift right to mask if it comes first
353 if (isShiftMask) Mask = Mask >> Shift;
    [all...]

Completed in 428 milliseconds

1 2