Home
last modified time | relevance | path

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

12345678910>>...42

/frameworks/av/media/libstagefright/foundation/include/media/stagefright/foundation/
DADebug.h53 #define LITERAL_TO_STRING_INTERNAL(x) #x argument
54 #define LITERAL_TO_STRING(x) LITERAL_TO_STRING_INTERNAL(x) argument
68 #define CHECK_OP(x,y,suffix,op) \ argument
83 #define CHECK_EQ(x,y) CHECK_OP(x,y,EQ,==) argument
84 #define CHECK_NE(x,y) CHECK_OP(x,y,NE,!=) argument
85 #define CHECK_LE(x,y) CHECK_OP(x,y,LE,<=) argument
86 #define CHECK_LT(x,y) CHECK_OP(x,y,LT,<) argument
87 #define CHECK_GE(x,y) CHECK_OP(x,y,GE,>=) argument
88 #define CHECK_GT(x,y) CHECK_OP(x,y,GT,>) argument
108 #define CHECK_EQ_DBG(x,y) argument
[all …]
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/src/google/protobuf/stubs/
Dport.h130 #define GOOGLE_LONGLONG(x) x##I64 argument
131 #define GOOGLE_ULONGLONG(x) x##UI64 argument
135 #define GOOGLE_LONGLONG(x) x##LL argument
136 #define GOOGLE_ULONGLONG(x) x##ULL argument
200 #define GOOGLE_PREDICT_TRUE(x) (__builtin_expect(!!(x), 1)) argument
202 #define GOOGLE_PREDICT_TRUE(x) (x) argument
209 #define GOOGLE_PREDICT_FALSE(x) (__builtin_expect(x, 0)) argument
211 #define GOOGLE_PREDICT_FALSE(x) (x) argument
237 #define GOOGLE_GUARDED_BY(x) argument
292 #define bswap_16(x) _byteswap_ushort(x) argument
[all …]
/frameworks/base/lowpan/java/android/net/lowpan/
DLowpanBeaconInfo.java50 public Builder setLowpanIdentity(LowpanIdentity x) { in setLowpanIdentity()
55 public Builder setName(String x) { in setName()
60 public Builder setXpanid(byte x[]) { in setXpanid()
65 public Builder setPanid(int x) { in setPanid()
70 public Builder setChannel(int x) { in setChannel()
75 public Builder setType(String x) { in setType()
80 public Builder setRssi(int x) { in setRssi()
85 public Builder setLqi(int x) { in setLqi()
90 public Builder setBeaconAddress(byte x[]) { in setBeaconAddress()
95 public Builder setFlag(int x) { in setFlag()
[all …]
/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/base/core/java/android/util/
DSpline.java32 public abstract float interpolate(float x); in interpolate()
40 public static Spline createSpline(float[] x, float[] y) { in createSpline()
71 public static Spline createMonotoneCubicSpline(float[] x, float[] y) { in createMonotoneCubicSpline()
90 public static Spline createLinearSpline(float[] x, float[] y) { in createLinearSpline()
94 private static boolean isStrictlyIncreasing(float[] x) { in isStrictlyIncreasing()
109 private static boolean isMonotonic(float[] x) { in isMonotonic()
129 public MonotoneCubicSpline(float[] x, float[] y) { in MonotoneCubicSpline()
183 public float interpolate(float x) { in interpolate()
237 public LinearSpline(float[] x, float[] y) { in LinearSpline()
252 public float interpolate(float x) { in interpolate()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/classifier/brightline/
DClassifierTest.java74 MotionEvent appendDownEvent(float x, float y) { in appendDownEvent()
78 MotionEvent appendDownEvent(float x, float y, long eventTime) { in appendDownEvent()
82 MotionEvent appendMoveEvent(float x, float y) { in appendMoveEvent()
86 MotionEvent appendMoveEvent(float x, float y, long eventTime) { in appendMoveEvent()
91 MotionEvent appendUpEvent(float x, float y) { in appendUpEvent()
95 MotionEvent appendUpEvent(float x, float y, long eventTime) { in appendUpEvent()
99 private MotionEvent appendMotionEvent(int actionType, float x, float y) { in appendMotionEvent()
106 private MotionEvent appendMotionEvent(int actionType, float x, float y, long eventTime) { in appendMotionEvent()
/frameworks/av/media/libstagefright/
DDataSourceBase.cpp26 bool DataSourceBase::getUInt16(off64_t offset, uint16_t *x) { in getUInt16()
39 bool DataSourceBase::getUInt24(off64_t offset, uint32_t *x) { in getUInt24()
52 bool DataSourceBase::getUInt32(off64_t offset, uint32_t *x) { in getUInt32()
65 bool DataSourceBase::getUInt64(off64_t offset, uint64_t *x) { in getUInt64()
78 bool DataSourceBase::getUInt16Var(off64_t offset, uint16_t *x, size_t size) { in getUInt16Var()
92 bool DataSourceBase::getUInt32Var(off64_t offset, uint32_t *x, size_t size) { in getUInt32Var()
106 bool DataSourceBase::getUInt64Var(off64_t offset, uint64_t *x, size_t size) { in getUInt64Var()
/frameworks/base/core/java/android/os/
DHwBlob.java181 public native final void putBool(long offset, boolean x); in putBool()
189 public native final void putInt8(long offset, byte x); in putInt8()
197 public native final void putInt16(long offset, short x); in putInt16()
205 public native final void putInt32(long offset, int x); in putInt32()
213 public native final void putInt64(long offset, long x); in putInt64()
221 public native final void putFloat(long offset, float x); in putFloat()
229 public native final void putDouble(long offset, double x); in putDouble()
237 public native final void putString(long offset, String x); in putString()
245 public native final void putNativeHandle(long offset, @Nullable NativeHandle x); in putNativeHandle()
254 public native final void putBoolArray(long offset, boolean[] x); in putBoolArray()
[all …]
/frameworks/opt/gamesdk/src/swappy/
DThread.h24 #define THREAD_ANNOTATION_ATTRIBUTE__(x) __attribute__((x)) argument
26 #define THREAD_ANNOTATION_ATTRIBUTE__(x) // no-op argument
34 #define GUARDED_BY(x) \ argument
40 #define GUARDED_BY(x) argument
/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/base/rs/java/android/renderscript/
DMatrix3f.java64 public float get(int x, int y) { in get()
74 public void set(int x, int y, float v) { in set()
113 public void loadRotate(float rot, float x, float y, float z) { in loadRotate()
167 public void loadScale(float x, float y) { in loadScale()
180 public void loadScale(float x, float y, float z) { in loadScale()
194 public void loadTranslate(float x, float y) { in loadTranslate()
244 public void rotate(float rot, float x, float y, float z) { in rotate()
269 public void scale(float x, float y) { in scale()
283 public void scale(float x, float y, float z) { in scale()
296 public void translate(float x, float y) { in translate()
/frameworks/rs/support/java/src/androidx/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/rs/driver/runtime/
Drs_f16_math.c21 extern half __attribute__((overloadable)) copysign(half x, half y) { in copysign()
31 extern half __attribute__((overloadable)) frexp(half x, int *eptr) { in frexp()
58 extern int __attribute__((overloadable)) ilogb(half x) { in ilogb()
82 extern half __attribute__((overloadable)) modf(half x, half *iptr) { in modf()
117 extern half __attribute__((overloadable)) nextafter(half x, half y) { in nextafter()
/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/media/mca/filterfw/java/android/filterfw/geometry/
DPoint.java29 public float x; field in Point
38 public Point(float x, float y) { in Point()
43 public void set(float x, float y) { in set()
53 public Point plus(float x, float y) { in plus()
61 public Point minus(float x, float y) { in minus()
73 public Point mult(float x, float y) { in mult()
/frameworks/base/libs/hwui/debug/
DDefaultGlesDriver.cpp28 #define API_ENTRY(x) DefaultGlesDriver::x##_ argument
29 #define CALL_GL_API(x, ...) x(__VA_ARGS__); argument
30 #define CALL_GL_API_RETURN(x, ...) return x(__VA_ARGS__); argument
DFatalBaseDriver.cpp26 #define API_ENTRY(x) FatalBaseDriver::x##_ argument
27 #define CALL_GL_API(x, ...) LOG_ALWAYS_FATAL("Not Implemented"); argument
28 #define CALL_GL_API_RETURN(x, ...) \ argument
DGlesErrorCheckWrapper.cpp57 #define API_ENTRY(x) GlesErrorCheckWrapper::x##_ argument
58 #define CALL_GL_API(x, ...) \ argument
62 #define CALL_GL_API_RETURN(x, ...) \ argument
/frameworks/opt/gamesdk/samples/common/include/
DThread.h24 #define THREAD_ANNOTATION_ATTRIBUTE__(x) __attribute__((x)) argument
26 #define THREAD_ANNOTATION_ATTRIBUTE__(x) // no-op argument
29 #define GUARDED_BY(x) \ argument
/frameworks/base/graphics/java/android/graphics/
DPointF.java27 public float x; field in PointF
32 public PointF(float x, float y) { in PointF()
45 public final void set(float x, float y) { in set()
71 public final boolean equals(float x, float y) { in equals()
110 public static float length(float x, float y) { in length()
/frameworks/av/tools/resampler_tools/
Dfir.cpp23 static inline double sinc(double x) { in sinc()
28 static inline double sqr(double x) { in sqr()
32 static inline int64_t toint(double x, int64_t maxval) { in toint()
42 static double I0(double x) { in I0()
259 double x = (2.0 * M_PI * ix * Fcr) / M; in main() local
290 double x = 2.0 * M_PI * Fcr * (i + p); in main() local
/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/minikin/include/minikin/
DMacros.h39 #define THREAD_ANNOTATION_ATTRIBUTE__(x) __attribute__((x)) argument
41 #define THREAD_ANNOTATION_ATTRIBUTE__(x) // no-op argument
54 #define GUARDED_BY(x) THREAD_ANNOTATION_ATTRIBUTE__(guarded_by(x)) argument
/frameworks/av/media/libeffects/loudness/common/core/
Dmath.h39 int x = *exp_ptr; in fast_log2() local
57 inline T ExpApproximationViaTaylorExpansionOrder5(T x) { in ExpApproximationViaTaylorExpansionOrder5()
81 inline T round(const T &x) { in round()

12345678910>>...42