| /device/linaro/bootloader/edk2/Vlv2TbltDevicePkg/Library/IntelPchAcpiTimerLib/ |
| IntelPchAcpiTimerLib.c | 198 EndValue is not NULL, then the value that the performance counter end with
199 immediately before it rolls over is returned in EndValue. The 64-bit
201 is less than EndValue, then the performance counter counts up. If StartValue
202 is greater than EndValue, then the performance counter counts down. For
204 of 0 and an EndValue of 0xFFFFFFFFFFFFFFFF. A 24-bit free running counter
205 that counts down would have a StartValue of 0xFFFFFF and an EndValue of 0.
209 @param EndValue The value that the performance counter ends with before
219 OUT UINT64 *EndValue OPTIONAL
226 if (EndValue != NULL) {
227 *EndValue = V_PCH_ACPI_PM1_TMR_MAX_VAL - 1; [all...] |
| /frameworks/base/core/java/android/animation/ |
| RectEvaluator.java | 67 * @param endValue The end Rect 72 public Rect evaluate(float fraction, Rect startValue, Rect endValue) { 73 int left = startValue.left + (int) ((endValue.left - startValue.left) * fraction); 74 int top = startValue.top + (int) ((endValue.top - startValue.top) * fraction); 75 int right = startValue.right + (int) ((endValue.right - startValue.right) * fraction); 76 int bottom = startValue.bottom + (int) ((endValue.bottom - startValue.bottom) * fraction);
|
| TypeEvaluator.java | 33 * where <code>x0</code> is <code>startValue</code>, <code>x1</code> is <code>endValue</code>, 38 * @param endValue The end value. 42 public T evaluate(float fraction, T startValue, T endValue);
|
| FloatArrayEvaluator.java | 59 * @param endValue The end value. 61 * the same index in startValue and endValue. 64 public float[] evaluate(float fraction, float[] startValue, float[] endValue) { 72 float end = endValue[i];
|
| IntArrayEvaluator.java | 58 * @param endValue The end value. 60 * the same index in startValue and endValue. 63 public int[] evaluate(float fraction, int[] startValue, int[] endValue) { 70 int end = endValue[i];
|
| PointFEvaluator.java | 67 * @param endValue The end PointF 72 public PointF evaluate(float fraction, PointF startValue, PointF endValue) { 73 float x = startValue.x + (fraction * (endValue.x - startValue.x)); 74 float y = startValue.y + (fraction * (endValue.y - startValue.y));
|
| ArgbEvaluator.java | 47 * @param endValue A 32-bit int value representing colors in the 54 public Object evaluate(float fraction, Object startValue, Object endValue) { 61 int endInt = (Integer) endValue;
|
| /frameworks/support/transition/src/main/java/androidx/transition/ |
| RectEvaluator.java | 69 * @param endValue The end Rect 74 public Rect evaluate(float fraction, Rect startValue, Rect endValue) { 75 int left = startValue.left + (int) ((endValue.left - startValue.left) * fraction); 76 int top = startValue.top + (int) ((endValue.top - startValue.top) * fraction); 77 int right = startValue.right + (int) ((endValue.right - startValue.right) * fraction); 78 int bottom = startValue.bottom + (int) ((endValue.bottom - startValue.bottom) * fraction);
|
| FloatArrayEvaluator.java | 51 * @param endValue The end value. 53 * the same index in startValue and endValue. 56 public float[] evaluate(float fraction, float[] startValue, float[] endValue) { 64 float end = endValue[i];
|
| /external/jsilver/src/com/google/clearsilver/jsilver/functions/string/ |
| SliceFunction.java | 40 Value endValue = args[2]; 43 int end = endValue.asNumber(); 65 || startValue.isPartiallyEscaped() || endValue.isPartiallyEscaped());
|
| /frameworks/base/core/jni/ |
| android_graphics_drawable_AnimatedVectorDrawable.cpp | 108 jfloat startValue, jfloat endValue) { 111 startValue, endValue); 126 int startValue, jint endValue) { 129 propertyId, startValue, endValue); 134 float startValue, jfloat endValue) { 137 propertyId, startValue, endValue); 142 float endValue) { 145 startValue, endValue);
|
| /device/linaro/bootloader/edk2/MdeModulePkg/Universal/TimestampDxe/ |
| TimestampDxe.c | 29 // The EndValue in TimerLib
47 The counter value will not go backwards other than when wrapping, as defined by EndValue in GetProperties().
143 // Set the EndValue
146 mTimestampProperties.EndValue = mTimerLibEndValue - mTimerLibStartValue;
148 mTimestampProperties.EndValue = mTimerLibStartValue - mTimerLibEndValue;
|
| /device/linaro/bootloader/edk2/DuetPkg/Library/DuetTimerLib/ |
| X86TimerLib.c | 208 EndValue is not NULL, then the value that the performance counter end with
209 immediately before it rolls over is returned in EndValue. The 64-bit
211 is less than EndValue, then the performance counter counts up. If StartValue
212 is greater than EndValue, then the performance counter counts down. For
214 of 0 and an EndValue of 0xFFFFFFFFFFFFFFFF. A 24-bit free running counter
215 that counts down would have a StartValue of 0xFFFFFF and an EndValue of 0.
219 @param EndValue The value that the performance counter ends with before
229 OUT UINT64 *EndValue OPTIONAL
240 if (EndValue != NULL) {
241 *EndValue = (1 << gAcpiDesc->PM_TMR_BLK.RegisterBitWidth) - 1; [all...] |
| /device/linaro/bootloader/edk2/Omap35xxPkg/Library/Omap35xxTimerLib/ |
| TimerLib.c | 119 OUT UINT64 *EndValue OPTIONAL
127 if (EndValue != NULL) {
129 *EndValue = 0xFFFFFFFF;
|
| /device/linaro/bootloader/edk2/MdePkg/Include/Protocol/ |
| Timestamp.h | 41 /// For example, a 64-bit free running counter would have an EndValue of 0xFFFFFFFFFFFFFFFF.
42 /// A 24-bit free running counter would have an EndValue of 0xFFFFFF.
44 UINT64 EndValue;
53 The counter value will not go backwards other than when wrapping, as defined by EndValue in GetProperties().
|
| /frameworks/layoutlib/bridge/src/android/graphics/drawable/ |
| AnimatedVectorDrawable_Delegate.java | 91 float startValue, float endValue) { 96 endValue)); 109 int startValue, int endValue) { 114 endValue)); 119 float startValue, float endValue) { 124 endValue)); 129 float endValue) { 134 endValue));
|
| /device/linaro/bootloader/edk2/ArmPlatformPkg/Library/SP804TimerLib/ |
| SP804TimerLib.c | 221 EndValue is not NULL, then the value that the performance counter end with
222 immediately before it rolls over is returned in EndValue. The 64-bit
224 is less than EndValue, then the performance counter counts up. If StartValue
225 is greater than EndValue, then the performance counter counts down. For
227 of 0 and an EndValue of 0xFFFFFFFFFFFFFFFF. A 24-bit free running counter
228 that counts down would have a StartValue of 0xFFFFFF and an EndValue of 0.
232 @param EndValue The value that the performance counter ends with before
242 OUT UINT64 *EndValue OPTIONAL
250 if (EndValue != NULL) {
252 *EndValue = (UINT64)0ULL; [all...] |
| /device/linaro/bootloader/edk2/MdePkg/Library/SecPeiDxeTimerLibCpu/ |
| X86TimerLib.c | 294 EndValue is not NULL, then the value that the performance counter end with
295 immediately before it rolls over is returned in EndValue. The 64-bit
297 is less than EndValue, then the performance counter counts up. If StartValue
298 is greater than EndValue, then the performance counter counts down. For
300 of 0 and an EndValue of 0xFFFFFFFFFFFFFFFF. A 24-bit free running counter
301 that counts down would have a StartValue of 0xFFFFFF and an EndValue of 0.
305 @param EndValue The value that the performance counter ends with before
315 OUT UINT64 *EndValue OPTIONAL
326 if (EndValue != NULL) {
327 *EndValue = 0; [all...] |
| /device/linaro/bootloader/edk2/PcAtChipsetPkg/Library/AcpiTimerLib/ |
| AcpiTimerLib.c | 261 EndValue is not NULL, then the value that the performance counter end with
262 immediately before it rolls over is returned in EndValue. The 64-bit
264 is less than EndValue, then the performance counter counts up. If StartValue
265 is greater than EndValue, then the performance counter counts down. For
267 of 0 and an EndValue of 0xFFFFFFFFFFFFFFFF. A 24-bit free running counter
268 that counts down would have a StartValue of 0xFFFFFF and an EndValue of 0.
272 @param EndValue The value that the performance counter ends with before
282 OUT UINT64 *EndValue OPTIONAL
289 if (EndValue != NULL) {
290 *EndValue = 0xffffffffffffffffULL; [all...] |
| /frameworks/support/graphics/drawable/animated/src/main/java/androidx/vectordrawable/graphics/drawable/ |
| ArgbEvaluator.java | 55 * @param endValue A 32-bit int value representing colors in the 63 public Object evaluate(float fraction, Object startValue, Object endValue) { 70 int endInt = (Integer) endValue;
|
| /device/linaro/bootloader/edk2/PerformancePkg/Library/TscTimerLib/ |
| TscTimerLibShare.c | 200 with, 0x0, is returned in StartValue. If EndValue is not NULL, then the value
202 EndValue.
211 @param[out] EndValue Pointer to where the performance counter's ending value is saved, or NULL.
220 OUT UINT64 *EndValue OPTIONAL
226 if (EndValue != NULL) {
227 *EndValue = 0xFFFFFFFFFFFFFFFFull;
|
| /packages/apps/TV/src/com/android/tv/ui/ |
| TvViewUiManager.java | 398 FrameLayout.LayoutParams endValue) { 403 interpolateMargins(lp, startValue, endValue, fraction); 607 MarginLayoutParams endValue, 609 out.topMargin = interpolate(startValue.topMargin, endValue.topMargin, fraction); 610 out.bottomMargin = interpolate(startValue.bottomMargin, endValue.bottomMargin, fraction); 612 interpolate(startValue.getMarginStart(), endValue.getMarginStart(), fraction)); 613 out.setMarginEnd(interpolate(startValue.getMarginEnd(), endValue.getMarginEnd(), fraction)); 614 out.width = interpolate(startValue.width, endValue.width, fraction); 615 out.height = interpolate(startValue.height, endValue.height, fraction);
|
| /device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Library/GenericBdsLib/ |
| Performance.c | 169 UINT64 EndValue;
184 Freq = GetPerformanceCounterProperties (&StartValue, &EndValue);
193 if (EndValue >= StartValue) {
|
| /device/linaro/bootloader/edk2/MdeModulePkg/Library/UefiBootManagerLib/ |
| BmPerformance.c | 173 UINT64 EndValue;
188 Freq = GetPerformanceCounterProperties (&StartValue, &EndValue);
197 if (EndValue >= StartValue) {
|
| /device/linaro/bootloader/edk2/Vlv2TbltDevicePkg/Override/IntelFrameworkModulePkg/Library/GenericBdsLib/ |
| Performance.c | 169 UINT64 EndValue;
189 Freq = GetPerformanceCounterProperties (&StartValue, &EndValue);
198 if (EndValue >= StartValue) {
|