Searched defs:phase (Results 1 - 25 of 84) sorted by relevance

1234

/external/skia/src/animator/
H A DSkDrawDash.h23 SkScalar phase; member in class:SkDash
/external/webkit/Source/JavaScriptCore/wtf/
H A DComplex.h39 inline Complex complexFromMagnitudePhase(double magnitude, double phase) argument
41 return Complex(magnitude * cos(phase), magnitude * sin(phase));
/external/proguard/src/proguard/gui/splash/
H A DSawToothTiming.java31 private final long phase; field in class:SawToothTiming
37 * @param phase the phase of the cycle, which is added to the actual time.
39 public SawToothTiming(long period, long phase) argument
42 this.phase = phase;
51 return (double)((time + phase) % period) / (double)period;
H A DSineTiming.java31 private final long phase; field in class:SineTiming
37 * @param phase the phase of the cycle, which is added to the actual time.
39 public SineTiming(long period, long phase) argument
42 this.phase = phase;
51 return 0.5 + 0.5 * Math.sin(2.0 * Math.PI * (time + phase) / period);
/external/replicaisland/src/com/replica/replicaisland/
H A DPhasedObject.java20 * A basic object that adds an execution phase. When PhasedObjects are combined with
21 * PhasedObjectManagers, objects within the manager will be updated by phase.
25 public int phase; // This is public because the phased is accessed extremely often, so much field in class:PhasedObject
38 phase = phaseValue;
H A DPhasedObjectManager.java30 private PhasedObject mSearchDummy; // A dummy object allocated up-front for searching by phase.
71 public BaseObject find(int phase) { argument
72 mSearchDummy.setPhase(phase);
91 result = ((PhasedObject) object1).phase - ((PhasedObject) object2).phase;
/external/chromium/chrome/browser/net/
H A Dnet_log_logger.cc27 net::NetLog::EventPhase phase,
30 source, phase,
24 OnAddEntry(net::NetLog::EventType type, const base::TimeTicks& time, const net::NetLog::Source& source, net::NetLog::EventPhase phase, net::NetLog::EventParameters* params) argument
H A Dchrome_net_log.h43 net::NetLog::EventPhase phase,
51 net::NetLog::EventPhase phase; member in struct:ChromeNetLog::Entry
86 EventPhase phase,
113 EventPhase phase,
H A Dchrome_net_log.cc48 net::NetLog::EventPhase phase,
54 phase(phase),
87 EventPhase phase,
93 OnAddEntry(type, time, source, phase, params));
44 Entry(uint32 order, net::NetLog::EventType type, const base::TimeTicks& time, net::NetLog::Source source, net::NetLog::EventPhase phase, net::NetLog::EventParameters* params) argument
84 AddEntry(EventType type, const base::TimeTicks& time, const Source& source, EventPhase phase, EventParameters* params) argument
H A Dload_timing_observer.cc85 net::NetLog::EventPhase phase,
91 OnAddURLRequestEntry(type, time, source, phase, params);
93 OnAddHTTPStreamJobEntry(type, time, source, phase, params);
95 OnAddConnectJobEntry(type, time, source, phase, params);
97 OnAddSocketEntry(type, time, source, phase, params);
127 net::NetLog::EventPhase phase,
131 bool is_begin = phase == net::NetLog::PHASE_BEGIN;
132 bool is_end = phase == net::NetLog::PHASE_END;
222 net::NetLog::EventPhase phase,
226 bool is_begin = phase
82 OnAddEntry(net::NetLog::EventType type, const base::TimeTicks& time, const net::NetLog::Source& source, net::NetLog::EventPhase phase, net::NetLog::EventParameters* params) argument
123 OnAddURLRequestEntry( net::NetLog::EventType type, const base::TimeTicks& time, const net::NetLog::Source& source, net::NetLog::EventPhase phase, net::NetLog::EventParameters* params) argument
218 OnAddHTTPStreamJobEntry( net::NetLog::EventType type, const base::TimeTicks& time, const net::NetLog::Source& source, net::NetLog::EventPhase phase, net::NetLog::EventParameters* params) argument
290 OnAddConnectJobEntry( net::NetLog::EventType type, const base::TimeTicks& time, const net::NetLog::Source& source, net::NetLog::EventPhase phase, net::NetLog::EventParameters* params) argument
335 OnAddSocketEntry( net::NetLog::EventType type, const base::TimeTicks& time, const net::NetLog::Source& source, net::NetLog::EventPhase phase, net::NetLog::EventParameters* params) argument
[all...]
/external/webkit/Source/WebCore/platform/graphics/
H A DGeneratedImage.cpp51 const FloatPoint& phase, ColorSpace styleColorSpace, CompositeOperator compositeOp, const FloatRect& destRect)
68 imageBuffer->drawPattern(context, adjustedSrcRect, patternTransform, phase, styleColorSpace, compositeOp, destRect);
50 drawPattern(GraphicsContext* context, const FloatRect& srcRect, const AffineTransform& patternTransform, const FloatPoint& phase, ColorSpace styleColorSpace, CompositeOperator compositeOp, const FloatRect& destRect) argument
/external/webkit/Source/WebKit2/Shared/
H A DWebWheelEvent.cpp52 WebWheelEvent::WebWheelEvent(Type type, const IntPoint& position, const IntPoint& globalPosition, const FloatSize& delta, const FloatSize& wheelTicks, Granularity granularity, Phase phase, Phase momentumPhase, bool hasPreciseScrollingDeltas, Modifiers modifiers, double timestamp) argument
59 , m_phase(phase)
/external/chromium/net/base/
H A Dcapturing_net_log.cc12 EventPhase phase,
14 : type(type), time(time), source(source), phase(phase),
46 EventPhase phase,
49 Entry entry(type, time, source, phase, extra_parameters);
9 Entry(EventType type, const base::TimeTicks& time, Source source, EventPhase phase, EventParameters* extra_parameters) argument
43 AddEntry(EventType type, const base::TimeTicks& time, const Source& source, EventPhase phase, EventParameters* extra_parameters) argument
H A Dcapturing_net_log.h29 EventPhase phase,
36 EventPhase phase; member in struct:net::CapturingNetLog::Entry
61 EventPhase phase,
/external/icu4c/tools/gennorm2/
H A Dn2builder.h106 int32_t phase; member in class:Normalizer2DataBuilder
/external/webkit/Source/WebCore/platform/graphics/openvg/
H A DImageOpenVG.cpp170 const FloatPoint& phase, ColorSpace styleColorSpace,
168 drawPattern(GraphicsContext* context, const FloatRect& src, const AffineTransform& patternTransformation, const FloatPoint& phase, ColorSpace styleColorSpace, CompositeOperator op, const FloatRect& dst) argument
/external/webkit/Source/WebCore/rendering/
H A DPaintInfo.h57 , phase(newPhase)
102 PaintPhase phase; member in struct:WebCore::PaintInfo
/external/chromium/chrome/browser/debugger/
H A Ddevtools_netlog_observer.cc43 net::NetLog::EventPhase phase,
53 OnAddURLRequestEntry(type, time, source, phase, params);
55 OnAddHTTPStreamJobEntry(type, time, source, phase, params);
57 OnAddSocketEntry(type, time, source, phase, params);
64 net::NetLog::EventPhase phase,
68 bool is_begin = phase == net::NetLog::PHASE_BEGIN;
69 bool is_end = phase == net::NetLog::PHASE_END;
159 net::NetLog::EventPhase phase,
182 net::NetLog::EventPhase phase,
186 bool is_end = phase
40 OnAddEntry(net::NetLog::EventType type, const base::TimeTicks& time, const net::NetLog::Source& source, net::NetLog::EventPhase phase, net::NetLog::EventParameters* params) argument
60 OnAddURLRequestEntry( net::NetLog::EventType type, const base::TimeTicks& time, const net::NetLog::Source& source, net::NetLog::EventPhase phase, net::NetLog::EventParameters* params) argument
155 OnAddHTTPStreamJobEntry( net::NetLog::EventType type, const base::TimeTicks& time, const net::NetLog::Source& source, net::NetLog::EventPhase phase, net::NetLog::EventParameters* params) argument
178 OnAddSocketEntry( net::NetLog::EventType type, const base::TimeTicks& time, const net::NetLog::Source& source, net::NetLog::EventPhase phase, net::NetLog::EventParameters* params) argument
[all...]
/external/skia/src/effects/
H A DSk1DPathEffect.cpp32 SkScalar phase, Style style) : fPath(path)
38 // cleanup their phase parameter, inverting it so that it becomes an
40 if (phase < 0) {
41 phase = -phase;
42 if (phase > advance) {
43 phase = SkScalarMod(phase, advance);
46 if (phase > advance) {
47 phase
31 SkPath1DPathEffect(const SkPath& path, SkScalar advance, SkScalar phase, Style style) argument
[all...]
H A DSkDashPathEffect.cpp18 static SkScalar FindFirstInterval(const SkScalar intervals[], SkScalar phase, argument
22 for (i = 0; phase > intervals[i]; i++) {
23 phase -= intervals[i];
26 return intervals[i] - phase;
30 SkScalar phase, bool scaleToFit)
47 if (phase < 0) {
48 phase = -phase;
49 if (phase > len) {
50 phase
29 SkDashPathEffect(const SkScalar intervals[], int count, SkScalar phase, bool scaleToFit) argument
[all...]
/external/sonivox/arm-fm-22k/lib_src/
H A Deas_fmengine.h66 EAS_U32 phase; /* current waveform phase */ member in struct:__anon10831
/external/sonivox/arm-hybrid-22k/lib_src/
H A Deas_fmengine.h66 EAS_U32 phase; /* current waveform phase */ member in struct:__anon10881
/external/speex/libspeex/
H A Dkiss_fftr.c64 spx_word32_t phase = i+(nfft>>1); local
66 phase = -phase;
67 kf_cexp2(st->super_twiddles+i, DIV32(SHL32(phase,16),nfft));
72 double phase = pi*(((double)i) /nfft + .5); local
74 phase = -phase;
75 kf_cexp(st->super_twiddles+i, phase );
/external/webkit/Source/WebCore/platform/graphics/cairo/
H A DCairoUtilities.cpp125 const AffineTransform& patternTransform, const FloatPoint& phase, cairo_operator_t op, const FloatRect& destRect)
128 if (!isfinite(phase.x()) || !isfinite(phase.y()))
147 cairo_matrix_t phaseMatrix = {1, 0, 0, 1, phase.x() + tileRect.x() * patternTransform.a(), phase.y() + tileRect.y() * patternTransform.d()};
124 drawPatternToCairoContext(cairo_t* cr, cairo_surface_t* image, const IntSize& imageSize, const FloatRect& tileRect, const AffineTransform& patternTransform, const FloatPoint& phase, cairo_operator_t op, const FloatRect& destRect) argument
H A DImageCairo.cpp167 const FloatPoint& phase, ColorSpace colorSpace, CompositeOperator op, const FloatRect& destRect)
174 drawPatternToCairoContext(cr, image, size(), tileRect, patternTransform, phase, toCairoOperator(op), destRect);
166 drawPattern(GraphicsContext* context, const FloatRect& tileRect, const AffineTransform& patternTransform, const FloatPoint& phase, ColorSpace colorSpace, CompositeOperator op, const FloatRect& destRect) argument

Completed in 486 milliseconds

1234