Searched refs:ax (Results 1 – 4 of 4) sorted by relevance
/frameworks/av/tools/resampler_tools/ |
D | fir.cpp | 44 double ax,ans,y; in I0() local 45 ax=fabs(x); in I0() 46 if (ax < 3.75) { in I0() 52 y=3.75/ax; in I0() 53 ans=(exp(ax)/sqrt(ax))*(0.39894228+y*(0.1328592e-1 in I0()
|
/frameworks/layoutlib/bridge/src/android/view/math/ |
D | Math3DHelper.java | 186 private static boolean rightTurn(float ax, float ay, float bx, float by, float cx, float cy) { in rightTurn() argument 187 return (bx - ax) * (cy - ay) - (by - ay) * (cx - ax) > 0.00001; in rightTurn()
|
/frameworks/base/services/core/java/com/android/server/net/ |
D | NetworkStatsCollection.java | 202 long ax = Math.abs(x); in multiplySafe() local 204 if (((ax | ay) >>> 31 != 0)) { in multiplySafe()
|
/frameworks/base/graphics/java/android/graphics/ |
D | ColorSpace.java | 3347 private static float cross(float ax, float ay, float bx, float by) { in cross() argument 3348 return ax * by - ay * bx; in cross()
|