/frameworks/base/libs/audioflinger/ |
D | AudioMixer.h | 31 #define LIKELY( exp ) (__builtin_expect( (exp) != 0, true )) argument 32 #define UNLIKELY( exp ) (__builtin_expect( (exp) != 0, false )) argument
|
D | AudioFlinger.h | 51 #define LIKELY( exp ) (__builtin_expect( (exp) != 0, true )) argument 52 #define UNLIKELY( exp ) (__builtin_expect( (exp) != 0, false )) argument
|
/frameworks/base/camera/libcameraservice/ |
D | CameraService.h | 33 #define LIKELY( exp ) (__builtin_expect( (exp) != 0, true )) argument 34 #define UNLIKELY( exp ) (__builtin_expect( (exp) != 0, false )) argument
|
/frameworks/base/tests/AndroidTests/src/com/android/unit_tests/ |
D | MathTest.java | 252 result = Math.exp(sDouble1); in testMathExp() 253 result = Math.exp(sDouble1); in testMathExp() 254 result = Math.exp(sDouble1); in testMathExp() 255 result = Math.exp(sDouble1); in testMathExp() 256 result = Math.exp(sDouble1); in testMathExp() 257 result = Math.exp(sDouble1); in testMathExp() 258 result = Math.exp(sDouble1); in testMathExp() 259 result = Math.exp(sDouble1); in testMathExp() 260 result = Math.exp(sDouble1); in testMathExp() 261 result = Math.exp(sDouble1); in testMathExp()
|
/frameworks/base/libs/ui/ |
D | ISurfaceComposer.cpp | 33 #define LIKELY( exp ) (__builtin_expect( (exp) != 0, true )) argument 34 #define UNLIKELY( exp ) (__builtin_expect( (exp) != 0, false )) argument
|
D | ISurfaceFlingerClient.cpp | 45 #define LIKELY( exp ) (__builtin_expect( (exp) != 0, true )) argument 46 #define UNLIKELY( exp ) (__builtin_expect( (exp) != 0, false )) argument
|
D | SurfaceComposerClient.cpp | 49 #define LIKELY( exp ) (__builtin_expect( (exp) != 0, true )) argument 50 #define UNLIKELY( exp ) (__builtin_expect( (exp) != 0, false )) argument
|
/frameworks/base/libs/surfaceflinger/ |
D | Transform.cpp | 25 #define LIKELY( exp ) (__builtin_expect( (exp) != 0, true )) argument 26 #define UNLIKELY( exp ) (__builtin_expect( (exp) != 0, false )) argument
|
D | BlurFilter.cpp | 29 #define LIKELY( exp ) (__builtin_expect( (exp) != 0, true )) argument 30 #define UNLIKELY( exp ) (__builtin_expect( (exp) != 0, false )) argument
|
D | SurfaceFlinger.h | 62 #define LIKELY( exp ) (__builtin_expect( (exp) != 0, true )) argument 63 #define UNLIKELY( exp ) (__builtin_expect( (exp) != 0, false )) argument
|
/frameworks/base/core/java/android/util/ |
D | MathUtils.java | 50 public static float exp(float a) { in exp() method in MathUtils 51 return (float) Math.exp(a); in exp()
|
/frameworks/base/test-runner/android/test/ |
D | MoreAsserts.java | 170 Object exp = expected[i]; in assertEquals() local 173 if (!((exp==null) ? act==null : exp.equals(act))) { in assertEquals() 174 failWrongElement(message, i, exp, act); in assertEquals()
|
/frameworks/base/media/libmedia/ |
D | AudioRecord.cpp | 41 #define LIKELY( exp ) (__builtin_expect( (exp) != 0, true )) argument 42 #define UNLIKELY( exp ) (__builtin_expect( (exp) != 0, false )) argument
|
D | AudioTrack.cpp | 41 #define LIKELY( exp ) (__builtin_expect( (exp) != 0, true )) argument 42 #define UNLIKELY( exp ) (__builtin_expect( (exp) != 0, false )) argument
|
D | AudioSystem.cpp | 209 return volume ? exp(float(100 - volume) * dBConvert) : 0; in linearToLog()
|
/frameworks/base/core/java/android/widget/ |
D | Scroller.java | 351 x -= (1.0f - (float)Math.exp(-x)); in viscousFluid() 354 x = 1.0f - (float)Math.exp(1.0f - x); in viscousFluid()
|
/frameworks/base/tests/CoreTests/android/core/ |
D | StrictMathTest.java | 235 .abs(StrictMath.exp(4D) - StrictMath.E * StrictMath.E in testExpD() 238 .log(StrictMath.abs(StrictMath.exp(5.5D)) - 5.5D) < 10.0D); in testExpD() 349 double answer = StrictMath.log(StrictMath.exp(d)); in testLogD()
|
D | MathTest.java | 242 .exp(4D) in testExpD() 245 .abs(Math.exp(5.5D)) - 5.5D) < 10.0D); in testExpD() 350 double answer = Math.log(Math.exp(d)); in testLogD()
|