Searched refs:phase (Results 1 - 25 of 186) sorted by relevance

12345678

/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/skia/src/animator/
H A DSkDrawDash.cpp17 SK_MEMBER(phase, Float)
24 SkDash::SkDash() : phase(0) {
34 return new SkDashPathEffect(intervals.begin(), count, phase);
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/webkit/Source/WebCore/platform/mac/
H A DWheelEventMac.mm38 uint32_t phase = PlatformWheelEventPhaseNone;
42 phase |= PlatformWheelEventPhaseBegan;
44 phase |= PlatformWheelEventPhaseStationary;
46 phase |= PlatformWheelEventPhaseChanged;
48 phase |= PlatformWheelEventPhaseEnded;
50 phase |= PlatformWheelEventPhaseCancelled;
54 phase = PlatformWheelEventPhaseNone;
57 phase = PlatformWheelEventPhaseBegan;
60 phase = PlatformWheelEventPhaseChanged;
63 phase
[all...]
/external/skia/src/effects/
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...]
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...]
/external/webkit/Source/WebCore/rendering/
H A DRenderReplica.cpp65 if (paintInfo.phase != PaintPhaseForeground && paintInfo.phase != PaintPhaseMask)
71 if (paintInfo.phase == PaintPhaseForeground)
78 else if (paintInfo.phase == PaintPhaseMask)
H A DRenderReplaced.cpp113 if (hasBoxDecorations() && (paintInfo.phase == PaintPhaseForeground || paintInfo.phase == PaintPhaseSelection))
116 if (paintInfo.phase == PaintPhaseMask) {
121 if ((paintInfo.phase == PaintPhaseOutline || paintInfo.phase == PaintPhaseSelfOutline) && style()->outlineWidth())
124 if (paintInfo.phase != PaintPhaseForeground && paintInfo.phase != PaintPhaseSelection)
131 if (paintInfo.phase == PaintPhaseSelection) {
168 if (paintInfo.phase != PaintPhaseForeground && paintInfo.phase !
[all...]
H A DInlineBox.cpp164 if (!paintInfo.shouldPaintWithinRoot(renderer()) || (paintInfo.phase != PaintPhaseForeground && paintInfo.phase != PaintPhaseSelection))
174 bool preservePhase = paintInfo.phase == PaintPhaseSelection || paintInfo.phase == PaintPhaseTextClip;
176 info.phase = preservePhase ? paintInfo.phase : PaintPhaseBlockBackground;
179 info.phase = PaintPhaseChildBlockBackgrounds;
181 info.phase = PaintPhaseFloat;
183 info.phase = PaintPhaseForeground;
185 info.phase
[all...]
/external/speex/libspeex/
H A D_kiss_fft_guts.h133 # define KISS_FFT_COS(phase) floor(MIN(32767,MAX(-32767,.5+32768 * cos (phase))))
134 # define KISS_FFT_SIN(phase) floor(MIN(32767,MAX(-32767,.5+32768 * sin (phase))))
137 # define KISS_FFT_COS(phase) _mm_set1_ps( cos(phase) )
138 # define KISS_FFT_SIN(phase) _mm_set1_ps( sin(phase) )
141 # define KISS_FFT_COS(phase) (kiss_fft_scalar) cos(phase)
[all...]
/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/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 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...]
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 Dnet_log_logger.h32 net::NetLog::EventPhase phase,
/external/chromium/chrome/browser/debugger/
H A Ddevtools_netlog_observer.h36 net::NetLog::EventPhase phase,
42 net::NetLog::EventPhase phase,
48 net::NetLog::EventPhase phase,
54 net::NetLog::EventPhase phase,
/external/webkit/Source/WebKit2/Shared/mac/
H A DWebEventFactory.mm191 uint32_t phase = WebWheelEvent::PhaseNone;
192 if ([event phase] & NSEventPhaseBegan)
193 phase |= WebWheelEvent::PhaseBegan;
194 if ([event phase] & NSEventPhaseStationary)
195 phase |= WebWheelEvent::PhaseStationary;
196 if ([event phase] & NSEventPhaseChanged)
197 phase |= WebWheelEvent::PhaseChanged;
198 if ([event phase] & NSEventPhaseEnded)
199 phase |= WebWheelEvent::PhaseEnded;
200 if ([event phase]
[all...]
/external/webkit/Source/WebCore/platform/graphics/cairo/
H A DContextShadowCairo.cpp152 FloatPoint phase = dest.location(); local
153 phase.move(-tile.x(), -tile.y());
155 return phase;
288 FloatPoint phase = getPhase(destRect, tileRect); local
291 drawPatternToCairoContext(cr, m_layerImage, shadowTemplateSize, tileRect, patternTransform, phase, CAIRO_OPERATOR_OVER, destRect);
298 phase = getPhase(destRect, tileRect);
299 drawPatternToCairoContext(cr, m_layerImage, shadowTemplateSize, tileRect, patternTransform, phase, CAIRO_OPERATOR_OVER, destRect);
306 phase = getPhase(destRect, tileRect);
307 drawPatternToCairoContext(cr, m_layerImage, shadowTemplateSize, tileRect, patternTransform, phase, CAIRO_OPERATOR_OVER, destRect);
314 phase
[all...]
/external/sonivox/arm-fm-22k/lib_src/
H A Deas_fmengine.c139 * Transform pitch cents to linear phase increment
285 EAS_U32 phase; local
298 /* establish local phase variables */
299 phase = p->phase;
301 /* calculate the new phase increment */
329 phaseTemp = phase + temp;
334 /* increment operator phase */
335 phase += phaseInc;
359 /* save phase an
395 EAS_U32 phase; local
[all...]
/external/sonivox/arm-hybrid-22k/lib_src/
H A Deas_fmengine.c139 * Transform pitch cents to linear phase increment
285 EAS_U32 phase; local
298 /* establish local phase variables */
299 phase = p->phase;
301 /* calculate the new phase increment */
329 phaseTemp = phase + temp;
334 /* increment operator phase */
335 phase += phaseInc;
359 /* save phase an
395 EAS_U32 phase; local
[all...]

Completed in 560 milliseconds

12345678