Home
last modified time | relevance | path

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

123

/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.readOnlyNI(), advance, phase, in PathDashPathEffect()
49 float phase, int native_style); in nativeCreate() argument
/frameworks/base/services/core/java/com/android/server/
DBluetoothService.java35 public void onBootPhase(int phase) { in onBootPhase() argument
36 if (phase == SystemService.PHASE_SYSTEM_SERVICES_READY) { in onBootPhase()
39 } else if (phase == SystemService.PHASE_ACTIVITY_MANAGER_READY) { in onBootPhase()
DContextHubSystemService.java37 public void onBootPhase(int phase) { in onBootPhase() argument
38 if (phase == SystemService.PHASE_SYSTEM_SERVICES_READY) { in onBootPhase()
DSystemServiceManager.java129 public void startBootPhase(final int phase) { in startBootPhase() argument
130 if (phase <= mCurrentPhase) { in startBootPhase()
133 mCurrentPhase = phase; in startBootPhase()
137 Trace.traceBegin(Trace.TRACE_TAG_SYSTEM_SERVER, "OnBootPhase " + phase); in startBootPhase()
DSensorNotificationService.java51 public void onBootPhase(int phase) { in onBootPhase() argument
52 if (phase == PHASE_THIRD_PARTY_APPS_CAN_START) { in onBootPhase()
DSystemService.java126 public void onBootPhase(int phase) {} in onBootPhase() argument
/frameworks/av/services/audioflinger/
DAudioResamplerFirProcess.h377 const uint32_t phase, const uint32_t phaseWrapLimit, in fir() argument
389 uint32_t indexP = phase >> coefShift; in fir()
390 uint32_t indexN = (phaseWrapLimit - phase) >> coefShift; in fir()
402 uint32_t indexP = phase >> coefShift; in fir()
403 uint32_t indexN = (phaseWrapLimit - phase - 1) >> coefShift; // one's complement. in fir()
423 TC lerpP = TC(phase << (sizeof(phase)*8 - coefShift)) * scale; in fir()
428 uint32_t lerpP = phase << (sizeof(phase)*8 - coefShift) in fir()
429 >> ((sizeof(phase)-sizeof(*coefs))*8 + 1); in fir()
DAudioResamplerSinc.cpp400 void AudioResamplerSinc::filterCoefficient(int32_t* out, uint32_t phase, in filterCoefficient() argument
412 uint32_t indexP = ( phase & c.cMask) >> c.cShift; in filterCoefficient()
413 uint32_t lerpP = ( phase & c.pMask) >> c.pShift; in filterCoefficient()
414 uint32_t indexN = ((ONE-phase) & c.cMask) >> c.cShift; in filterCoefficient()
415 uint32_t lerpN = ((ONE-phase) & c.pMask) >> c.pShift; in filterCoefficient()
/frameworks/native/services/surfaceflinger/
DDispSync.cpp78 void updateModel(nsecs_t period, nsecs_t phase, nsecs_t referenceTime) { in updateModel() argument
82 mPhase = phase; in updateModel()
180 status_t addEventListener(const char* name, nsecs_t phase, in addEventListener() argument
193 listener.mPhase = phase; in addEventListener()
303 nsecs_t phase = mPhase + listener.mPhase; in computeListenerNextEventTimeLocked() local
304 ALOGV("[%s] Phase = %" PRId64, mName, ns2us(phase)); in computeListenerNextEventTimeLocked()
305 baseTime -= phase; in computeListenerNextEventTimeLocked()
322 nsecs_t t = (numPeriods + 1) * mPeriod + phase; in computeListenerNextEventTimeLocked()
502 status_t DispSync::addEventListener(const char* name, nsecs_t phase, in addEventListener() argument
505 return mThread->addEventListener(name, phase, callback); in addEventListener()
[all …]
DDispSync.h114 status_t addEventListener(const char* name, nsecs_t phase,
/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/opt/net/wifi/service/java/com/android/server/wifi/nan/
DWifiNanService.java40 public void onBootPhase(int phase) { in onBootPhase() argument
41 if (phase == SystemService.PHASE_SYSTEM_SERVICES_READY) { 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/opt/net/wifi/service/java/com/android/server/wifi/
DWifiService.java41 public void onBootPhase(int phase) { in onBootPhase() argument
42 if (phase == SystemService.PHASE_SYSTEM_SERVICES_READY) { in onBootPhase()
/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/telephony/src/java/com/android/internal/telephony/
DRadioCapability.java127 public RadioCapability(int phoneId, int session, int phase, in RadioCapability() argument
131 mPhase = phase; in RadioCapability()
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/scanner/
DWifiScanningService.java50 public void onBootPhase(int phase) { in onBootPhase() argument
51 if (phase == SystemService.PHASE_SYSTEM_SERVICES_READY) { in onBootPhase()
/frameworks/base/services/voiceinteraction/java/com/android/server/soundtrigger/
DSoundTriggerService.java74 public void onBootPhase(int phase) { in onBootPhase() argument
75 if (PHASE_SYSTEM_SERVICES_READY == phase) { in onBootPhase()
78 } else if (PHASE_THIRD_PARTY_APPS_CAN_START == phase) { in onBootPhase()
/frameworks/base/services/core/java/com/android/server/lights/
DLightsService.java171 public void onBootPhase(int phase) { in onBootPhase() argument
172 if (phase == PHASE_SYSTEM_SERVICES_READY) { in onBootPhase()
/frameworks/av/include/media/stagefright/
DVideoFrameScheduler.h79 bool fit(nsecs_t phase, nsecs_t period, size_t numSamples,
/frameworks/base/services/core/java/com/android/server/twilight/
DTwilightService.java117 public void onBootPhase(int phase) { in onBootPhase() argument
118 if (phase == PHASE_BOOT_COMPLETED) { in onBootPhase()

123