/aosp14/system/core/libutils/include/utils/ |
H A D | ByteOrder.h | 39 #define dtohl(x) (x) argument 40 #define dtohs(x) (x) argument 41 #define htodl(x) (x) argument 42 #define htods(x) (x) argument 44 #define fromlel(x) (x) argument 45 #define tolel(x) (x) argument
|
H A D | Mutex.h | 34 #define THREAD_ANNOTATION_ATTRIBUTE__(x) __attribute__((x)) argument 36 #define THREAD_ANNOTATION_ATTRIBUTE__(x) // no-op argument 39 #define CAPABILITY(x) THREAD_ANNOTATION_ATTRIBUTE__(capability(x)) argument 43 #define GUARDED_BY(x) THREAD_ANNOTATION_ATTRIBUTE__(guarded_by(x)) argument 45 #define PT_GUARDED_BY(x) THREAD_ANNOTATION_ATTRIBUTE__(pt_guarded_by(x)) argument 70 #define ASSERT_CAPABILITY(x) THREAD_ANNOTATION_ATTRIBUTE__(assert_capability(x)) argument 72 #define ASSERT_SHARED_CAPABILITY(x) THREAD_ANNOTATION_ATTRIBUTE__(assert_shared_capability(x)) argument 74 #define RETURN_CAPABILITY(x) THREAD_ANNOTATION_ATTRIBUTE__(lock_returned(x)) argument
|
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/classifier/ |
H A D | ClassifierTest.java | 90 protected MotionEvent appendDownEvent(float x, float y) { in appendDownEvent() 94 protected MotionEvent appendDownEvent(float x, float y, long eventTime) { in appendDownEvent() 98 protected MotionEvent appendMoveEvent(float x, float y) { in appendMoveEvent() 102 protected MotionEvent appendMoveEvent(float x, float y, long eventTime) { in appendMoveEvent() 107 protected MotionEvent appendUpEvent(float x, float y) { in appendUpEvent() 111 protected MotionEvent appendUpEvent(float x, float y, long eventTime) { in appendUpEvent() 115 private MotionEvent appendMotionEvent(int actionType, float x, float y) { in appendMotionEvent() 135 protected MotionEvent appendTrackpadDownEvent(float x, float y) { in appendTrackpadDownEvent() 148 private MotionEvent appendTrackpadMotionEvent(int actionType, float x, float y, in appendTrackpadMotionEvent() 155 private MotionEvent appendTrackpadMotionEvent(int actionType, float x, float y, in appendTrackpadMotionEvent() [all …]
|
/aosp14/frameworks/base/core/java/android/util/ |
H A D | Spline.java | 32 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()
|
/aosp14/system/core/libcutils/include/cutils/ |
H A D | klog.h | 40 #define KLOG_ERROR(tag,x...) klog_write(KLOG_ERROR_LEVEL, "<3>" tag ": " x) argument 41 #define KLOG_WARNING(tag,x...) klog_write(KLOG_WARNING_LEVEL, "<4>" tag ": " x) argument 42 #define KLOG_NOTICE(tag,x...) klog_write(KLOG_NOTICE_LEVEL, "<5>" tag ": " x) argument 43 #define KLOG_INFO(tag,x...) klog_write(KLOG_INFO_LEVEL, "<6>" tag ": " x) argument 44 #define KLOG_DEBUG(tag,x...) klog_write(KLOG_DEBUG_LEVEL, "<7>" tag ": " x) argument
|
H A D | bitops.h | 27 static inline int popcount(unsigned int x) { in popcount() 31 static inline int popcountl(unsigned long x) { in popcountl() 35 static inline int popcountll(unsigned long long x) { in popcountll()
|
/aosp14/system/core/libcutils/include_outside_system/cutils/ |
H A D | klog.h | 40 #define KLOG_ERROR(tag,x...) klog_write(KLOG_ERROR_LEVEL, "<3>" tag ": " x) argument 41 #define KLOG_WARNING(tag,x...) klog_write(KLOG_WARNING_LEVEL, "<4>" tag ": " x) argument 42 #define KLOG_NOTICE(tag,x...) klog_write(KLOG_NOTICE_LEVEL, "<5>" tag ": " x) argument 43 #define KLOG_INFO(tag,x...) klog_write(KLOG_INFO_LEVEL, "<6>" tag ": " x) argument 44 #define KLOG_DEBUG(tag,x...) klog_write(KLOG_DEBUG_LEVEL, "<7>" tag ": " x) argument
|
H A D | bitops.h | 27 static inline int popcount(unsigned int x) { in popcount() 31 static inline int popcountl(unsigned long x) { in popcountl() 35 static inline int popcountll(unsigned long long x) { in popcountll()
|
/aosp14/frameworks/base/core/java/android/os/ |
H A D | HwBlob.java | 187 public native final void putBool(long offset, boolean x); in putBool() 195 public native final void putInt8(long offset, byte x); in putInt8() 203 public native final void putInt16(long offset, short x); in putInt16() 211 public native final void putInt32(long offset, int x); in putInt32() 219 public native final void putInt64(long offset, long x); in putInt64() 227 public native final void putFloat(long offset, float x); in putFloat() 235 public native final void putDouble(long offset, double x); in putDouble() 243 public native final void putString(long offset, String x); in putString() 268 public native final void putInt8Array(long offset, byte[] x); in putInt8Array() 284 public native final void putInt32Array(long offset, int[] x); in putInt32Array() [all …]
|
/aosp14/frameworks/base/libs/hwui/ |
H A D | SafeMath.h | 36 size_t mul(size_t x, size_t y) { in mul() 40 size_t add(size_t x, size_t y) { in add() 62 static size_t Add(size_t x, size_t y) { in Add() 68 static size_t Mul(size_t x, size_t y) { in Mul() 75 uint32_t mul32(uint32_t x, uint32_t y) { in mul32() 84 uint64_t mul64(uint64_t x, uint64_t y) { in mul64()
|
/aosp14/frameworks/base/rs/java/android/renderscript/ |
H A D | Matrix3f.java | 68 public float get(int x, int y) { in get() 78 public void set(int x, int y, float v) { in set() 117 public void loadRotate(float rot, float x, float y, float z) { in loadRotate() 171 public void loadScale(float x, float y) { in loadScale() 184 public void loadScale(float x, float y, float z) { in loadScale() 198 public void loadTranslate(float x, float y) { in loadTranslate() 248 public void rotate(float rot, float x, float y, float z) { in rotate() 273 public void scale(float x, float y) { in scale() 287 public void scale(float x, float y, float z) { in scale() 300 public void translate(float x, float y) { in translate()
|
/aosp14/frameworks/base/media/mca/filterfw/java/android/filterfw/geometry/ |
H A D | Point.java | 28 public float x; field in Point 37 public Point(float x, float y) { in Point() 42 public void set(float x, float y) { in set() 52 public Point plus(float x, float y) { in plus() 60 public Point minus(float x, float y) { in minus() 72 public Point mult(float x, float y) { in mult()
|
/aosp14/system/core/healthd/ |
H A D | healthd_draw.cpp | 27 #define LOGE(x...) KLOG_ERROR("charger", x); argument 28 #define LOGW(x...) KLOG_WARNING("charger", x); argument 29 #define LOGV(x...) KLOG_DEBUG("charger", x); argument 127 int x = (screen_width_ - w) / 2 + kSplitOffset; in draw_surface_centered() local 141 int HealthdDraw::draw_text(const GRFont* font, int x, int y, const char* str) { in draw_text() 154 const int length, int* x, int* y) { in determine_xy() 200 int x, y; in draw_clock() local 224 int x, y; in draw_percent() local
|
H A D | AnimationParser.cpp | 26 #define LOGE(x...) do { KLOG_ERROR("charger", x); } while (0) argument 27 #define LOGW(x...) do { KLOG_WARNING("charger", x); } while (0) argument 28 #define LOGV(x...) do { KLOG_DEBUG("charger", x); } while (0) argument 55 int* x = &field->pos_x; in parse_text_field() local
|
/aosp14/frameworks/base/services/core/java/com/android/server/wm/ |
H A D | TaskTapPointerEventListener.java | 52 private void restorePointerIcon(int x, int y) { in restorePointerIcon() 66 final int x; in onPointerEvent() local 86 final int x = (int) motionEvent.getX(); in onPointerEvent() local 127 final int x = (int) motionEvent.getX(); in onPointerEvent() local
|
/aosp14/frameworks/base/graphics/java/android/graphics/ |
H A D | PointF.java | 27 public float x; field in PointF 32 public PointF(float x, float y) { in PointF() 57 public final void set(float x, float y) { in set() 83 public final boolean equals(float x, float y) { in equals() 122 public static float length(float x, float y) { in length()
|
H A D | Movie.java | 49 private native void nDraw(long nativeCanvas, float x, float y, long paintHandle); in nDraw() 51 public void draw(Canvas canvas, float x, float y, Paint paint) { in draw() 52 nDraw(canvas.getNativeCanvasWrapper(), x, y, in draw() local 56 public void draw(Canvas canvas, float x, float y) { in draw() 57 nDraw(canvas.getNativeCanvasWrapper(), x, y, 0); in draw() local
|
H A D | Point.java | 28 public int x; field in Point 33 public Point(int x, int y) { in Point() 45 public void set(int x, int y) { in set() 78 public final boolean equals(int x, int y) { in equals()
|
/aosp14/frameworks/base/core/java/android/gesture/ |
H A 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
|
/aosp14/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/windowdecor/ |
H A D | DragPositioningCallback.java | 44 void onDragPositioningStart(@CtrlType int ctrlType, float x, float y); in onDragPositioningStart() 52 Rect onDragPositioningMove(float x, float y); in onDragPositioningMove() 60 Rect onDragPositioningEnd(float x, float y); in onDragPositioningEnd()
|
/aosp14/frameworks/base/apct-tests/perftests/core/src/android/libcore/regression/ |
H A D | BigIntegerPerfTest.java | 40 BigInteger x = new BigInteger(1024, r); in timeRandomDivision() local 51 BigInteger x = new BigInteger(1024, r); in timeRandomGcd() local 62 BigInteger x = new BigInteger(1024, r); in timeRandomMultiplication() local
|
/aosp14/system/core/libnetutils/ |
H A D | dhcpmsg.c | 26 uint8_t *x; in init_dhcp_msg() local 57 uint8_t *x; in init_dhcp_discover_msg() local 76 uint8_t *x; in init_dhcp_request_msg() local
|
/aosp14/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/ |
H A D | ViewFilter.java | 96 float x = 0.5f - 0.5f / relativeAR; in getTargetRect() local 100 float x = 0.0f; in getTargetRect() local 107 float x = 0.0f; in getTargetRect() local 111 float x = 0.5f - 0.5f / relativeAR; in getTargetRect() local
|
/aosp14/frameworks/base/packages/WallpaperCropper/src/com/android/gallery3d/glrenderer/ |
H A D | GLCanvas.java | 54 public abstract void translate(float x, float y, float z); in translate() 56 public abstract void translate(float x, float y); in translate() 60 public abstract void rotate(float angle, float x, float y, float z); in rotate() 90 public abstract void fillRect(float x, float y, float width, float height, int color); in fillRect() 94 BasicTexture texture, int x, int y, int width, int height); in drawTexture() 96 public abstract void drawMesh(BasicTexture tex, int x, int y, int xyBuffer, in drawMesh() 104 int x, int y, int w, int h); in drawTexture() 110 float ratio, int x, int y, int w, int h); in drawMixed() 214 public abstract void getBounds(Rect bounds, int x, int y, int width, int height); in getBounds()
|
/aosp14/frameworks/base/cmds/uiautomator/library/core-src/com/android/uiautomator/core/ |
H A D | InteractionController.java | 213 public boolean clickNoSync(int x, int y) { in clickNoSync() 233 public boolean clickAndSync(final int x, final int y, long timeout) { in clickAndSync() 252 public boolean clickAndWaitForNewWindow(final int x, final int y, long timeout) { in clickAndWaitForNewWindow() 269 private Runnable clickRunnable(final int x, final int y) { in clickRunnable()
|