Home
last modified time | relevance | path

Searched refs:phase (Results 1 – 25 of 44) sorted by relevance

12

/frameworks/base/tools/layoutlib/bridge/src/android/graphics/
DDashPathEffect_Delegate.java76 /*package*/ static long nativeCreate(float intervals[], float phase) { in nativeCreate() argument
77 DashPathEffect_Delegate newDelegate = new DashPathEffect_Delegate(intervals, phase); in nativeCreate()
83 private DashPathEffect_Delegate(float intervals[], float phase) { in DashPathEffect_Delegate() argument
86 mPhase = phase; in DashPathEffect_Delegate()
DPathDashPathEffect_Delegate.java65 /*package*/ static long nativeCreate(long native_path, float advance, float phase, in nativeCreate() argument
/frameworks/base/graphics/java/android/graphics/
DDashPathEffect.java34 public DashPathEffect(float intervals[], float phase) { in DashPathEffect() argument
38 native_instance = nativeCreate(intervals, phase); in DashPathEffect()
41 private static native long nativeCreate(float intervals[], float phase); in nativeCreate() argument
DPathDashPathEffect.java42 public PathDashPathEffect(Path shape, float advance, float phase, in PathDashPathEffect() argument
44 native_instance = nativeCreate(shape.ni(), advance, phase, in PathDashPathEffect()
49 float phase, int native_style); in nativeCreate() argument
/frameworks/av/services/audioflinger/
DAudioResamplerFirProcess.h339 const uint32_t phase, const uint32_t phaseWrapLimit, in fir() argument
351 uint32_t indexP = phase >> coefShift; in fir()
352 uint32_t indexN = (phaseWrapLimit - phase) >> coefShift; in fir()
364 uint32_t indexP = phase >> coefShift; in fir()
365 uint32_t indexN = (phaseWrapLimit - phase - 1) >> coefShift; // one's complement. in fir()
385 TC lerpP = TC(phase << (sizeof(phase)*8 - coefShift)) * scale; in fir()
390 uint32_t lerpP = phase << (sizeof(phase)*8 - coefShift) in fir()
391 >> ((sizeof(phase)-sizeof(*coefs))*8 + 1); in fir()
DAudioResamplerSinc.cpp643 void AudioResamplerSinc::filterCoefficient(int32_t* out, uint32_t phase, in filterCoefficient() argument
655 uint32_t indexP = ( phase & c.cMask) >> c.cShift; in filterCoefficient()
656 uint32_t lerpP = ( phase & c.pMask) >> c.pShift; in filterCoefficient()
657 uint32_t indexN = ((ONE-phase) & c.cMask) >> c.cShift; in filterCoefficient()
658 uint32_t lerpN = ((ONE-phase) & c.pMask) >> c.pShift; in filterCoefficient()
DAudioResamplerSinc.h55 int32_t* out, uint32_t phase, const int16_t *samples, uint32_t vRL);
/frameworks/base/core/jni/android/graphics/
DPathEffect.cpp36 jfloatArray intervalArray, jfloat phase) { in Dash_constructor() argument
44 SkPathEffect* effect = SkDashPathEffect::Create(intervals, count, phase); in Dash_constructor()
49 jlong shapeHandle, jfloat advance, jfloat phase, jint style) { in OneD_constructor() argument
52 SkPathEffect* effect = SkPath1DPathEffect::Create(*shape, advance, phase, in OneD_constructor()
/frameworks/base/services/appwidget/java/com/android/server/appwidget/
DAppWidgetService.java42 public void onBootPhase(int phase) { in onBootPhase() argument
43 if (phase == PHASE_THIRD_PARTY_APPS_CAN_START) { in onBootPhase()
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/p2p/
DWifiP2pService.java40 public void onBootPhase(int phase) { in onBootPhase() argument
41 if (phase == SystemService.PHASE_SYSTEM_SERVICES_READY) { in onBootPhase()
/frameworks/opt/net/ethernet/java/com/android/server/ethernet/
DEthernetService.java40 public void onBootPhase(int phase) { in onBootPhase() argument
41 if (phase == SystemService.PHASE_SYSTEM_SERVICES_READY) { in onBootPhase()
/frameworks/native/services/surfaceflinger/
DDispSync.cpp64 void updateModel(nsecs_t period, nsecs_t phase) { in updateModel() argument
67 mPhase = phase; in updateModel()
147 status_t addEventListener(nsecs_t phase, const sp<DispSync::Callback>& callback) { in addEventListener() argument
157 listener.mPhase = phase; in addEventListener()
249 nsecs_t phase = mPhase + listener.mPhase; in computeListenerNextEventTimeLocked() local
250 nsecs_t t = (((ref - phase) / mPeriod) + 1) * mPeriod + phase; in computeListenerNextEventTimeLocked()
385 status_t DispSync::addEventListener(nsecs_t phase, in addEventListener() argument
389 return mThread->addEventListener(phase, callback); in addEventListener()
DDispSync.h117 status_t addEventListener(nsecs_t phase, const sp<Callback>& callback);
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
DWifiService.java44 public void onBootPhase(int phase) { in onBootPhase() argument
45 if (phase == SystemService.PHASE_SYSTEM_SERVICES_READY) { in onBootPhase()
DWifiScanningService.java44 public void onBootPhase(int phase) { in onBootPhase() argument
45 if (phase == SystemService.PHASE_SYSTEM_SERVICES_READY) { in onBootPhase()
DRttService.java436 public void onBootPhase(int phase) { in onBootPhase() argument
437 if (phase == SystemService.PHASE_SYSTEM_SERVICES_READY) { in onBootPhase()
/frameworks/base/services/core/java/com/android/server/
DSystemServiceManager.java123 public void startBootPhase(final int phase) { in startBootPhase() argument
124 if (phase <= mCurrentPhase) { in startBootPhase()
127 mCurrentPhase = phase; in startBootPhase()
DSystemService.java126 public void onBootPhase(int phase) {} in onBootPhase() argument
DDockObserver.java85 public void onBootPhase(int phase) { in onBootPhase() argument
86 if (phase == PHASE_ACTIVITY_MANAGER_READY) { in onBootPhase()
/frameworks/av/media/libmediaplayerservice/
DVideoFrameScheduler.h75 bool fit(nsecs_t phase, nsecs_t period, size_t numSamples,
DVideoFrameScheduler.cpp127 nsecs_t phase, nsecs_t period, size_t numSamplesToUse, in fit() argument
151 int64_t y = divRound(time - phase, period >> kPrecision); in fit()
/frameworks/base/docs/html/tools/
Dworkflow.jd28 <p>During this phase you install and set up your development environment. You also create
36 <p>During this phase you set up and develop your Android project, which contains all of the
41 <p>During this phase you build your project into a debuggable <code>.apk</code> package that you
57 <p>During this phase you configure and build your application for release and distribute your
/frameworks/base/docs/html/tools/workflow/
Dindex.jd28 <p>During this phase you install and set up your development environment. You also create
36 <p>During this phase you set up and develop your Android project, which contains all of the
41 <p>During this phase you build your project into a debuggable <code>.apk</code> package that you
57 <p>During this phase you configure and build your application for release and distribute your
/frameworks/base/services/usb/java/com/android/server/usb/
DUsbService.java63 public void onBootPhase(int phase) { in onBootPhase() argument
64 if (phase == SystemService.PHASE_ACTIVITY_MANAGER_READY) { in onBootPhase()
/frameworks/base/services/core/java/com/android/server/job/
DJobSchedulerService.java283 public void onBootPhase(int phase) { in onBootPhase() argument
284 if (PHASE_SYSTEM_SERVICES_READY == phase) { in onBootPhase()
293 } else if (phase == PHASE_THIRD_PARTY_APPS_CAN_START) { in onBootPhase()

12