HomeSort by relevance Sort by last modified time
    Searched refs:phase (Results 1 - 25 of 769) 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 long 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.readOnlyNI(), 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;
  /hardware/intel/common/libmix/mix_vbp/viddec_fw/fw/parser/
viddec_parse_sc.c 15 The conext is updated with current phase and sc_code position in the buffer.
21 uint32_t data_left=0, phase = 0, ret = 0; local
23 /* What is phase?: phase is a value between [0-4], we keep track of consecutive '0's with this.
25 if 0xXX code is found and current phase is 2, its changed to 3 which means we found the pattern
31 phase = cxt->phase;
36 while((data_left > 0) &&(phase < 3))
38 /* Check if we are byte aligned & phase=0, if thats the case we can check
40 if(((((uint32_t)ptr) & 0x3) == 0) && (phase == 0)
    [all...]
  /hardware/intel/common/libmix/mix_vbp/viddec_fw/fw/codecs/mp4/parser/
viddec_parse_sc_mp4.c 6 The conext is updated with current phase and sc_code position in the buffer.
8 What is phase?: phase is a value between [0-4], we keep track of consecutive '0's with this.
10 if 0xXX code is found and current phase is 2, its changed to 3 which means we found the pattern
25 uint32_t data_left=0, phase = 0, ret = 0; local
34 phase = cxt->phase;
39 while((data_left > 0) &&(phase < 3))
41 /* Check if we are byte aligned & phase=0, if thats the case we can check
43 if(((((uint32_t)ptr) & 0x3) == 0) && (phase == 0)
    [all...]
  /libcore/ojluni/src/main/java/java/util/concurrent/
Phaser.java 64 * generation of a phaser has an associated phase number. The phase
67 * Integer.MAX_VALUE}. The use of phase numbers enables independent
76 * do not block, but return an associated <em>arrival phase
77 * number</em>; that is, the phase number of the phaser to which
78 * the arrival applied. When the final party for a given phase
79 * arrives, an optional action is performed and the phase
81 * triggering a phase advance, and are arranged by overriding
88 * argument indicating an arrival phase number, and returns when
89 * the phaser advances to (or is already at) a different phase
384 int phase = (int)(s >>> PHASE_SHIFT); local
429 int phase; local
490 int phase, p; local
551 int phase = 0; local
677 int phase = (int)(s >>> PHASE_SHIFT); local
1086 final int phase; field in class:Phaser.QNode
    [all...]
  /external/eigen/unsupported/test/
cxx11_non_blocking_thread_pool.cpp 35 std::atomic<int> phase(0);
43 while (phase < 1) {
51 phase = 1;
57 while (phase < 2) {
67 while (phase < 3) {
74 while (phase < 3) {
86 phase = 2;
90 while (phase < 3) {
97 phase = 3;
  /external/skia/include/effects/
SkDashPathEffect.h 19 phase: offset into the intervals array (mod the sum of all of the
22 For example: if intervals[] = {10, 20}, count = 2, and phase = 25,
30 A phase of -5, 25, 55, 85, etc. would all result in the same path,
35 static sk_sp<SkPathEffect> Make(const SkScalar intervals[], int count, SkScalar phase);
  /external/skqp/include/effects/
SkDashPathEffect.h 19 phase: offset into the intervals array (mod the sum of all of the
22 For example: if intervals[] = {10, 20}, count = 2, and phase = 25,
30 A phase of -5, 25, 55, 85, etc. would all result in the same path,
35 static sk_sp<SkPathEffect> Make(const SkScalar intervals[], int count, SkScalar phase);
  /external/tensorflow/tensorflow/core/common_runtime/
optimization_registry.cc 28 Grouping grouping, int phase, std::unique_ptr<GraphOptimizationPass> pass) {
29 groups_[grouping][phase].push_back(std::move(pass));
36 for (auto& phase : group->second) {
37 VLOG(1) << "Running optimization phase " << phase.first;
38 for (auto& pass : phase.second) {
optimization_registry.h 70 // The key is a 'phase' number. Phases are executed in increasing
71 // order. Within each phase the order of passes is undefined.
87 void Register(Grouping grouping, int phase,
90 // Run all passes in grouping, ordered by phase, with the same
107 int phase,
109 OptimizationPassRegistry::Global()->Register(grouping, phase,
116 #define REGISTER_OPTIMIZATION(grouping, phase, optimization) \
117 REGISTER_OPTIMIZATION_UNIQ_HELPER(__COUNTER__, grouping, phase, optimization)
119 #define REGISTER_OPTIMIZATION_UNIQ_HELPER(ctr, grouping, phase, optimization) \
120 REGISTER_OPTIMIZATION_UNIQ(ctr, grouping, phase, optimization
    [all...]
  /developers/build/prebuilts/gradle/MidiScope/Application/src/main/java/com/example/android/common/midi/synth/
SawOscillatorDPW.java 43 float phase = incrementWrapPhase(); local
45 float squared = phase * phase;
  /developers/build/prebuilts/gradle/MidiSynth/Application/src/main/java/com/example/android/common/midi/synth/
SawOscillatorDPW.java 43 float phase = incrementWrapPhase(); local
45 float squared = phase * phase;
  /developers/samples/android/common/src/java/com/example/android/common/midi/synth/
SawOscillatorDPW.java 43 float phase = incrementWrapPhase(); local
45 float squared = phase * phase;
  /development/samples/browseable/MidiScope/src/com.example.android.common.midi/synth/
SawOscillatorDPW.java 43 float phase = incrementWrapPhase(); local
45 float squared = phase * phase;
  /development/samples/browseable/MidiSynth/src/com.example.android.common.midi/synth/
SawOscillatorDPW.java 43 float phase = incrementWrapPhase(); local
45 float squared = phase * phase;
  /frameworks/base/services/core/java/com/android/server/
BluetoothService.java 35 public void onBootPhase(int phase) {
36 if (phase == SystemService.PHASE_SYSTEM_SERVICES_READY) {
39 } else if (phase == SystemService.PHASE_ACTIVITY_MANAGER_READY) {
  /frameworks/base/services/core/java/com/android/server/wallpaper/
IWallpaperManagerService.java 29 void onBootPhase(int phase);
  /frameworks/layoutlib/bridge/src/android/graphics/
DashPathEffect_Delegate.java 76 /*package*/ static long 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;
  /hardware/intel/common/libmix/mix_vbp/viddec_fw/fw/parser/include/
viddec_pm_utils_bstream.h 44 uint32_t phase; member in struct:__anon47341
69 uint32_t phase=cxt->phase; local
73 if(cxt->phase > 0)
75 phase = phase - ((cxt->bstrm_buf.buf_bitoff != 0)? 1: 0 );
77 *is_emul = (cxt->is_emul_reqd) && (phase > 0) &&
  /external/skia/src/effects/
Sk1DPathEffect.cpp 39 SkPath1DPathEffect::SkPath1DPathEffect(const SkPath& path, SkScalar advance, SkScalar phase,
44 // cleanup their phase parameter, inverting it so that it becomes an
46 if (phase < 0) {
47 phase = -phase;
48 if (phase > advance) {
49 phase = SkScalarMod(phase, advance);
52 if (phase > advance) {
53 phase = SkScalarMod(phase, advance)
160 SkScalar phase = buffer.readScalar(); local
    [all...]
  /external/skqp/src/effects/
Sk1DPathEffect.cpp 35 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)
158 SkScalar phase = buffer.readScalar(); local
    [all...]
  /external/libchrome/base/trace_event/
heap_profiler_event_filter.cc 48 if (trace_event.phase() == TRACE_EVENT_PHASE_BEGIN ||
49 trace_event.phase() == TRACE_EVENT_PHASE_COMPLETE) {
51 } else if (trace_event.phase() == TRACE_EVENT_PHASE_END) {

Completed in 1109 milliseconds

1 2 3 4 5 6 7 8 91011>>