/frameworks/base/include/utils/ |
D | ByteOrder.h | 55 #define dtohl(x) (x) argument 56 #define dtohs(x) (x) argument 57 #define htodl(x) (x) argument 58 #define htods(x) (x) argument 62 #define dtohl(x) (android_swap_long(x)) argument 63 #define dtohs(x) (android_swap_short(x)) argument 64 #define htodl(x) (android_swap_long(x)) argument 65 #define htods(x) (android_swap_short(x)) argument 70 #define fromlel(x) (x) argument 71 #define fromles(x) (x) argument [all …]
|
/frameworks/base/include/media/stagefright/foundation/ |
D | ADebug.h | 29 #define LITERAL_TO_STRING_INTERNAL(x) #x argument 30 #define LITERAL_TO_STRING(x) LITERAL_TO_STRING_INTERNAL(x) argument 57 #define CHECK_OP(x,y,suffix,op) \ argument 68 #define CHECK_EQ(x,y) CHECK_OP(x,y,EQ,==) argument 69 #define CHECK_NE(x,y) CHECK_OP(x,y,NE,!=) argument 70 #define CHECK_LE(x,y) CHECK_OP(x,y,LE,<=) argument 71 #define CHECK_LT(x,y) CHECK_OP(x,y,LT,<) argument 72 #define CHECK_GE(x,y) CHECK_OP(x,y,GE,>=) argument 73 #define CHECK_GT(x,y) CHECK_OP(x,y,GT,>) argument
|
/frameworks/base/media/libstagefright/codecs/m4v_h263/dec/src/ |
D | motion_comp.h | 57 #define CLIP_RESULT(x) if(x & -256){x = 0xFF & (~(x>>31));} argument 58 #define ADD_AND_CLIP1(x) x += (pred_word&0xFF); CLIP_RESULT(x); argument 59 #define ADD_AND_CLIP2(x) x += ((pred_word>>8)&0xFF); CLIP_RESULT(x); argument 60 #define ADD_AND_CLIP3(x) x += ((pred_word>>16)&0xFF); CLIP_RESULT(x); argument 61 #define ADD_AND_CLIP4(x) x += ((pred_word>>24)&0xFF); CLIP_RESULT(x); argument 63 #define ADD_AND_CLIP(x,y) { x9 = ~(x>>8); \ argument
|
/frameworks/base/include/media/stagefright/ |
D | MediaDebug.h | 7 #define LITERAL_TO_STRING_INTERNAL(x) #x argument 8 #define LITERAL_TO_STRING(x) LITERAL_TO_STRING_INTERNAL(x) argument 10 #define CHECK_EQ(x,y) \ argument 15 #define CHECK(x) \ argument
|
/frameworks/base/media/libstagefright/codecs/amrwb/src/ |
D | pvamrwb_math_op.h | 119 #define norm_s( x) (normalize_amr_wb( x) - 16) argument 122 #define extract_h( x) (int16)(x>>16) argument 123 #define L_deposit_h( x) (int32)(x<<16) argument
|
D | normalize_amr_wb.h | 73 __inline int16 normalize_amr_wb(int32 x) in normalize_amr_wb() 78 clz y, x; in normalize_amr_wb() local 88 __inline int16 normalize_amr_wb(int32 x) in normalize_amr_wb()
|
/frameworks/base/media/libstagefright/codecs/aacdec/ |
D | qmf_filterbank_coeff.h | 61 #define Qfmt(x) (Int16)(x*(((Int32)1<<15)*1.11111111111111111F) + (x>=0?0.5F:-0.5F)) argument 64 #define Qfmt30(x) (Int32)(x*((Int32)1<<30) + (x>=0?0.5F:-0.5F)) argument 65 #define Qfmt27(x) (Int32)(x*(((Int32)1<<27)) + (x>=0?0.5F:-0.5F)) argument
|
D | pv_normalize.h | 59 __inline Int pv_normalize(Int32 x) in pv_normalize() 64 clz y, x; in pv_normalize() local 73 __inline Int pv_normalize(Int32 x) in pv_normalize()
|
D | esc_iquant_scaling.cpp | 383 __inline Int32 abs2(Int32 x) in abs2() 399 #define pv_abs(x) abs2(x) argument 407 __inline Int32 abs2(Int32 x) in abs2() 422 #define pv_abs(x) abs2(x) argument 427 #define pv_abs(x) ((x) > 0)? (x) : (-x) argument 444 Int x; in esc_iquant_scaling() local
|
D | ps_all_pass_fract_delay_filter.h | 59 #define Q29_fmt(x) (Int32)(x*((Int32)1<<R_SHIFT) + (x>=0?0.5F:-0.5F)) argument 61 #define Qfmt15(x) (Int16)(x*((Int32)1<<15) + (x>=0?0.5F:-0.5F)) argument
|
D | sbr_envelope_calc_tbl.cpp | 125 #define Q30_fmt(x) (Int32)(x*((Int32)1<<30) + (x>=0?0.5F:-0.5F)) argument 126 #define Qfmt15(x) (Int16)(x*((Int32)1<<15) + (x>=0?0.5F:-0.5F)) argument
|
D | dst8.cpp | 78 #define Qfmt15(x) (Int16)(x*((Int32)1<<15) + (x>=0?0.5F:-0.5F)) argument 106 #define Qfmt(x) (Int32)(x*((Int32)1<<R_SHIFT) + (x>=0?0.5F:-0.5F)) argument 108 #define Qfmt31(x) (Int32)(x*0x7FFFFFFF + (x>=0?0.5F:-0.5F)) argument
|
/frameworks/base/core/jni/ |
D | android_util_FloatMath.cpp | 9 static float FloorF(JNIEnv* env, jobject clazz, float x) { in FloorF() 13 static float CeilF(JNIEnv* env, jobject clazz, float x) { in CeilF() 17 static float SinF(JNIEnv* env, jobject clazz, float x) { in SinF() 21 static float CosF(JNIEnv* env, jobject clazz, float x) { in CosF() 25 static float SqrtF(JNIEnv* env, jobject clazz, float x) { in SqrtF()
|
/frameworks/base/graphics/java/android/graphics/ |
D | PointF.java | 26 public float x; field in PointF 31 public PointF(float x, float y) { in PointF() 44 public final void set(float x, float y) { in set() 70 public final boolean equals(float x, float y) { in equals() 84 public static float length(float x, float y) { in length()
|
D | Point.java | 24 public int x; field in Point 29 public Point(int x, int y) { in Point() 42 public void set(int x, int y) { in set() 66 public final boolean equals(int x, int y) { in equals()
|
D | RadialGradient.java | 31 public RadialGradient(float x, float y, float radius, in RadialGradient() 53 public RadialGradient(float x, float y, float radius, in RadialGradient() 61 private static native int nativeCreate1(float x, float y, float radius, in nativeCreate1() 63 private static native int nativeCreate2(float x, float y, float radius, in nativeCreate2()
|
/frameworks/base/services/sensorservice/ |
D | SecondOrderLowPassFilter.cpp | 52 float BiquadFilter::init(float x) in init() 59 float BiquadFilter::operator()(float x) in operator ()() 76 float CascadedBiquadFilter::init(float x) in init() 83 float CascadedBiquadFilter::operator()(float x) in operator ()()
|
/frameworks/base/media/libstagefright/codecs/mp3dec/src/ |
D | pvmp3_normalize.h | 62 __inline int32 pvmp3_normalize(int32 x) in pvmp3_normalize() 67 clz y, x; in pvmp3_normalize() local 76 __inline int32 pvmp3_normalize(int32 x) in pvmp3_normalize()
|
D | pvmp3_huffman_decoding.cpp | 127 int32 x; in pvmp3_huffman_quad_decoding() local 194 int32 x; in pvmp3_huffman_pair_decoding() local 248 int32 x; in pvmp3_huffman_pair_decoding_linbits() local
|
/frameworks/base/core/java/android/gesture/ |
D | GesturePoint.java | 27 public final float x; field in GesturePoint 32 public GesturePoint(float x, float y, long t) { in GesturePoint() 40 final float x = in.readFloat(); in deserialize() local
|
/frameworks/base/opengl/libagl/ |
D | fp.cpp | 34 GLfloat fixedToFloat(GLfixed x) in fixedToFloat() 56 float sinef(float x) in sinef() 74 float cosinef(float x) in cosinef()
|
/frameworks/base/media/libstagefright/foundation/ |
D | AString.cpp | 117 size_t x = 0; in hash() local 190 void AString::append(int x) { in append() 197 void AString::append(unsigned x) { in append() 204 void AString::append(long x) { in append() 211 void AString::append(unsigned long x) { in append() 218 void AString::append(long long x) { in append() 225 void AString::append(unsigned long long x) { in append() 232 void AString::append(float x) { in append() 239 void AString::append(double x) { in append() 246 void AString::append(void *x) { in append()
|
/frameworks/base/media/libstagefright/codecs/m4v_h263/enc/src/ |
D | m4venc_oscl.h | 37 #define M4VENC_LOG(x) log(x) argument 38 #define M4VENC_SQRT(x) sqrt(x) argument 39 #define M4VENC_POW(x,y) pow(x,y) argument
|
D | bitstream_io.h | 21 #define BitstreamPut1Bits(x,y) BitstreamPutBits(x,1,y) argument 22 #define BitstreamPutGT8Bits(x,y,z) BitstreamPutBits(x,y,z) argument
|
/frameworks/base/media/libstagefright/codecs/amrwbenc/src/ |
D | util.c | 33 Word16 x[], /* (o) : vector to clear */ in Set_zero() 51 Word16 x[], /* (i) : input vector */ in Copy()
|