Searched refs:factor (Results 1 - 25 of 124) sorted by relevance

12345

/external/webrtc/src/common_audio/signal_processing/
H A Dget_hanning_window.c62 WebRtc_Word32 factor = ((WebRtc_Word32)0x40000000); local
64 factor = WebRtcSpl_DivW32W16(factor, size);
73 index += factor;
H A Ddownsample_fast.c22 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)
20 WebRtcSpl_DownsampleFast(WebRtc_Word16 *in_ptr, WebRtc_Word16 in_length, WebRtc_Word16 *out_ptr, WebRtc_Word16 out_length, WebRtc_Word16 *B, WebRtc_Word16 B_length, WebRtc_Word16 factor, WebRtc_Word16 delay) argument
/external/aac/libFDK/src/arm/
H A Dscale_arm.cpp100 FIXP_DBL factor,
120 tmp0 = fMultDiv2(tmp0, factor);
121 tmp1 = fMultDiv2(tmp1, factor);
122 tmp2 = fMultDiv2(tmp2, factor);
123 tmp3 = fMultDiv2(tmp3, factor);
136 tmp0 = fMultDiv2(tmp0, factor);
150 tmp0 = fMultDiv2(tmp0, factor);
151 tmp1 = fMultDiv2(tmp1, factor);
152 tmp2 = fMultDiv2(tmp2, factor);
153 tmp3 = fMultDiv2(tmp3, factor);
98 scaleValuesWithFactor( FIXP_DBL *vector, FIXP_DBL factor, INT len, INT scalefactor ) argument
[all...]
/external/mesa3d/src/pixelflinger2/
H A Dscanline.cpp83 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, argument
95 factor = zero;
98 factor = one;
101 factor = src;
104 factor = one;
105 factor -= src;
108 factor = dst;
111 factor = one;
112 factor
[all...]
H A Dllvm_scanline.cpp130 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, facto
[all...]
/external/apache-http/src/org/apache/http/impl/client/
H A DBasicCredentialsProvider.java103 int factor = authscope.match(current);
104 if (factor > bestMatchFactor) {
105 bestMatchFactor = factor;
/external/v8/src/
H A Dutils.cc70 for (uint32_t factor = 10; digits < 10; digits++, factor *= 10) {
71 if (factor > number) break;
H A Dbignum.h59 void MultiplyByUInt32(uint32_t factor);
60 void MultiplyByUInt64(uint64_t factor);
126 void SubtractTimes(const Bignum& other, int factor);
H A Ddateparser.cc200 int factor = 1; local
202 ASSERT(factor <= 100000000); // factor won't overflow.
203 factor *= 10;
206 number /= factor;
H A Dbignum.cc249 void Bignum::MultiplyByUInt32(uint32_t factor) { argument
250 if (factor == 1) return;
251 if (factor == 0) {
257 // The product of a bigit with the factor is of size kBigitSize + 32.
262 DoubleChunk product = static_cast<DoubleChunk>(factor) * bigits_[i] + carry;
275 void Bignum::MultiplyByUInt64(uint64_t factor) { argument
276 if (factor == 1) return;
277 if (factor == 0) {
283 uint64_t low = factor & 0xFFFFFFFF;
284 uint64_t high = factor >> 3
[all...]
/external/aac/libFDK/src/
H A Dscale.cpp282 FIXP_DBL factor,
296 *vector = fMultDiv2(*vector, factor) << scalefactor;
301 *vector = fMultDiv2(*vector, factor) << scalefactor; vector++;
302 *vector = fMultDiv2(*vector, factor) << scalefactor; vector++;
303 *vector = fMultDiv2(*vector, factor) << scalefactor; vector++;
304 *vector = fMultDiv2(*vector, factor) << scalefactor; vector++;
310 *vector = fMultDiv2(*vector, factor) >> negScalefactor;
315 *vector = fMultDiv2(*vector, factor) >> negScalefactor; vector++;
316 *vector = fMultDiv2(*vector, factor) >> negScalefactor; vector++;
317 *vector = fMultDiv2(*vector, factor) >> negScalefacto
280 scaleValuesWithFactor( FIXP_DBL *vector, FIXP_DBL factor, INT len, INT scalefactor ) argument
[all...]
/external/webkit/Source/WebCore/css/
H A DCSSPrimitiveValue.cpp298 // 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();
320 factor = computingFontSize ? rootStyle->fontDescription().specifiedSize() : rootStyle->fontDescription().computedSize();
325 factor = cssPixelsPerInch / 2.54; // (2.54 cm/in)
328 factor = cssPixelsPerInch / 25.4;
331 factor = cssPixelsPerInch;
334 factor = cssPixelsPerInch / 72.0;
338 factor
366 double factor = 1.0; local
490 double factor = conversionToCanonicalUnitsScaleFactor(sourceUnitType); local
[all...]
/external/apache-http/src/org/apache/http/auth/
H A DAuthScope.java193 * @return the match factor. Negative value signifies no match.
198 int factor = 0;
200 factor += 1;
207 factor += 2;
214 factor += 4;
221 factor += 8;
227 return factor;
/external/webkit/Source/WebCore/platform/graphics/
H A DRoundedIntRect.cpp42 void RoundedIntRect::Radii::scale(float factor) argument
44 if (factor == 1)
48 m_topLeft.scale(factor);
51 m_topRight.scale(factor);
54 m_bottomLeft.scale(factor);
57 m_bottomRight.scale(factor);
/external/webrtc/src/modules/audio_processing/utility/
H A Ddelay_estimator.h112 // Updates the |mean_value| recursively with a step size of 2^-|factor|. This
118 // - factor : The step size, in number of right shifts.
124 int factor,
/external/v8/test/cctest/
H A Dtest-hashmap.cc129 const int factor = 13; local
137 x = x * factor + offset;
145 x = x * factor + offset;
156 x = x * factor + offset;
166 y = y * factor + offset;
/external/chromium/third_party/libevent/
H A Devport.c235 grow(struct evport_data *epdp, int factor) argument
239 int newsize = factor * oldsize;
240 assert(factor > 1);
404 int factor; local
418 factor = 1;
419 while (ev->ev_fd >= factor * evpd->ed_nevents)
420 factor *= 2;
422 if (factor > 1) {
423 if (-1 == grow(evpd, factor)) {
/external/webkit/Source/WebKit/mac/WebView/
H A DWebWindowAnimation.m37 static NSRect scaledRect(NSRect _initialFrame, NSRect _finalFrame, double factor)
40 currentRect.origin.x += (NSMinX(_finalFrame) - NSMinX(_initialFrame)) * factor;
41 currentRect.origin.y += (NSMinY(_finalFrame) - NSMinY(_initialFrame)) * factor;
42 currentRect.size.width += (NSWidth(_finalFrame) - NSWidth(_initialFrame)) * factor;
43 currentRect.size.height += (NSHeight(_finalFrame) - NSHeight(_initialFrame)) * factor;
/external/webkit/Source/WebCore/rendering/
H A DRenderTextControlMultiLine.cpp92 int factor = static_cast<HTMLTextAreaElement*>(node())->cols(); local
93 return static_cast<int>(ceilf(charWidth * factor)) + scrollbarThickness();
/external/dhcpcd/
H A Dcommon.c170 static double factor = 0.0; local
176 factor = (double)info.numer / (double)info.denom;
182 if ((info.denom != 1 || info.numer != 1) && factor != 0.0)
183 nano *= factor;
/external/openfst/src/include/fst/
H A Depsnormalize.h30 #include <fst/factor-weight.h>
/external/antlr/antlr-3.4/runtime/JavaScript/tests/functional/
H A DPython.g302 term: factor ((STAR | SLASH | PERCENT | DOUBLESLASH ) factor)*
305 factor
306 : (PLUS|MINUS|TILDE) factor
311 : atom (trailer)* (options {greedy=true;}:DOUBLESTAR factor)?
/external/webrtc/src/modules/audio_processing/ns/
H A Dnsx_core_neon.c144 int16_t factor = FACTOR_Q7; local
146 factor = FACTOR_Q7_STARTUP;
177 tmp16x8_0 = vdupq_n_s16(factor);
184 int factor = WebRtcSpl_NormW16(inst->noiseEstDensity[offset + i + j]); local
185 deltaBuff[j] = (int16_t)(FACTOR_Q16 >> (14 - factor));
258 int factor = WebRtcSpl_NormW16(inst->noiseEstDensity[offset + i]); local
259 delta = (int16_t)(FACTOR_Q16 >> (14 - factor));
458 static __inline void DenormalizeNeon(NsxInst_t* inst, int16_t* in, int factor) { argument
463 "r"((int32_t)(factor - inst->normData)) : "q10");
469 // factor
[all...]
/external/webkit/Source/WebKit/qt/Api/
H A Dqwebview.h100 void setZoomFactor(qreal factor);
102 void setTextSizeMultiplier(qreal factor);
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/builder/
H A DSyncSampleIntersectFinderImpl.java118 double factor = (double) ase.getSampleRate() / (double) minSampleRate;
119 if (factor != Math.rint(factor)) { // Not an integer
123 syncSamples[i] = (long) (1 + syncSamples[i] * factor / (double) samplesPerFrame);

Completed in 1242 milliseconds

12345