/frameworks/av/media/libstagefright/codecs/mp3dec/src/ |
D | pv_mp3dec_fxd_op_c_equivalent.h | 47 #define Qfmt_31(a) (Int32)((float)a*0x7FFFFFFF) argument 53 __inline int32 pv_abs(int32 a) in pv_abs() 62 __inline Int32 fxp_mul32_Q30(const Int32 a, const Int32 b) in fxp_mul32_Q30() 67 __inline Int32 fxp_mac32_Q30(const Int32 a, const Int32 b, Int32 L_add) in fxp_mac32_Q30() 72 __inline Int32 fxp_mul32_Q32(const Int32 a, const Int32 b) in fxp_mul32_Q32() 78 __inline Int32 fxp_mul32_Q28(const Int32 a, const Int32 b) in fxp_mul32_Q28() 83 __inline Int32 fxp_mul32_Q27(const Int32 a, const Int32 b) in fxp_mul32_Q27() 88 __inline Int32 fxp_mul32_Q26(const Int32 a, const Int32 b) in fxp_mul32_Q26() 94 __inline Int32 fxp_mac32_Q32(Int32 L_add, const Int32 a, const Int32 b) in fxp_mac32_Q32() 99 __inline Int32 fxp_msb32_Q32(Int32 L_sub, const Int32 a, const Int32 b) in fxp_msb32_Q32() [all …]
|
D | pv_mp3dec_fxd_op_msc_evc.h | 57 __inline int32 fxp_mul32_Q30(const int32 a, const int32 b) in fxp_mul32_Q30() 63 __inline int32 fxp_mac32_Q30(const int32 a, const int32 b, int32 L_add) in fxp_mac32_Q30() 69 #define Qfmt_31(a) (int32)(a*0x7FFFFFFF + (a>=0?0.5F:-0.5F)) argument 73 #define fxp_mul32_Q32( a, b) _MulHigh( b, a) argument 77 __inline int32 fxp_mul32_Q28(const int32 a, const int32 b) in fxp_mul32_Q28() 83 __inline int32 fxp_mul32_Q27(const int32 a, const int32 b) in fxp_mul32_Q27() 90 __inline int32 fxp_mul32_Q26(const int32 a, const int32 b) in fxp_mul32_Q26() 96 __inline int32 fxp_mac32_Q32(int32 L_add, const int32 a, const int32 b) in fxp_mac32_Q32() 102 __inline int32 fxp_msb32_Q32(int32 L_sub, const int32 a, const int32 b) in fxp_msb32_Q32() 109 __inline int32 fxp_mul32_Q29(const int32 a, const int32 b) in fxp_mul32_Q29() [all …]
|
D | pvmp3_mdct_6.h | 62 #define Qfmt(a) (Int32)(a*((Int32)1<<28) ) argument 63 #define Qfmt1(a) (Int32)(a*((Int32)0x7FFFFFFF)) argument 64 #define Qfmt2(a) (Int32)(a*((Int32)1<<27)) argument
|
D | pvmp3_mdct_18.h | 62 #define Qfmt(a) (Int32)(a*((Int32)1<<28) ) argument 63 #define Qfmt1(a) (Int32)(a*((Int32)0x7FFFFFFF)) argument 64 #define Qfmt2(a) (Int32)(a*((Int32)1<<27)) argument
|
D | pv_mp3dec_fxd_op_arm_gcc.h | 54 #define Qfmt_31(a) (int32)(a*0x7FFFFFFF + (a>=0?0.5F:-0.5F)) argument 58 static inline int32 fxp_mul32_Q30(const int32 a, const int32 b) in fxp_mul32_Q30() 75 static inline int32 fxp_mac32_Q30(const int32 a, const int32 b, int32 L_add) in fxp_mac32_Q30() 97 static inline int32 fxp_mul32_Q32(const int32 a, const int32 b) in fxp_mul32_Q32() 114 static inline int32 fxp_mul32_Q29(const int32 a, const int32 b) in fxp_mul32_Q29() 131 static inline int32 fxp_mul32_Q28(const int32 a, const int32 b) in fxp_mul32_Q28() 150 static inline int32 fxp_mul32_Q27(const int32 a, const int32 b) in fxp_mul32_Q27() 168 static inline int32 fxp_mul32_Q26(const int32 a, const int32 b) in fxp_mul32_Q26() 187 static inline int32 fxp_mac32_Q32(int32 L_add, const int32 a, const int32 b) in fxp_mac32_Q32() 207 static inline int32 fxp_msb32_Q32(int32 L_sub, const int32 a, const int32 b) in fxp_msb32_Q32()
|
/frameworks/compile/libbcc/tests/data/src/ |
D | locals.c | 1 int a; variable 4 int a; in f() local 12 int g(int a) { in g() 18 int h(int a) { in h() 43 int a; in nested() local 48 int a; in nested() local
|
D | structs.c | 2 struct a { struct 3 int a; member 13 struct a; argument 17 struct b {int a; int b; }; member 28 struct a {int a[10]; char c;} a, b; in testCopying() member 44 void add(struct v* result, struct v* a, struct v* b) { in add() 63 struct v a, b, c; in testArgs() local 83 struct a {int x, y; } z; in main() argument
|
D | expr-ansi.c | 3 void testInc() { int a, b; a = 3; b = a++; printf("3++ = %d %d\n", b, a); } in testInc() local 4 void testDec() { int a, b; a = 3; b = a--; printf("3-- = %d %d\n", b, a); } in testDec() local 21 void testAssignment(){ int a, b; a = 3; b = a; printf("b == %d\n", b); } in testAssignment() local 24 void testAddressOf(){ int a; printf("&a is %d\n", &a); } in testAddressOf() local 25 void testPointerIndirection(){ int a, b; a = &b; b = 17; printf("*%d = %d =?= %d\n", a, * (int*) a… in testPointerIndirection() local 31 int main(int a, char** b) { in main()
|
D | expr.c | 3 testInc() { int a, b; a = 3; b = a++; printf("3++ = %d %d\n", b, a); } in testInc() local 4 testDec() { int a, b; a = 3; b = a--; printf("3-- = %d %d\n", b, a); } in testDec() local 21 testAssignment(){ int a, b; a = 3; b = a; printf("b == %d\n", b); } in testAssignment() local 24 testAddressOf(){ int a; printf("&a is %d\n", &a); } in testAddressOf() local 25 testPointerIndirection(){ int a, b; a = &b; b = 17; printf("*%d = %d =?= %d\n", a, * (int*) a, b);… in testPointerIndirection() local 31 main(a,b) { in main() argument
|
D | pointers2.c | 4 int a = 0; in testsingle() local 12 int a = 0; in testdouble() local 21 int a = 0; in testtripple() local
|
D | flops.c | 42 void comparisonTestdd(double a, double b) { in comparisonTestdd() 55 void comparisonTestdf(double a, float b) { in comparisonTestdf() 67 void comparisonTestff(float a, float b) { in comparisonTestff() 79 void comparisonTestid(int a, double b) { in comparisonTestid() 90 void comparisonTestdi(double a, int b) { in comparisonTestdi() 121 void testpassi(int a, int b, int c, int d, int e, int f, int g, int h, int i, int j, int k, int l) { in testpassi() 125 void testpassf(float a, float b, float c, float d, float e, float f, float g, float h, float i, flo… in testpassf() 129 void testpassd(double a, double b, double c, double d, double e, double f, double g, double h, doub… in testpassd()
|
D | array.c | 5 int a[3]; in testLocalInt() local 12 char a[3]; variable 44 void vectorAdd(int* a, int* b, float* c, int len) { in vectorAdd() 52 int a[3], b[3]; in testArgs() local
|
D | assignmentop.c | 4 int a = 2; in testAssignment() local 36 int a; variable
|
D | comma.c | 5 int testArg(int a) { in testArg() 10 int a; in testComma() local
|
/frameworks/native/services/surfaceflinger/ |
D | clz.h | 28 static inline T min(T a, T b) { in min() 32 static inline T min(T a, T b, T c) { in min() 36 static inline T min(T a, T b, T c, T d) { in min() 41 static inline T max(T a, T b) { in max() 45 static inline T max(T a, T b, T c) { in max() 49 static inline T max(T a, T b, T c, T d) { in max() 55 void swap(T& a, T& b) { in swap()
|
/frameworks/compile/libbcc/lib/Renderscript/runtime/ |
D | rs_allocation.c | 7 rsAllocationGetDimX(rs_allocation a) { in rsAllocationGetDimX() 13 rsAllocationGetDimY(rs_allocation a) { in rsAllocationGetDimY() 19 rsAllocationGetDimZ(rs_allocation a) { in rsAllocationGetDimZ() 25 rsAllocationGetDimLOD(rs_allocation a) { in rsAllocationGetDimLOD() 31 rsAllocationGetDimFaces(rs_allocation a) { in rsAllocationGetDimFaces() 37 rsGetElementAt(rs_allocation a, uint32_t x) { in rsGetElementAt() 45 rsGetElementAt(rs_allocation a, uint32_t x, uint32_t y) { in rsGetElementAt() 54 rsGetElementAt(rs_allocation a, uint32_t x, uint32_t y, uint32_t z) { in rsGetElementAt() 64 rsAllocationGetElement(rs_allocation a) { in rsAllocationGetElement()
|
D | rs_sample.c | 9 getElementAt(rs_allocation a, uint32_t x, uint32_t lod) { in getElementAt() 21 getElementAt(rs_allocation a, uint32_t x, uint32_t y, uint32_t lod) { in getElementAt() 39 getElementAt(rs_allocation a, uint2 uv, uint32_t lod) { in getElementAt() 234 getBilinearSample(rs_allocation a, float2 weights, in getBilinearSample() 241 getBilinearSample(rs_allocation a, float4 weights, in getBilinearSample() 248 getNearestSample(rs_allocation a, uint32_t iPixel, uint32_t vecSize, in getNearestSample() 254 getNearestSample(rs_allocation a, uint2 iPixel, uint32_t vecSize, in getNearestSample() 260 sample_LOD_LinearPixel(rs_allocation a, const Type_t *type, in sample_LOD_LinearPixel() 290 sample_LOD_NearestPixel(rs_allocation a, const Type_t *type, in sample_LOD_NearestPixel() 303 sample_LOD_LinearPixel(rs_allocation a, const Type_t *type, in sample_LOD_LinearPixel() [all …]
|
/frameworks/base/tools/layoutlib/create/tests/mock_android/dummy/ |
D | InnerTest.java | 65 int a = 1; in MyGenerics1() local 69 public <X> void genericMethod1(X a, X[] a) { in genericMethod1() 72 public <X, Y> void genericMethod2(X a, List<Y> b) { in genericMethod2() 75 public <X, Y> void genericMethod3(X a, List<Y extends InnerTest> b) { in genericMethod3() 78 public <T extends InnerTest> void genericMethod4(T[] a, Collection<T> b, Collection<?> c) { in genericMethod4()
|
/frameworks/base/core/java/android/util/ |
D | MathUtils.java | 50 public static float log(float a) { in log() 54 public static float exp(float a) { in exp() 58 public static float pow(float a, float b) { in pow() 62 public static float max(float a, float b) { in max() 66 public static float max(int a, int b) { in max() 70 public static float max(float a, float b, float c) { in max() 74 public static float max(int a, int b, int c) { in max() 78 public static float min(float a, float b) { in min() 82 public static float min(int a, int b) { in min() 86 public static float min(float a, float b, float c) { in min() [all …]
|
/frameworks/base/tools/layoutlib/create/tests/com/android/tools/layoutlib/create/dataclass/ |
D | ClassWithNative.java | 32 public int add(int a, int b) { in add() 39 public int callNativeInstance(int a, double d, Object[] o) { in callNativeInstance() 43 private native int native_instance(int a, double d, Object[] o); in native_instance()
|
/frameworks/compile/llvm-ndk-cc/tests/P_cxx/ |
D | cxx.cpp | 4 void foo(int a) {} in foo() 9 void foo(double a) {} in foo() 15 void foo(char* a) {} in foo()
|
/frameworks/support/renderscript/v8/rs_support/ |
D | rsAdapter.cpp | 28 Adapter1D::Adapter1D(Context *rsc, Allocation *a) : ObjectBase(rsc) { in Adapter1D() 55 Adapter1D *a = new Adapter1D(rsc); in rsi_Adapter1DCreate() local 61 Adapter1D * a = static_cast<Adapter1D *>(va); in rsi_Adapter1DBindAllocation() local 67 Adapter1D * a = static_cast<Adapter1D *>(va); in rsi_Adapter1DSetConstraint() local 99 Adapter2D::Adapter2D(Context *rsc, Allocation *a) : ObjectBase(rsc) { in Adapter2D() 129 Adapter2D *a = new Adapter2D(rsc); in rsi_Adapter2DCreate() local 135 Adapter2D * a = static_cast<Adapter2D *>(va); in rsi_Adapter2DBindAllocation() local 141 Adapter2D * a = static_cast<Adapter2D *>(va); in rsi_Adapter2DSetConstraint() local
|
/frameworks/rs/ |
D | rsAdapter.cpp | 28 Adapter1D::Adapter1D(Context *rsc, Allocation *a) : ObjectBase(rsc) { in Adapter1D() 55 Adapter1D *a = new Adapter1D(rsc); in rsi_Adapter1DCreate() local 61 Adapter1D * a = static_cast<Adapter1D *>(va); in rsi_Adapter1DBindAllocation() local 67 Adapter1D * a = static_cast<Adapter1D *>(va); in rsi_Adapter1DSetConstraint() local 99 Adapter2D::Adapter2D(Context *rsc, Allocation *a) : ObjectBase(rsc) { in Adapter2D() 129 Adapter2D *a = new Adapter2D(rsc); in rsi_Adapter2DCreate() local 135 Adapter2D * a = static_cast<Adapter2D *>(va); in rsi_Adapter2DBindAllocation() local 141 Adapter2D * a = static_cast<Adapter2D *>(va); in rsi_Adapter2DSetConstraint() local
|
/frameworks/base/libs/hwui/utils/ |
D | Compare.h | 25 #define LTE_FLOAT(a) \ argument 32 #define LTE_INT(a) \ argument
|
/frameworks/av/media/libstagefright/codecs/amrwbenc/inc/ |
D | basic_op.h | 44 #define extract_h(a) ((Word16)(a >> 16)) argument 46 #define add1(a,b) (a + b) argument 47 #define vo_L_msu(a,b,c) ( a - (( b * c ) << 1) ) argument 48 #define vo_mult32(a, b) ((a) * (b)) argument 49 #define vo_mult(a,b) (( a * b ) >> 15 ) argument 50 #define vo_L_mult(a,b) (((a) * (b)) << 1) argument 52 #define vo_sub(a,b) (a - b) argument 53 #define vo_L_deposit_h(a) ((Word32)((a) << 16)) argument 54 #define vo_round(a) ((a + 0x00008000) >> 16) argument 55 #define vo_extract_l(a) ((Word16)(a)) argument [all …]
|