Home
last modified time | relevance | path

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

1234

/frameworks/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/native/services/surfaceflinger/
DDispSync.cpp73 void updateModel(nsecs_t period, nsecs_t phase, nsecs_t referenceTime) { in updateModel() argument
77 mPhase = phase; in updateModel()
171 status_t addEventListener(const char* name, nsecs_t phase, DispSync::Callback* callback) { in addEventListener() argument
183 listener.mPhase = phase; in addEventListener()
212 status_t changePhaseOffset(DispSync::Callback* callback, nsecs_t phase) { in changePhaseOffset() argument
220 listener.mPhase = phase; in changePhaseOffset()
225 listener.mLastEventTime -= (oldPhase - phase); in changePhaseOffset()
308 nsecs_t phase = mPhase + listener.mPhase; in computeListenerNextEventTimeLocked() local
309 ALOGV("[%s] Phase = %" PRId64, mName, ns2us(phase)); in computeListenerNextEventTimeLocked()
310 baseTime -= phase; in computeListenerNextEventTimeLocked()
[all …]
DDispSync.h109 status_t addEventListener(const char* name, nsecs_t phase, Callback* callback);
119 status_t changePhaseOffset(Callback* callback, nsecs_t phase);
/frameworks/rs/tests/java_api/Refocus/src/com/android/rs/test/
DRefocusFilter.java31 public void logTiming(String implementation, String phase, long time) { in logTiming() argument
32 logTiming(implementation, phase, time, "ns"); in logTiming()
35 public void logTiming(String implementation, String phase, long time, String unit) { in logTiming() argument
36 timings.add(Pair.create(phase + " (" + unit + ")", Long.valueOf(time))); in logTiming()
37 Log.d(implementation, phase + ":" + time + " " + unit); in logTiming()
/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.java45 public void onBootPhase(int phase) { in onBootPhase() argument
46 if (phase == SystemService.PHASE_SYSTEM_SERVICES_READY) { in onBootPhase()
DSensorNotificationService.java72 public void onBootPhase(int phase) { in onBootPhase() argument
73 if (phase == PHASE_THIRD_PARTY_APPS_CAN_START) { in onBootPhase()
84 if (phase == PHASE_BOOT_COMPLETED) { in onBootPhase()
DSystemServiceManager.java140 public void startBootPhase(final int phase) { in startBootPhase() argument
141 if (phase <= mCurrentPhase) { in startBootPhase()
144 mCurrentPhase = phase; in startBootPhase()
148 Trace.traceBegin(Trace.TRACE_TAG_SYSTEM_SERVER, "OnBootPhase " + phase); in startBootPhase()
/frameworks/av/media/libaudioprocessing/
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/opt/net/wifi/service/java/com/android/server/wifi/aware/
DWifiAwareService.java47 public void onBootPhase(int phase) { in onBootPhase() argument
48 if (phase == SystemService.PHASE_SYSTEM_SERVICES_READY) { in onBootPhase()
75 } else if (phase == SystemService.PHASE_BOOT_COMPLETED) { in onBootPhase()
/frameworks/base/core/jni/android/graphics/
DPathEffect.cpp38 jfloatArray intervalArray, jfloat phase) { in Dash_constructor() argument
46 SkPathEffect* effect = SkDashPathEffect::Make(intervals, count, phase).release(); in Dash_constructor()
51 jlong shapeHandle, jfloat advance, jfloat phase, jint style) { in OneD_constructor() argument
54 SkPathEffect* effect = SkPath1DPathEffect::Make(*shape, advance, phase, in OneD_constructor()
/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/p2p/
DWifiP2pService.java46 public void onBootPhase(int phase) { in onBootPhase() argument
47 if (phase == SystemService.PHASE_SYSTEM_SERVICES_READY) { in onBootPhase()
/frameworks/opt/net/lowpan/service/java/com/android/server/lowpan/
DLowpanService.java40 public void onBootPhase(int phase) { in onBootPhase() argument
41 if (phase == SystemService.PHASE_SYSTEM_SERVICES_READY) { 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/base/services/appwidget/java/com/android/server/appwidget/
DAppWidgetService.java44 public void onBootPhase(int phase) { in onBootPhase() argument
45 if (phase == PHASE_ACTIVITY_MANAGER_READY) { in onBootPhase()
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
DWifiService.java42 public void onBootPhase(int phase) { in onBootPhase() argument
43 if (phase == SystemService.PHASE_SYSTEM_SERVICES_READY) { in onBootPhase()
/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/tools/aapt2/
Dformats.md6 The APC format (AAPT2 Container Format) is generated by AAPT2 during the compile phase and
7 consumed by the AAPT2 link phase. It is a simple container format for storing compiled PNGs,
9 meta-data from the compile phase.
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/rtt/
DRttService.java51 public void onBootPhase(int phase) { in onBootPhase() argument
52 if (phase == SystemService.PHASE_SYSTEM_SERVICES_READY) { in onBootPhase()
/frameworks/base/services/core/java/com/android/server/wallpaper/
DIWallpaperManagerService.java29 void onBootPhase(int phase); in onBootPhase() argument

1234