Searched defs:spread (Results 1 - 7 of 7) sorted by relevance

/external/webkit/Source/WebCore/css/
H A DShadowValue.h38 PassRefPtr<CSSPrimitiveValue> spread,
42 return adoptRef(new ShadowValue(x, y, blur, spread, style, color));
50 RefPtr<CSSPrimitiveValue> spread; member in class:WebCore::ShadowValue
58 PassRefPtr<CSSPrimitiveValue> spread,
35 create(PassRefPtr<CSSPrimitiveValue> x, PassRefPtr<CSSPrimitiveValue> y, PassRefPtr<CSSPrimitiveValue> blur, PassRefPtr<CSSPrimitiveValue> spread, PassRefPtr<CSSPrimitiveValue> style, PassRefPtr<CSSPrimitiveValue> color) argument
H A DCSSComputedStyleDeclaration.cpp673 RefPtr<CSSPrimitiveValue> spread = propertyID == CSSPropertyTextShadow ? PassRefPtr<CSSPrimitiveValue>() : zoomAdjustedPixelValue(s->spread(), style, primitiveValueCache); local
676 list->prepend(ShadowValue::create(x.release(), y.release(), blur.release(), spread.release(), style.release(), color.release()));
H A DCSSParser.cpp4534 if (x || y || blur || spread || color || style) {
4539 values->append(ShadowValue::create(x.release(), y.release(), blur.release(), spread.release(), style.release(), color.release()));
4546 spread = 0;
4582 spread = val.release();
4621 RefPtr<CSSPrimitiveValue> spread; member in struct:WebCore::ShadowParseContext
H A DCSSStyleSelector.cpp5163 int spread = item->spread ? item->spread->computeLengthInt(style(), m_rootElementStyle, zoomFactor) : 0; local
5168 ShadowData* shadowData = new ShadowData(x, y, blur, spread, shadowStyle, id == CSSPropertyWebkitBoxShadow, color.isValid() ? color : Color::transparent);
/external/webkit/Source/WebCore/rendering/style/
H A DShadowData.h53 ShadowData(int x, int y, int blur, int spread, ShadowStyle style, bool isWebkitBoxShadow, const Color& color) argument
57 , m_spread(spread)
77 int spread() const { return m_spread; } function in class:WebCore::ShadowData
/external/srec/srec/cfront/
H A Dspec_anl.c322 int create_spectrum_filter(front_freq *freqobj, int *freq, int *spread) argument
329 /* Convert to FFT taps. Mark adjacent taps as well as taps within spread */
337 lo = (((freq[ii] - spread[ii]) * 2 * freqobj->fft.size) + freqobj->samplerate / 2) / freqobj->samplerate;
338 hi = (((freq[ii] + spread[ii]) * 2 * freqobj->fft.size) + freqobj->samplerate / 2) / freqobj->samplerate;
348 while (((jj+1)*freq_step)>>12 <= freq[ii]-spread[ii])
350 while (((jj-1)*freq_step>>12) < freq[ii]+spread[ii]){
/external/aac/libSBRenc/include/
H A Dsbr_encoder.h181 INT spread; /*!< Flag: usage of SBR spread. */ member in struct:sbrConfiguration

Completed in 641 milliseconds