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

1 2 3 4 5 6 7 8 91011

  /external/proguard/src/proguard/gui/splash/
SawToothTiming.java 31 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)
42 this.phase = phase;
51 return (double)((time + phase) % period) / (double)period;
SineTiming.java 31 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)
42 this.phase = phase;
51 return 0.5 + 0.5 * Math.sin(2.0 * Math.PI * (time + phase) / period);
  /frameworks/base/graphics/java/android/graphics/
DashPathEffect.java 24 * specifying the "off" intervals. phase is an offset into the intervals
32 * @param phase offset into the intervals array
34 public DashPathEffect(float intervals[], float phase) {
38 native_instance = nativeCreate(intervals, phase);
41 private static native int nativeCreate(float intervals[], float phase);
PathDashPathEffect.java 39 * @param phase amount to offset before the first shape is stamped
42 public PathDashPathEffect(Path shape, float advance, float phase,
44 native_instance = nativeCreate(shape.ni(), advance, phase,
49 float phase, int native_style);
  /external/replicaisland/src/com/replica/replicaisland/
PhasedObject.java 20 * 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;
PhasedObjectManager.java 30 private PhasedObject mSearchDummy; // A dummy object allocated up-front for searching by phase.
71 public BaseObject find(int phase) {
72 mSearchDummy.setPhase(phase);
91 result = ((PhasedObject) object1).phase - ((PhasedObject) object2).phase;
  /external/skia/legacy/src/animator/
SkDrawDash.cpp 17 SK_MEMBER(phase, Float)
24 SkDash::SkDash() : phase(0) {
34 return new SkDashPathEffect(intervals.begin(), count, phase);
SkDrawDash.h 23 SkScalar phase; member in class:SkDash
  /external/skia/src/animator/
SkDrawDash.cpp 17 SK_MEMBER(phase, Float)
24 SkDash::SkDash() : phase(0) {
34 return new SkDashPathEffect(intervals.begin(), count, phase);
SkDrawDash.h 23 SkScalar phase; member in class:SkDash
  /external/webkit/Source/JavaScriptCore/wtf/
Complex.h 39 inline Complex complexFromMagnitudePhase(double magnitude, double phase)
41 return Complex(magnitude * cos(phase), magnitude * sin(phase));
  /external/webkit/Source/WebCore/platform/mac/
WheelEventMac.mm 38 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 = PlatformWheelEventPhaseEnded
    [all...]
  /libcore/luni/src/main/java/java/util/concurrent/
Phaser.java 37 * generation of a phaser has an associated phase number. The phase
40 * Integer.MAX_VALUE}. The use of phase numbers enables independent
49 * do not block, but return an associated <em>arrival phase
50 * number</em>; that is, the phase number of the phaser to which
51 * the arrival applied. When the final party for a given phase
52 * arrives, an optional action is performed and the phase
54 * triggering a phase advance, and are arranged by overriding
61 * argument indicating an arrival phase number, and returns when
62 * the phaser advances to (or is already at) a different phase
357 int phase = (int)(s >>> PHASE_SHIFT); local
403 int phase; local
465 int phase, p; local
526 int phase = 0; local
652 int phase = (int)(s >>> PHASE_SHIFT); local
1063 final int phase; field in class:Phaser.QNode
    [all...]
  /external/skia/legacy/src/effects/
SkDashPathEffect.cpp 18 static SkScalar FindFirstInterval(const SkScalar intervals[], SkScalar phase,
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 = SkScalarMod(phase, len)
    [all...]
Sk1DPathEffect.cpp 32 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 = SkScalarMod(phase, advance)
    [all...]
  /external/webkit/Source/WebCore/rendering/
RenderReplica.cpp 65 if (paintInfo.phase != PaintPhaseForeground && paintInfo.phase != PaintPhaseMask)
71 if (paintInfo.phase == PaintPhaseForeground)
78 else if (paintInfo.phase == PaintPhaseMask)
  /frameworks/base/tools/layoutlib/bridge/src/android/graphics/
DashPathEffect_Delegate.java 76 /*package*/ static int nativeCreate(float intervals[], float phase) {
77 DashPathEffect_Delegate newDelegate = new DashPathEffect_Delegate(intervals, phase);
83 private DashPathEffect_Delegate(float intervals[], float phase) {
86 mPhase = phase;
  /external/speex/libspeex/
_kiss_fft_guts.h 133 # 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/skia/src/effects/
Sk1DPathEffect.cpp 34 SkScalar phase, Style style) : fPath(path)
42 // cleanup their phase parameter, inverting it so that it becomes an
44 if (phase < 0) {
45 phase = -phase;
46 if (phase > advance) {
47 phase = SkScalarMod(phase, advance);
50 if (phase > advance) {
51 phase = SkScalarMod(phase, advance)
    [all...]
  /external/chromium/net/base/
capturing_net_log.cc 12 EventPhase phase,
14 : type(type), time(time), source(source), phase(phase),
46 EventPhase phase,
49 Entry entry(type, time, source, phase, extra_parameters);
  /external/webrtc/src/modules/audio_coding/codecs/isac/main/source/
transform.c 25 double fact, phase; local
28 phase = 0.0;
30 costab1[k] = cos(phase);
31 sintab1[k] = sin(phase);
32 phase += fact;
36 phase = 0.5 * fact;
38 costab2[k] = cos(phase);
39 sintab2[k] = sin(phase);
40 phase += fact;
  /external/chromium/chrome/browser/net/
net_log_logger.cc 27 net::NetLog::EventPhase phase,
30 source, phase,
chrome_net_log.h 43 net::NetLog::EventPhase phase,
51 net::NetLog::EventPhase phase; member in struct:ChromeNetLog::Entry
86 EventPhase phase,
113 EventPhase phase,
net_log_logger.h 32 net::NetLog::EventPhase phase,
  /external/chromium/chrome/browser/debugger/
devtools_netlog_observer.h 36 net::NetLog::EventPhase phase,
42 net::NetLog::EventPhase phase,
48 net::NetLog::EventPhase phase,
54 net::NetLog::EventPhase phase,

Completed in 700 milliseconds

1 2 3 4 5 6 7 8 91011