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

1 2 3 4 5 6 7 8 910

  /external/webrtc/src/common_audio/signal_processing_library/main/source/
get_hanning_window.c 26 WebRtc_Word32 factor = ((WebRtc_Word32)0x40000000); local
28 factor = WebRtcSpl_DivW32W16(factor, size);
37 index += factor;
downsample_fast.c 22 WebRtc_Word16 *B, WebRtc_Word16 B_length, WebRtc_Word16 factor,
32 + (WebRtc_Word16)WEBRTC_SPL_MUL_16_16(factor, (out_length - 1)) + 1;
39 for (i = delay; i < endpos; i += factor)
  /dalvik/tests/004-annotations/src/android/test/anno/
AnnoFancyParameter.java 9 double factor(); method in interface:AnnoFancyParameter
FullyNoted.java 13 FullyNoted(@AnnoFancyParameter(factor=0.5) int bar)
21 @AnnoFancyParameter(factor=3.7879912899761) long two)
30 @AnnoFancyParameter(factor=3.7879912899761) long two)
  /hardware/ti/omap3/omx/system/src/openmax_il/perf/tests/
armtime 45 factor=0; # we are measuring after-before as (-before) + (after),
46 # so the factor before the test is -1, after the test is
71 # the first time an uptime line is encountered factor should be -1, the
74 factor = factor ? 1 : -1
76 uptime_total += factor * $1
77 uptime_idle += factor * $2
80 print "got(/proc/uptime):", $0, "=>", factor, uptime_total, uptime_idle
86 MHZtime[$1] += factor * $2 * 0.01
87 cpu_time += factor * $2 * 0.0
    [all...]
  /packages/apps/Camera/jni/feature_stab/src/dbreg/
dbstabsmooth.cpp 25 static bool vpmotion_multiply(VP_MOTION *in1, double factor, VP_MOTION *out);
237 //! Overloaded smoother function that takes in user-specidied smoothing factor
239 db_StabilizationSmoother::smoothMotion1(VP_MOTION *inmot, VP_MOTION *outmot, VP_MOTION *motLF, VP_MOTION *imotLF, double factor)
248 MXX(*motLF) = (VP_PAR) (factor*(double) MXX(*motLF) + (1.0-factor)* (double) MXX(*inmot));
249 MXY(*motLF) = (VP_PAR) (factor*(double) MXY(*motLF) + (1.0-factor)* (double) MXY(*inmot));
250 MXZ(*motLF) = (VP_PAR) (factor*(double) MXZ(*motLF) + (1.0-factor)* (double) MXZ(*inmot));
251 MXW(*motLF) = (VP_PAR) (factor*(double) MXW(*motLF) + (1.0-factor)* (double) MXW(*inmot))
    [all...]
dbstabsmooth.h 80 * Set the smoothing factor for the stab-smoother.
81 * \param factor the factor value to set
83 inline void setSmoothingFactor(float factor) { f_smoothFactor = factor; }
90 * Set the zoom factor value.
95 * Set the minimum damping factor value.
96 * \param factor the value to set to
98 inline void setminDampingFactor(float factor) { f_minDampingFactor = factor; }
    [all...]
  /external/mesa3d/src/pixelflinger2/
scanline.cpp 83 static inline void BlendFactor(const unsigned mode, T & factor, const T & src,
88 static inline void BlendFactor(const unsigned mode, T & factor, const T & src,
95 factor = zero;
98 factor = one;
101 factor = src;
104 factor = one;
105 factor -= src;
108 factor = dst;
111 factor = one;
112 factor -= dst
    [all...]
llvm_scanline.cpp 130 Value * factor = NULL; local
133 factor = zero;
136 factor = one;
139 factor = src;
142 factor = builder.CreateSub(one, src);
145 factor = dst;
148 factor = builder.CreateSub(one, dst);
151 factor = srcA;
153 factor = intVec(builder, factor, factor, factor, factor)
    [all...]
  /system/core/libpixelflinger/codeflinger/
blending.cpp 50 integer_t factor(scratches.obtain(), 16, CORRUPTIBLE);
51 CONTEXT_LOAD(factor.reg, generated_vars.f);
53 // clamp fog factor (TODO: see if there is a way to guarantee
55 BIC(AL, 0, factor.reg, factor.reg, reg_imm(factor.reg, ASR, 31));
56 CMP(AL, factor.reg, imm( 0x10000 ));
57 MOV(HS, 0, factor.reg, imm( 0x10000 ));
59 build_blendFOneMinusF(temp, factor, fragment, fogColor);
169 integer_t factor;
    [all...]
  /frameworks/media/libvideoeditor/osal/src/
M4OSA_Clock.c 64 M4OSA_UInt32 factor; local
74 factor = 1000000 / timescale;
81 u32_time_lo += tv.tv_usec / factor;
  /system/media/mca/filterpacks/imageproc/native/
brightness.c 80 const int factor = (int)(brightness * 255.0f); local
85 const short r = (pixel.rgba[0] * factor) / 255;
86 const short g = (pixel.rgba[1] * factor) / 255;
87 const short b = (pixel.rgba[2] * factor) / 255;
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/ext/pb_ds/detail/binary_heap_/
resize_policy.hpp 117 factor = 2 enumerator in enum:__gnu_pbds::detail::resize_policy::__anon19950
164 { return m_next_grow_size* factor; }
171 const size_type half_size = m_next_grow_size / factor;
182 ret *= factor;
193 m_next_grow_size *= factor;
204 m_next_shrink_size /= factor;
209 std::max(m_next_grow_size / factor, static_cast<size_type>(min_size));
  /prebuilt/ndk/android-ndk-r5/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/detail/binary_heap_/
resize_policy.hpp 117 factor = 2 enumerator in enum:__gnu_pbds::detail::resize_policy::__anon24335
164 { return m_next_grow_size* factor; }
171 const size_type half_size = m_next_grow_size / factor;
182 ret *= factor;
193 m_next_grow_size *= factor;
204 m_next_shrink_size /= factor;
209 std::max(m_next_grow_size / factor, static_cast<size_type>(min_size));
  /prebuilt/ndk/android-ndk-r6/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/detail/binary_heap_/
resize_policy.hpp 117 factor = 2 enumerator in enum:__gnu_pbds::detail::resize_policy::__anon25433
164 { return m_next_grow_size* factor; }
171 const size_type half_size = m_next_grow_size / factor;
182 ret *= factor;
193 m_next_grow_size *= factor;
204 m_next_shrink_size /= factor;
209 std::max(m_next_grow_size / factor, static_cast<size_type>(min_size));
  /frameworks/base/media/libeffects/lvm/lib/Eq/src/
LVEQNB_CalcCoef.c 66 /* Q is the Q factor, 0.25 to 12 (represented by 25 to 1200) */
110 LVM_INT32 factor; local
142 factor = 0x7fff; /* Initialise to 1.0 for the a0 coefficient */
147 CosErr += (factor * coef) >> 5; /* The nth partial sum */
148 factor = (factor * t0) >> 15; /* Calculate t0^n */
204 /* Q is the Q factor, 0.25 to 12 */
241 LVM_INT32 factor; local
273 factor = 0x7fff; /* Initialise to 1.0 for the a0 coefficient */
278 COS_T0 += (factor * coef) >> 5; /* The nth partial sum *
    [all...]
  /system/media/mca/filterfw/native/core/
geometry.cpp 59 Point Point::operator*(float factor) const {
61 out.x_ = factor * x_;
62 out.y_ = factor * y_;
107 bool Rect::ScaleWithLengthLimit(float factor, float max_length) {
108 if (width <= 0.0f || height <= 0.0f || factor <= 0.0f) {
117 float f = factor;
  /frameworks/base/core/java/android/view/animation/
AccelerateInterpolator.java 40 * @param factor Degree to which the animation should be eased. Seting
41 * factor to 1.0f produces a y=x^2 parabola. Increasing factor above
45 public AccelerateInterpolator(float factor) {
46 mFactor = factor;
DecelerateInterpolator.java 35 * @param factor Degree to which the animation should be eased. Setting factor to 1.0f produces
36 * an upside-down y=x^2 parabola. Increasing factor above 1.0f makes exaggerates the
39 public DecelerateInterpolator(float factor) {
40 mFactor = factor;
  /libcore/luni/src/main/java/java/lang/
StrictMath.java 1098 long factor = (int) ((bits & Double.EXPONENT_MASK) >> Double.MANTISSA_BITS) local
1151 int factor = ((bits & Float.EXPONENT_MASK) >> Float.MANTISSA_BITS) local
    [all...]
  /ndk/sources/host-tools/sed-4.2.1/testsuite/
factor.sed 49 :factor
53 /^aa/b factor
55 # Print the last remaining factor: since it is stored in the NUMBER
60 # We have a prime factor in CANDIDATE! Print it
  /external/apache-http/src/org/apache/http/impl/client/
BasicCredentialsProvider.java 103 int factor = authscope.match(current); local
104 if (factor > bestMatchFactor) {
105 bestMatchFactor = factor;
  /external/webkit/Source/WebCore/css/
CSSPrimitiveValue.cpp 298 // We do not apply the zoom factor when we are computing the value of the font-size property. The zooming
304 double factor = 1.0; local
308 factor = computingFontSize ? style->fontDescription().specifiedSize() : style->fontDescription().computedSize();
315 factor = style->fontMetrics().xHeight();
319 factor = computingFontSize ? rootStyle->fontDescription().specifiedSize() : rootStyle->fontDescription().computedSize();
324 factor = cssPixelsPerInch / 2.54; // (2.54 cm/in)
327 factor = cssPixelsPerInch / 25.4;
330 factor = cssPixelsPerInch;
333 factor = cssPixelsPerInch / 72.0;
337 factor = cssPixelsPerInch * 12.0 / 72.0
365 double factor = 1.0; local
489 double factor = conversionToCanonicalUnitsScaleFactor(sourceUnitType); local
    [all...]
  /external/apache-http/src/org/apache/http/auth/
AuthScope.java 193 * @return the match factor. Negative value signifies no match.
198 int factor = 0; local
200 factor += 1;
207 factor += 2;
214 factor += 4;
221 factor += 8;
227 return factor;
  /external/webkit/Source/WebCore/platform/graphics/
RoundedIntRect.cpp 42 void RoundedIntRect::Radii::scale(float factor)
44 if (factor == 1)
48 m_topLeft.scale(factor);
51 m_topRight.scale(factor);
54 m_bottomLeft.scale(factor);
57 m_bottomRight.scale(factor);

Completed in 429 milliseconds

1 2 3 4 5 6 7 8 910