OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:MAX_N
(Results
1 - 2
of
2
) sorted by null
/frameworks/base/core/java/android/hardware/
GeomagneticField.java
139
final int
MAX_N
= G_COEFF.length; // Maximum degree of the coefficients.
156
new LegendreTable(
MAX_N
- 1,
160
// 0..
MAX_N
-2 (this is much faster than calling Math.pow
MAX_N
+1 times).
161
float[] relativeRadiusPower = new float[
MAX_N
+ 2];
169
// Compute tables of sin(lon * m) and cos(lon * m) for m = 0..
MAX_N
--
170
// this is much faster than calling Math.sin and Math.com
MAX_N
+1 times.
171
float[] sinMLon = new float[
MAX_N
];
172
float[] cosMLon = new float[
MAX_N
];
178
for (int m = 2; m <
MAX_N
; ++m)
[
all
...]
/external/dropbear/libtomcrypt/src/ciphers/
anubis.c
36
#define
MAX_N
10
38
#define MAX_ROUNDS (8 +
MAX_N
)
40
#define MAX_KEYSIZEB (4*
MAX_N
)
[
all
...]
Completed in 158 milliseconds