OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:MAX_DEGREE
(Results
1 - 2
of
2
) sorted by null
/frameworks/base/core/java/android/view/
VelocityTracker.java
259
// Must match VelocityTracker::Estimator::
MAX_DEGREE
260
private static final int
MAX_DEGREE
= 2;
265
public final float[] xCoeff = new float[
MAX_DEGREE
+ 1];
270
public final float[] yCoeff = new float[
MAX_DEGREE
+ 1];
/frameworks/base/include/ui/
Input.h
636
static const size_t
MAX_DEGREE
= 2;
639
float xCoeff[
MAX_DEGREE
+ 1], yCoeff[
MAX_DEGREE
+ 1];
651
for (size_t i = 0; i <=
MAX_DEGREE
; i++) {
Completed in 162 milliseconds