Home
last modified time | relevance | path

Searched defs:x (Results 1 – 25 of 808) sorted by relevance

12345678910>>...33

/frameworks/native/include/utils/
DByteOrder.h55 #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/av/include/media/stagefright/foundation/
DADebug.h29 #define LITERAL_TO_STRING_INTERNAL(x) #x argument
30 #define LITERAL_TO_STRING(x) LITERAL_TO_STRING_INTERNAL(x) argument
58 #define CHECK_OP(x,y,suffix,op) \ argument
71 #define CHECK_EQ(x,y) CHECK_OP(x,y,EQ,==) argument
72 #define CHECK_NE(x,y) CHECK_OP(x,y,NE,!=) argument
73 #define CHECK_LE(x,y) CHECK_OP(x,y,LE,<=) argument
74 #define CHECK_LT(x,y) CHECK_OP(x,y,LT,<) argument
75 #define CHECK_GE(x,y) CHECK_OP(x,y,GE,>=) argument
76 #define CHECK_GT(x,y) CHECK_OP(x,y,GT,>) argument
/frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
Dmotion_comp.h57 #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/support/renderscript/v8/rs_support/driver/
DrsdRuntimeMath.cpp166 static void SC_MatrixLoadRotate(Matrix4x4 *m, float rot, float x, float y, float z) { in SC_MatrixLoadRotate()
169 static void SC_MatrixLoadScale(Matrix4x4 *m, float x, float y, float z) { in SC_MatrixLoadScale()
172 static void SC_MatrixLoadTranslate(Matrix4x4 *m, float x, float y, float z) { in SC_MatrixLoadTranslate()
175 static void SC_MatrixRotate(Matrix4x4 *m, float rot, float x, float y, float z) { in SC_MatrixRotate()
178 static void SC_MatrixScale(Matrix4x4 *m, float x, float y, float z) { in SC_MatrixScale()
181 static void SC_MatrixTranslate(Matrix4x4 *m, float x, float y, float z) { in SC_MatrixTranslate()
381 float acos(float x) { in acos()
385 float acosh(float x) { in acosh()
389 float asin(float x) { in asin()
393 float asinh(float x) { in asinh()
[all …]
/frameworks/base/core/jni/
Dandroid_util_FloatMath.cpp9 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()
29 static float ExpF(JNIEnv* env, jobject clazz, float x) { in ExpF()
33 static float PowF(JNIEnv* env, jobject clazz, float x, float y) { in PowF()
37 static float HypotF(JNIEnv* env, jobject clazz, float x, float y) { in HypotF()
/frameworks/base/tests/WebViewTests/src/com/android/webviewtests/
DJavaBridgeArrayCoercionTest.java65 public synchronized void setBooleanArray(boolean[] x) { in setBooleanArray()
69 public synchronized void setByteArray(byte[] x) { in setByteArray()
73 public synchronized void setCharArray(char[] x) { in setCharArray()
77 public synchronized void setShortArray(short[] x) { in setShortArray()
81 public synchronized void setIntArray(int[] x) { in setIntArray()
85 public synchronized void setLongArray(long[] x) { in setLongArray()
89 public synchronized void setFloatArray(float[] x) { in setFloatArray()
93 public synchronized void setDoubleArray(double[] x) { in setDoubleArray()
97 public synchronized void setStringArray(String[] x) { in setStringArray()
101 public synchronized void setObjectArray(Object[] x) { in setObjectArray()
[all …]
DJavaBridgeCoercionTest.java70 public synchronized void setBooleanValue(boolean x) { in setBooleanValue()
74 public synchronized void setByteValue(byte x) { in setByteValue()
78 public synchronized void setCharValue(char x) { in setCharValue()
82 public synchronized void setShortValue(short x) { in setShortValue()
86 public synchronized void setIntValue(int x) { in setIntValue()
90 public synchronized void setLongValue(long x) { in setLongValue()
94 public synchronized void setFloatValue(float x) { in setFloatValue()
98 public synchronized void setDoubleValue(double x) { in setDoubleValue()
102 public synchronized void setStringValue(String x) { in setStringValue()
106 public synchronized void setObjectValue(Object x) { in setObjectValue()
[all …]
/frameworks/compile/libbcc/tests/data/src/
Dfilm.c3 int test(int x, int y) { in test()
8 int test2(int x, int y) { in test2()
16 int test3(int x, int y) { in test3()
21 int test4(int x, int y) { in test4()
31 int x,y; in main() local
Dcasts.c12 int x = 4; in test2() local
28 int x = 0x12345678; in test4() local
38 int x = 0xFFFFFFFF; in test5() local
54 int x = (*(int(*)()) fp)(10); in test6() local
/frameworks/compile/libbcc/runtime/test/Unit/
Dgcc_personality_test_helper.cxx24 void register_foo_local(int* x) in register_foo_local()
30 void register_bar_local(int* x) in register_bar_local()
36 void foo_clean(void* x) in foo_clean()
46 void bar_clean(void* x) in bar_clean()
Dgcc_personality_test.c32 int x __attribute__((cleanup(bar_clean))) = 0; in bar() local
38 int x __attribute__((cleanup(foo_clean))) = 0; in foo() local
/frameworks/av/media/libstagefright/codecs/amrwb/src/
Dpvamrwb_math_op.h119 #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
Dnormalize_amr_wb.h73 __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/compile/slang/
Dslang_rs_spec_table.cpp25 #define ENUM_PRIMITIVE_DATA_TYPE(x, name, bits) x, argument
26 #define PRIMITIVE_DATA_TYPE_RANGE(x, y) \ argument
33 #define ENUM_RS_MATRIX_DATA_TYPE(x, name, dim) x, argument
34 #define RS_MATRIX_DATA_TYPE_RANGE(x, y) \ argument
41 #define ENUM_RS_OBJECT_DATA_TYPE(x, name) x, argument
42 #define RS_OBJECT_DATA_TYPE_RANGE(x, y) \ argument
172 #define ALIAS_DEF(x, y) \ in GenRSDataTypeEnums() argument
181 #define ALIAS_DEF(x) \ in GenRSDataTypeEnums() argument
190 #define DEF(x) \ in GenRSDataTypeEnums() argument
195 #define DEF_RANGE(x, begin, end) \ in GenRSDataTypeEnums() argument
[all …]
/frameworks/av/media/libstagefright/codecs/mp3dec/src/
Dpvmp3_normalize.h62 __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()
/frameworks/base/graphics/java/android/renderscript/
DMatrix3f.java67 public float get(int x, int y) { in get()
77 public void set(int x, int y, float v) { in set()
116 public void loadRotate(float rot, float x, float y, float z) { in loadRotate()
170 public void loadScale(float x, float y) { in loadScale()
183 public void loadScale(float x, float y, float z) { in loadScale()
197 public void loadTranslate(float x, float y) { in loadTranslate()
247 public void rotate(float rot, float x, float y, float z) { in rotate()
272 public void scale(float x, float y) { in scale()
286 public void scale(float x, float y, float z) { in scale()
299 public void translate(float x, float y) { in translate()
/frameworks/support/renderscript/v8/java/src/android/support/v8/renderscript/
DMatrix3f.java67 public float get(int x, int y) { in get()
77 public void set(int x, int y, float v) { in set()
116 public void loadRotate(float rot, float x, float y, float z) { in loadRotate()
170 public void loadScale(float x, float y) { in loadScale()
183 public void loadScale(float x, float y, float z) { in loadScale()
197 public void loadTranslate(float x, float y) { in loadTranslate()
247 public void rotate(float rot, float x, float y, float z) { in rotate()
272 public void scale(float x, float y) { in scale()
286 public void scale(float x, float y, float z) { in scale()
299 public void translate(float x, float y) { in translate()
/frameworks/base/media/mca/filterfw/java/android/filterfw/geometry/
DPoint.java27 public float x; field in Point
33 public Point(float x, float y) { in Point()
38 public void set(float x, float y) { in set()
48 public Point plus(float x, float y) { in plus()
56 public Point minus(float x, float y) { in minus()
68 public Point mult(float x, float y) { in mult()
/frameworks/base/graphics/java/android/graphics/
DRadialGradient.java31 public RadialGradient(float x, float y, float radius, in RadialGradient()
55 public RadialGradient(float x, float y, float radius, in RadialGradient()
65 private static native int nativeCreate1(float x, float y, float radius, in nativeCreate1()
67 private static native int nativeCreate2(float x, float y, float radius, in nativeCreate2()
70 private static native int nativePostCreate1(int native_shader, float x, float y, float radius, in nativePostCreate1()
72 private static native int nativePostCreate2(int native_shader, float x, float y, float radius, in nativePostCreate2()
DPointF.java28 public float x; field in PointF
33 public PointF(float x, float y) { in PointF()
46 public final void set(float x, float y) { in set()
72 public final boolean equals(float x, float y) { in equals()
111 public static float length(float x, float y) { in length()
/frameworks/native/libs/gui/
DBufferItemConsumer.cpp24 #define BI_LOGV(x, ...) ALOGV("[%s] "x, mName.string(), ##__VA_ARGS__) argument
25 #define BI_LOGD(x, ...) ALOGD("[%s] "x, mName.string(), ##__VA_ARGS__) argument
26 #define BI_LOGI(x, ...) ALOGI("[%s] "x, mName.string(), ##__VA_ARGS__) argument
27 #define BI_LOGW(x, ...) ALOGW("[%s] "x, mName.string(), ##__VA_ARGS__) argument
28 #define BI_LOGE(x, ...) ALOGE("[%s] "x, mName.string(), ##__VA_ARGS__) argument
DCpuConsumer.cpp24 #define CC_LOGV(x, ...) ALOGV("[%s] "x, mName.string(), ##__VA_ARGS__) argument
25 #define CC_LOGD(x, ...) ALOGD("[%s] "x, mName.string(), ##__VA_ARGS__) argument
26 #define CC_LOGI(x, ...) ALOGI("[%s] "x, mName.string(), ##__VA_ARGS__) argument
27 #define CC_LOGW(x, ...) ALOGW("[%s] "x, mName.string(), ##__VA_ARGS__) argument
28 #define CC_LOGE(x, ...) ALOGE("[%s] "x, mName.string(), ##__VA_ARGS__) argument
/frameworks/base/core/java/android/gesture/
DGesturePoint.java27 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/tests/RenderScriptTests/SceneGraph/src/com/android/scenegraph/
DFloat4Param.java46 public Float4Param(String name, float x) { in Float4Param()
51 public Float4Param(String name, float x, float y) { in Float4Param()
56 public Float4Param(String name, float x, float y, float z) { in Float4Param()
61 public Float4Param(String name, float x, float y, float z, float w) { in Float4Param()
66 void set(float x, float y, float z, float w) { in set()
/frameworks/native/opengl/libagl/
Dfp.cpp34 GLfloat fixedToFloat(GLfixed x) in fixedToFloat()
56 float sinef(float x) in sinef()
74 float cosinef(float x) in cosinef()

12345678910>>...33