Searched defs:P1 (Results 1 - 5 of 5) sorted by relevance

/frameworks/base/core/java/android/widget/
H A DScroller.java101 private static final float P1 = START_TENSION * INFLEXION; field in class:Scroller
125 tx = coef * ((1.0f - x) * P1 + x * P2) + x * x * x;
142 SPLINE_TIME[i] = coef * ((1.0f - y) * P1 + y * P2) + y * y * y;
H A DOverScroller.java593 private static final float P1 = START_TENSION * INFLEXION; field in class:OverScroller.SplineOverScroller
615 tx = coef * ((1.0f - x) * P1 + x * P2) + x * x * x;
632 SPLINE_TIME[i] = coef * ((1.0f - y) * P1 + y * P2) + y * y * y;
/frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/
H A DUiccCarrierPrivilegeRules.java64 private static final int P1 = 0xFF; field in class:UiccCarrierPrivilegeRules
433 mUiccProfile.iccTransmitApduLogicalChannel(mChannelId, CLA, COMMAND, P1, P2, P3,
485 P1, P2_EXTENDED_DATA, P3, DATA,
/frameworks/base/core/tests/utiltests/src/com/android/internal/util/
H A DStateMachineTest.java1824 class P1 extends State { class in class:StateMachineTest.Hsm1
1827 tlog("P1.enter");
1831 tlog("P1.exit");
1836 tlog("P1.processMessage what=" + message.what);
1942 P1 mP1 = new P1();
/frameworks/base/services/core/java/com/android/server/locksettings/
H A DSyntheticPasswordManager.java141 * P0 and P1 are two randomly-generated blocks. P1 is stored on disk but P0 is not.
142 * syntheticPassword = hash(P0 || P1)
146 private @Nullable byte[] P1; field in class:SyntheticPasswordManager.AuthenticationToken
174 private void initialize(byte[] P0, byte[] P1) { argument
175 this.P1 = P1;
178 PERSONALIZATION_SP_SPLIT, P0, P1)));
184 initialize(secret, this.P1);
499 authToken.P1
[all...]

Completed in 118 milliseconds