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

1 2 3 4

  /frameworks/base/media/libstagefright/codecs/aacdec/
intensity_right.cpp 38 *(pCoefRight++) = (Int32) tempInt2 * multiplier;
46 scalefactor = Multiplier used to scale the data extracted from the left
167 multiplier = codebook AND 0x1;
169 multiplier = multiplier XOR ms_used;
171 multiplier = multiplier << 1;
173 multiplier = multiplier - 1;
175 multiplier = multiplier * intensity_factor[scalefactor & 0x3]
302 Int multiplier; local
    [all...]
pns_corr.cpp 31 *(pCoefRight++) = (Int32) tempInt2 * multiplier;
40 scale = Multiplier used to scale the noise extracted from the left
150 multiplier = hcb2_scale_mod_4[scale & 0x3];
167 *(pCoefRight) = (*(pCoefLeft) >> 9) * multiplier;
276 UInt multiplier; local
286 * and save some complexity in the multiplier.
299 multiplier = hcb2_scale_mod_4[scale & 0x3];
332 *(pCoefRight++) = (Int32)(*(pCoefLeft++) >> 16) * multiplier;
pv_pow2.cpp 123 Int32 multiplier = 0; local
144 multiplier = Q_fmt(0.70710678118655F);
158 if (multiplier)
160 y = fxp_mul32_Q29(y, multiplier);
  /external/webkit/Source/WebCore/rendering/style/
StyleCachedImage.cpp 37 bool StyleCachedImage::canRender(float multiplier) const
39 return m_image->canRender(multiplier);
52 IntSize StyleCachedImage::imageSize(const RenderObject* /*renderer*/, float multiplier) const
54 return m_image->imageSize(multiplier);
StyleGeneratedImage.cpp 37 IntSize StyleGeneratedImage::imageSize(const RenderObject* renderer, float multiplier) const
41 if (multiplier == 1.0f)
44 int width = fixedSize.width() * multiplier;
45 int height = fixedSize.height() * multiplier;
StyleCachedImage.h 45 virtual bool canRender(float multiplier) const;
48 virtual IntSize imageSize(const RenderObject*, float multiplier) const;
StyleGeneratedImage.h 47 virtual IntSize imageSize(const RenderObject*, float multiplier) const;
StyleImage.h 52 virtual bool canRender(float /*multiplier*/) const { return true; }
55 virtual IntSize imageSize(const RenderObject*, float multiplier) const = 0;
  /external/replicaisland/src/com/replica/replicaisland/
GravityComponent.java 51 public void setGravityMultiplier(float multiplier) {
53 mGravity.multiply(multiplier);
  /external/webkit/Source/WebCore/loader/cache/
CachedImage.h 50 bool canRender(float multiplier) const { return !errorOccurred() && !imageSize(multiplier).isEmpty(); }
58 // Both of these methods take a zoom multiplier that can be used to increase the natural size of the image by the
60 IntSize imageSize(float multiplier) const; // returns the size of the complete image.
61 IntRect imageRect(float multiplier) const; // The size of the currently decoded portion of the image.
CachedImage.cpp 171 IntSize CachedImage::imageSize(float multiplier) const
177 if (multiplier == 1.0f)
183 int width = m_image->size().width() * (m_image->hasRelativeWidth() ? 1.0f : multiplier);
184 int height = m_image->size().height() * (m_image->hasRelativeHeight() ? 1.0f : multiplier);
192 IntRect CachedImage::imageRect(float multiplier) const
198 if (multiplier == 1.0f || (!m_image->hasRelativeWidth() && !m_image->hasRelativeHeight()))
201 float widthMultiplier = (m_image->hasRelativeWidth() ? 1.0f : multiplier);
202 float heightMultiplier = (m_image->hasRelativeHeight() ? 1.0f : multiplier);
  /external/webkit/Source/WebCore/rendering/
RenderImageResource.h 65 virtual IntSize imageSize(float multiplier) const { return m_cachedImage ? m_cachedImage->imageSize(multiplier) : IntSize(); }
RenderImageResourceStyleImage.h 57 virtual IntSize imageSize(float multiplier) const { return m_styleImage->imageSize(m_renderer, multiplier); }
  /external/chromium/sdch/open-vcdiff/src/
rolling_hash.h 32 // Multiplier for incremental hashing. The compiler should be smart enough to
196 // Compute multiplier. Concisely, it is:
199 uint32_t multiplier = 1; local
201 multiplier =
202 RollingHashUtil::ModBase(multiplier * RollingHashUtil::kMult);
225 // Iteratively adding the multiplier in this loop is equivalent to
226 // computing (removed_byte * multiplier), and is faster
228 RollingHashUtil::ModBase(byte_times_multiplier + multiplier);
  /libcore/luni/src/main/java/java/util/
Random.java 37 private static final long multiplier = 0x5deece66dL; field in class:Random
90 seed = (seed * multiplier + 0xbL) & ((1L << 48) - 1);
158 // of multiplier ?
160 return v1 * norm; // should that not be norm instead of multiplier
202 this.seed = (seed ^ multiplier) & ((1L << 48) - 1);
  /external/ppp/pppd/plugins/pppoatm/
text2qos.c 28 const char *multiplier; local
44 multiplier = NULL;
45 if (*end && (multiplier = strchr(mult,*end))) {
46 while (multiplier >= mult) {
50 multiplier -= 2;
65 if (multiplier) return RATE_ERROR;
73 else if (multiplier) return RATE_ERROR;
  /external/libxslt/libxslt/
numbersInternals.h 60 int multiplier; /* Scaling for percent or permille */ member in struct:_xsltFormatNumberInfo
  /external/webkit/Source/WebCore/platform/
ScrollAnimatorWin.h 46 virtual bool scroll(ScrollbarOrientation, ScrollGranularity, float step, float multiplier);
ScrollAnimator.h 58 virtual bool scroll(ScrollbarOrientation, ScrollGranularity, float step, float multiplier);
ScrollableArea.cpp 58 bool ScrollableArea::scroll(ScrollDirection direction, ScrollGranularity granularity, float multiplier)
90 multiplier = -multiplier;
92 return m_scrollAnimator->scroll(orientation, granularity, step, multiplier);
  /external/webkit/Source/WebKit/chromium/public/
WebScrollbar.h 87 virtual void scroll(ScrollDirection, ScrollGranularity, float multiplier) = 0;
  /external/oprofile/pp/
opgprof.cpp 144 /* FIXME worth to try more multiplier ? */
145 int multiplier = 2; local
147 multiplier = 8;
149 cverb << vdebug << "opgrof multiplier: " << multiplier << endl;
157 low_pc = (low_pc / multiplier) * multiplier;
159 high_pc = ((high_pc + multiplier - 1) / multiplier) * multiplier;
    [all...]
  /external/bouncycastle/src/main/java/org/bouncycastle/crypto/modes/
GCMBlockCipher.java 27 private GCMMultiplier multiplier; field in class:GCMBlockCipher
62 // TODO Consider a static property specifying default multiplier
67 this.multiplier = m;
139 multiplier.init(H);
155 multiplier.multiplyH(this.J0);
264 multiplier.multiplyH(S);
362 multiplier.multiplyH(S);
377 multiplier.multiplyH(Y);
386 // multiplier.multiplyH(S);
  /external/bouncycastle/src/main/java/org/bouncycastle/math/ec/
ECPoint.java 18 protected ECMultiplier multiplier = null; field in class:ECPoint
91 // * @param multiplier The <code>ECMultiplier</code> to be used to multiply
94 // public void setECMultiplier(ECMultiplier multiplier)
96 // this.multiplier = multiplier;
123 if (this.multiplier == null)
125 this.multiplier = new FpNafMultiplier();
152 return this.multiplier.multiply(this, k, preCompInfo);
322 if (this.multiplier == null)
324 this.multiplier = new WNafMultiplier()
    [all...]
  /external/webkit/Source/WebCore/css/
CSSPrimitiveValue.h 140 int computeLengthInt(RenderStyle* currStyle, RenderStyle* rootStyle, double multiplier);
142 int computeLengthIntForLength(RenderStyle* currStyle, RenderStyle* rootStyle, double multiplier);
144 short computeLengthShort(RenderStyle* currStyle, RenderStyle* rootStyle, double multiplier);
146 float computeLengthFloat(RenderStyle* currStyle, RenderStyle* rootStyle, double multiplier, bool computingFontSize = false);
147 double computeLengthDouble(RenderStyle* currentStyle, RenderStyle* rootStyle, double multiplier = 1.0, bool computingFontSize = false);

Completed in 432 milliseconds

1 2 3 4