OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:HISTORY_SIZE
(Results
1 - 9
of
9
) sorted by null
/frameworks/base/services/usage/java/com/android/server/usage/
AppIdleHistory.java
33
private static final int
HISTORY_SIZE
= 100;
46
&& (thisPeriod - lastPeriod) <
HISTORY_SIZE
- 1) {
53
System.arraycopy(history, diff, history, 0,
HISTORY_SIZE
- diff);
56
history[
HISTORY_SIZE
- i - 1] =
57
(byte) (history[
HISTORY_SIZE
- diff - 1] & FLAG_LAST_STATE);
64
packageHistory[
HISTORY_SIZE
- 1] = FLAG_LAST_STATE | FLAG_PARTIAL_ACTIVE;
66
packageHistory[
HISTORY_SIZE
- 1] &= ~FLAG_LAST_STATE;
82
packageHistory = new byte[
HISTORY_SIZE
];
95
return (packageHistory[
HISTORY_SIZE
- 1] & FLAG_LAST_STATE) == 0;
105
for (int i = 0; i <
HISTORY_SIZE
; i++)
[
all
...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
SignalController.java
36
static final int
HISTORY_SIZE
= 64;
53
// Save the previous
HISTORY_SIZE
states for logging.
68
mHistory = new State[
HISTORY_SIZE
];
69
for (int i = 0; i <
HISTORY_SIZE
; i++) {
180
mHistory[mHistoryIndex++ & (
HISTORY_SIZE
- 1)].copyFrom(mLastState);
189
for (int i = 0; i <
HISTORY_SIZE
; i++) {
193
for (int i = mHistoryIndex +
HISTORY_SIZE
- 1;
194
i >= mHistoryIndex +
HISTORY_SIZE
- size; i--) {
195
pw.println(" Previous State(" + (mHistoryIndex +
HISTORY_SIZE
- i) + "): "
196
+ mHistory[i & (
HISTORY_SIZE
- 1)])
[
all
...]
/frameworks/native/include/input/
VelocityTracker.h
173
static const uint32_t
HISTORY_SIZE
= 20;
190
Movement mMovements[
HISTORY_SIZE
];
248
static const uint32_t
HISTORY_SIZE
= 20;
264
Movement mMovements[
HISTORY_SIZE
];
/external/androidplot/Examples/DemoApp/src/com/androidplot/demos/
OrientationSensorExampleActivity.java
42
private static final int
HISTORY_SIZE
= 300; // number of points to plot in history
111
aprHistoryPlot.setDomainBoundaries(0,
HISTORY_SIZE
, BoundaryMode.FIXED);
122
aprHistoryPlot.setDomainStepValue(
HISTORY_SIZE
/10);
232
if (rollHistorySeries.size() >
HISTORY_SIZE
) {
/frameworks/base/services/core/java/com/android/server/
GraphicsStatsService.java
53
* 3) ASHMEM_SIZE *
HISTORY_SIZE
55
* Currently ASHMEM_SIZE is 256 bytes and
HISTORY_SIZE
is 20. Assuming
66
private static final int
HISTORY_SIZE
= 20;
71
private HistoricalData[] mHistoricalLog = new HistoricalData[
HISTORY_SIZE
];
/frameworks/native/libs/input/
VelocityTracker.cpp
355
const uint32_t LeastSquaresVelocityTrackerStrategy::
HISTORY_SIZE
;
378
if (++mIndex ==
HISTORY_SIZE
) {
562
float x[
HISTORY_SIZE
];
563
float y[
HISTORY_SIZE
];
564
float w[
HISTORY_SIZE
];
565
float time[
HISTORY_SIZE
];
585
index = (index == 0 ?
HISTORY_SIZE
: index) - 1;
586
} while (++m <
HISTORY_SIZE
);
635
uint32_t nextIndex = (index + 1) %
HISTORY_SIZE
;
812
const uint32_t LegacyVelocityTrackerStrategy::
HISTORY_SIZE
;
[
all
...]
/frameworks/opt/net/voip/src/jni/rtp/
AudioGroup.cpp
91
#define
HISTORY_SIZE
100
372
mBufferHead = tick -
HISTORY_SIZE
;
376
if (tick - mBufferHead >
HISTORY_SIZE
) {
378
mBufferHead = tick -
HISTORY_SIZE
;
/frameworks/base/core/java/android/widget/
Editor.java
[
all
...]
/prebuilts/tools/common/eclipse/
org.eclipse.ui.workbench.texteditor_3.6.1.r361_v20100714-0800.jar
Completed in 1861 milliseconds