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

1 2 3 4 5 6 7 8

  /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 */
64 LVM_INT16 Shift=0;
71 while(MaxGain>0){ // Update Shift required to provide integer gain
72 Shift++;
75 pInstance->Target=TargetGain<<(16-Shift); // Update fractional gain Target
76 pInstance->Current=CurrentGain<<(16-Shift); // Update fractional gain Current
77 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 */
57 LVM_INT32 Shift=0;
61 CurrentGain=pInstance->Current>>(16-pInstance->Shift); // CurrentGain in Q16.15 format
66 while(MaxGain>0){ // Update Shift required to provide integer gain
67 Shift++;
70 pInstance->Target=TargetGain<<(16-Shift); // Update fractional gain Target
71 pInstance->Current=CurrentGain<<(16-Shift); // Update fractional gain Curren
    [all...]
FO_2I_D16F32C15_LShx_TRC_WRA_01.c 28 pBiquadState->Shift is Shift value
130 LVM_INT16 Shift;
136 Shift = pBiquadState->Shift;
178 /*Apply shift: Instead of left shift on 16-bit result, right shift of (15-shift) is applied
180 ynL = ynL>>(15-Shift);
    [all...]
FO_2I_D16F32Css_LShx_TRC_WRA_01_Private.h 36 LVM_INT16 Shift; /* Shift value*/
LVC_Mixer_Private.h 43 LVM_INT32 Shift; /* Left Shift for Integer part of Gain */
LVM_Mixer_TimeConstant.c 74 LVM_UINT16 Shift;
138 for (Shift = 0; Shift < ((Alpha_TableSize - 1) / 2); Shift++)
147 Shift = (LVM_UINT16)((Shift << 1));
151 Shift++;
157 Diff = (Table[Shift] - Table[Shift + 1]);
159 ProductFloat = Table[Shift + 1] + Diff
    [all...]
dB_to_Lin32.c 85 LVM_INT16 Shift;
96 Shift = (LVM_INT16)((((LVM_UINT32)(-db_fix) >> 4) * FOUR_OVER_SIX) >> 17); /* Number of 6dB steps in Q11.4 format */
97 Remain = -db_fix - (Shift * SIX_DB);
99 Lin_val_32 = (LVM_INT32)((LVM_UINT32)Remain >> (16 + Shift));
110 Shift = (LVM_INT16)((((LVM_UINT32)db_fix >> 4) * FOUR_OVER_SIX) >> 17); /* Number of 6dB steps in Q11.4 format */
111 Remain = db_fix - (Shift * SIX_DB);
113 Lin_val_32 = (LVM_INT32)((LVM_UINT32)Remain >> (15 - Shift));
  /external/capstone/
LEB128.h 30 unsigned Shift = 0;
32 Value += (*p & 0x7f) << Shift;
33 Shift += 7;
  /external/llvm/lib/DebugInfo/DWARF/
DWARFDebugInfoEntry.cpp 83 uint64_t Shift = countTrailingZeros(Val);
84 assert(Shift < 64 && "undefined behavior");
85 uint64_t Bit = 1ULL << Shift;
  /frameworks/av/media/libeffects/lvm/lib/StereoWidening/src/
LVCS_BypassMix.h 50 LVM_UINT16 Output_Shift; /* Correcting gain output shift */
58 /* Output gain settings, Gain = (Loss/32768) * 2^Shift */
59 LVM_UINT16 Shift; /* Left shifts required */
66 /* Output gain settings, Gain = (Loss/32768) * 2^Shift */
67 LVM_UINT16 Shift; /* Left shifts required */
  /prebuilts/go/darwin-x86/doc/codewalk/
markov.go 67 // Shift removes the first word from the Prefix and appends the given word.
68 func (p Prefix) Shift(word string) {
98 p.Shift(s)
113 p.Shift(next)
  /prebuilts/go/linux-x86/doc/codewalk/
markov.go 67 // Shift removes the first word from the Prefix and appends the given word.
68 func (p Prefix) Shift(word string) {
98 p.Shift(s)
113 p.Shift(next)
  /device/linaro/bootloader/OpenPlatformPkg/Platforms/AMD/Styx/AcpiTables/
Dsdt.c 29 IN UINTN Shift
35 Data <<= Shift;
  /device/linaro/bootloader/edk2/MdePkg/Library/DxeTimerLibEsal/
DxeTimerLibEsal.c 201 INTN Shift;
217 Shift = MAX (0, HighBitSet64 (Remainder) - 33);
218 Remainder = RShiftU64 (Remainder, (UINTN) Shift);
219 Frequency = RShiftU64 (Frequency, (UINTN) Shift);
  /device/linaro/bootloader/edk2/MdePkg/Library/SecPeiDxeTimerLibCpu/
IpfTimerLib.c 194 INTN Shift;
210 Shift = MAX (0, HighBitSet64 (Remainder) - 33);
211 Remainder = RShiftU64 (Remainder, (UINTN) Shift);
212 Frequency = RShiftU64 (Frequency, (UINTN) Shift);
  /device/linaro/bootloader/edk2/UefiCpuPkg/Library/SecPeiDxeTimerLibUefiCpu/
IpfTimerLib.c 194 INTN Shift;
210 Shift = MAX (0, HighBitSet64 (Remainder) - 33);
211 Remainder = RShiftU64 (Remainder, (UINTN) Shift);
212 Frequency = RShiftU64 (Frequency, (UINTN) Shift);
X86TimerLib.c 244 INTN Shift;
260 Shift = MAX (0, HighBitSet64 (Remainder) - 33);
261 Remainder = RShiftU64 (Remainder, (UINTN) Shift);
262 Frequency = RShiftU64 (Frequency, (UINTN) Shift);
  /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 += uint64_t(*p & 0x7f) << Shift;
86 Shift += 7;
97 unsigned Shift = 0;
101 Value |= ((Byte & 0x7f) << Shift);
102 Shift += 7;
106 Value |= (-1ULL) << Shift;
  /external/pdfium/third_party/lcms/src/
cmshalf.c 463 static cmsUInt8Number Shift[512] = {
    [all...]
  /frameworks/av/media/libeffects/lvm/lib/Common/lib/
CompLim.h 47 LVM_INT16 Shift; /* Shift gain */
  /device/linaro/bootloader/edk2/AppPkg/Applications/Sockets/WebServer/
Handles.c 48 INTN Shift;
120 for ( Shift = ( sizeof ( Shift ) << 3 ) - 4; 0 <= Shift; Shift -= 4 ) {
124 Digit = (( Value >> Shift ) & 0xf ) | '0';
190 for ( Shift = 4; 0 <= Shift; Shift -= 4 ) {
194 Digit = (( Value >> Shift ) & 0xf ) | '0'
    [all...]
  /device/linaro/bootloader/edk2/CorebootPayloadPkg/Library/AcpiTimerLib/
AcpiTimerLib.c 253 INTN Shift;
269 Shift = MAX (0, HighBitSet64 (Remainder) - 33);
270 Remainder = RShiftU64 (Remainder, (UINTN) Shift);
271 Frequency = RShiftU64 (Frequency, (UINTN) Shift);
  /device/linaro/bootloader/edk2/PerformancePkg/Library/TscTimerLib/
TscTimerLibShare.c 253 INTN Shift;
269 Shift = MAX (0, HighBitSet64 (Remainder) - 33);
270 Remainder = RShiftU64 (Remainder, (UINTN) Shift);
271 Frequency = RShiftU64 (Frequency, (UINTN) Shift);
  /external/clang/include/clang/Basic/
OperatorPrecedence.h 39 Shift = 11, // <<, >>
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/clang/include/clang/Basic/
OperatorPrecedence.h 39 Shift = 11, // <<, >>

Completed in 472 milliseconds

1 2 3 4 5 6 7 8