Searched refs:phase (Results 1 - 12 of 12) sorted by relevance

/frameworks/base/graphics/java/android/graphics/
H A DDashPathEffect.java24 * 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) { argument
38 native_instance = nativeCreate(intervals, phase);
41 private static native int nativeCreate(float intervals[], float phase); argument
H A DPathDashPathEffect.java39 * @param phase amount to offset before the first shape is stamped
42 public PathDashPathEffect(Path shape, float advance, float phase, argument
44 native_instance = nativeCreate(shape.ni(), advance, phase,
49 float phase, int native_style);
48 nativeCreate(int native_path, float advance, float phase, int native_style) argument
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/
H A DDashPathEffect_Delegate.java76 /*package*/ static int nativeCreate(float intervals[], float phase) { argument
77 DashPathEffect_Delegate newDelegate = new DashPathEffect_Delegate(intervals, phase);
83 private DashPathEffect_Delegate(float intervals[], float phase) { argument
86 mPhase = phase;
H A DPathDashPathEffect_Delegate.java65 /*package*/ static int nativeCreate(int native_path, float advance, float phase, argument
/frameworks/base/core/jni/android/graphics/
H A DPathEffect.cpp29 jfloatArray intervalArray, float phase) {
39 return new SkDashPathEffect(intervals, count, SkFloatToScalar(phase));
43 const SkPath* shape, float advance, float phase, int style) {
46 SkFloatToScalar(phase), (SkPath1DPathEffect::Style)style);
28 Dash_constructor(JNIEnv* env, jobject, jfloatArray intervalArray, float phase) argument
42 OneD_constructor(JNIEnv* env, jobject, const SkPath* shape, float advance, float phase, int style) argument
/frameworks/native/services/surfaceflinger/
H A DDispSync.cpp39 // vsync event model or phase issues.
72 void updateModel(nsecs_t period, nsecs_t phase) { argument
75 mPhase = phase;
155 status_t addEventListener(nsecs_t phase, const sp<DispSync::Callback>& callback) { argument
165 listener.mPhase = phase;
258 nsecs_t phase = mPhase + listener.mPhase; local
259 nsecs_t t = (((ref - phase) / mPeriod) + 1) * mPeriod + phase;
309 // Furthermore the zero-phase tracing is not needed because any time
391 status_t DispSync::addEventListener(nsecs_t phase, argument
[all...]
H A DDispSync.h33 // display and uses that model to execute period callbacks at specific phase
92 // given phase offset from the hardware vsync events. The callback is
95 status_t addEventListener(nsecs_t phase, const sp<Callback>& callback);
117 // mPhase is the phase offset of the modeled vsync events. It is the
/frameworks/av/services/audioflinger/
H A DAudioResamplerSinc.h55 int32_t* out, uint32_t phase, const int16_t *samples, uint32_t vRL);
H A DAudioResamplerSinc.cpp638 int32_t* out, uint32_t phase, const int16_t *samples, uint32_t vRL)
649 uint32_t indexP = ( phase & c.cMask) >> c.cShift;
650 uint32_t lerpP = ( phase & c.pMask) >> c.pShift;
651 uint32_t indexN = ((ONE-phase) & c.cMask) >> c.cShift;
652 uint32_t lerpN = ((ONE-phase) & c.pMask) >> c.pShift;
681 "vmov.32 d2[0], %[lerpP] \n" // load the positive phase
682 "vmov.32 d2[1], %[lerpN] \n" // load the negative phase
747 "vmov.32 d2[0], %[lerpP] \n" // load the positive phase
748 "vmov.32 d2[1], %[lerpN] \n" // load the negative phase
637 filterCoefficient( int32_t* out, uint32_t phase, const int16_t *samples, uint32_t vRL) argument
/frameworks/av/media/libstagefright/chromium_http/
H A Dsupport.h46 EventPhase phase,
H A Dsupport.cpp136 EventPhase phase,
140 "AddEntry time=%s type=%s source=%s phase=%s\n",
144 EventPhaseToString(phase)).c_str());
132 AddEntry( EventType type, const base::TimeTicks &time, const Source &source, EventPhase phase, EventParameters *params) argument
/frameworks/base/tools/aapt/
H A DResourceTable.cpp1685 for (size_t phase=0; phase<2; phase++) {
1692 if (phase != 0) {

Completed in 240 milliseconds