/aosp12/bionic/libc/bionic/ |
H A D | dirent.cpp | 62 #define CHECK_DIR(d) if (d == nullptr) __fortify_fatal("%s: null DIR*", __FUNCTION__) argument 70 DIR* d = reinterpret_cast<DIR*>(malloc(sizeof(DIR))); in __allocate_DIR() local 83 int dirfd(DIR* d) { in dirfd() 107 static bool __fill_DIR(DIR* d) { in __fill_DIR() 118 static dirent* __readdir_locked(DIR* d) { in __readdir_locked() 132 dirent* readdir(DIR* d) { in readdir() 139 int readdir_r(DIR* d, dirent* entry, dirent** result) { in readdir_r() 162 int closedir(DIR* d) { in closedir() 175 void rewinddir(DIR* d) { in rewinddir() 184 void seekdir(DIR* d, long offset) { in seekdir() [all …]
|
H A D | fpclassify.cpp | 34 extern "C" int __fpclassifyd(double d) { in __fpclassifyd() 43 extern "C" int __isinf(double d) { in __isinf() 53 extern "C" int __isnan(double d) { in __isnan() 63 extern "C" int __isfinite(double d) { in __isfinite() 73 extern "C" int __isnormal(double d) { in __isnormal()
|
/aosp12/packages/apps/DocumentsUI/src/com/android/documentsui/base/ |
H A D | DurableUtils.java | 32 public static <D extends Durable> byte[] writeToArray(D d) throws IOException { in writeToArray() 38 public static <D extends Durable> D readFromArray(byte[] data, D d) throws IOException { in readFromArray() 51 public static <D extends Durable> byte[] writeToArrayOrNull(D d) { in writeToArrayOrNull() 60 public static <D extends Durable> D readFromArrayOrNull(byte[] data, D d) { in readFromArrayOrNull() 69 public static <D extends Durable> void writeToParcel(Parcel parcel, D d) { in writeToParcel() 77 public static <D extends Durable> D readFromParcel(Parcel parcel, D d) { in readFromParcel()
|
/aosp12/art/test/569-checker-pattern-replacement/src/ |
H A D | Main.java | 651 Derived d = new Derived(); in constructDerived() local 676 Derived d = new Derived(intValue); in constructDerived() local 693 Derived d = new Derived(0); in constructDerivedWith0() local 712 Derived d = new Derived(stringValue); in constructDerived() local 737 Derived d = new Derived(doubleValue); in constructDerived() local 754 Derived d = new Derived(0.0); in constructDerivedWith0d() local 832 Derived d = new Derived(floatValue); in constructDerived() local 942 DerivedWithFinalField d = new DerivedWithFinalField(); in constructDerivedWithFinalField() local 984 DerivedWithFinalField d = new DerivedWithFinalField(0); in constructDerivedWithFinalFieldWith0() local 1092 DerivedInSecondDex d = new DerivedInSecondDex(); in constructDerivedInSecondDex() local [all …]
|
/aosp12/frameworks/layoutlib/bridge/src/android/graphics/ |
H A D | Matrix_Delegate.java | 202 Matrix_Delegate d = sManager.getDelegate(native_object); in nIsIdentity() local 212 Matrix_Delegate d = sManager.getDelegate(native_object); in nIsAffine() local 222 Matrix_Delegate d = sManager.getDelegate(native_object); in nRectStaysRect() local 232 Matrix_Delegate d = sManager.getDelegate(native_object); in nReset() local 242 Matrix_Delegate d = sManager.getDelegate(native_object); in nSet() local 257 Matrix_Delegate d = sManager.getDelegate(native_object); in nSetTranslate() local 268 Matrix_Delegate d = sManager.getDelegate(native_object); in nSetScale() local 278 Matrix_Delegate d = sManager.getDelegate(native_object); in nSetScale() local 296 Matrix_Delegate d = sManager.getDelegate(native_object); in nSetRotate() local 306 Matrix_Delegate d = sManager.getDelegate(native_object); in nSetRotate() local [all …]
|
/aosp12/packages/apps/Test/connectivity/sl4n/rapidjson/test/unittest/ |
H A D | pointertest.cpp | 568 Document d; in TEST() local 608 Document d; in TEST() local 631 Document d; in TEST() local 684 Document d; in TEST() local 736 Document d; in TEST() local 796 Document d; in TEST() local 855 Document d; in TEST() local 864 Document d; in TEST() local 872 Document d; in TEST() local 911 Document d; in TEST() local [all …]
|
/aosp12/frameworks/av/media/codec2/hidl/1.0/utils/ |
H A D | types.cpp | 69 void copyVector(DstVector* d, const SrcVector& s) { in copyVector() 119 ValueRange* d, in objcpy() 216 FieldSupportedValuesQuery* d, in objcpy() 240 C2FieldSupportedValuesQuery* d, in objcpy() 262 FieldSupportedValuesQueryResult* d, in objcpy() 271 C2FieldSupportedValuesQuery* d, in objcpy() 288 IComponentStore::ComponentTraits *d, in objcpy() 345 C2Component::Traits* d, in objcpy() 846 bool objcpy(Buffer* d, const C2BufferData& s, in objcpy() 878 bool objcpy(Buffer* d, const C2Buffer& s, in objcpy() [all …]
|
/aosp12/frameworks/base/core/java/com/android/internal/util/function/pooled/ |
H A D | OmniFunction.java | 151 public R apply(A a, B b, C c, D d) { in apply() 156 public R apply(A a, B b, C c, D d, E e) { in apply() 161 public R apply(A a, B b, C c, D d, E e, F f) { in apply() 166 public R apply(A a, B b, C c, D d, E e, F f, G g) { in apply() 171 public R apply(A a, B b, C c, D d, E e, F f, G g, H h) { in apply() 176 public R apply(A a, B b, C c, D d, E e, F f, G g, H h, I i) { in apply() 191 public void accept(A a, B b, C c, D d) { in accept() 196 public void accept(A a, B b, C c, D d, E e) { in accept() 201 public void accept(A a, B b, C c, D d, E e, F f) { in accept() 206 public void accept(A a, B b, C c, D d, E e, F f, G g) { in accept() [all …]
|
/aosp12/art/test/624-checker-stringops/src/ |
H A D | Main.java | 74 int d = ABC.indexOf(c); in deadIndexOf() local 77 int d = ABC.indexOf(c, 4); in deadIndexOf() local 80 int d = ABC.indexOf(XYZ); in deadIndexOf() local 83 int d = ABC.indexOf(XYZ, 2); in deadIndexOf() local 252 int d = b.toString().indexOf(x, 1); in bufferDeadLoop() local 273 int d = b.toString().indexOf(x, 1); in builderDeadLoop() local
|
/aosp12/art/runtime/mirror/ |
H A D | array-inl.h | 107 static inline void ArrayBackwardCopy(T* d, const T* s, int32_t count) { in ArrayBackwardCopy() 120 static inline void ArrayForwardCopy(T* d, const T* s, int32_t count) { in ArrayForwardCopy() 155 uint8_t* d = reinterpret_cast<uint8_t*>(dst_raw); in Memmove() local 161 uint16_t* d = reinterpret_cast<uint16_t*>(dst_raw); in Memmove() local 169 uint32_t* d = reinterpret_cast<uint32_t*>(dst_raw); in Memmove() local 178 uint64_t* d = reinterpret_cast<uint64_t*>(dst_raw); in Memmove() local 214 uint16_t* d = reinterpret_cast<uint16_t*>(dst_raw); in Memcpy() local 218 uint32_t* d = reinterpret_cast<uint32_t*>(dst_raw); in Memcpy() local 223 uint64_t* d = reinterpret_cast<uint64_t*>(dst_raw); in Memcpy() local
|
/aosp12/hardware/qcom/display/msm8960/liboverlay/pipes/ |
H A D | overlay3DPipe.h | 191 inline bool M3DExtPipe<CHAN>::setCrop(const utils::Dim& d) { in setCrop() 201 inline bool M3DExtPipe<CHAN>::setPosition(const utils::Dim& d) { in setPosition() 260 inline bool M3DPrimaryPipe<CHAN>::setCrop(const utils::Dim& d) { in setCrop() 269 inline bool M3DPrimaryPipe<CHAN>::setPosition(const utils::Dim& d) { in setPosition() 318 inline bool S3DExtPipe<CHAN>::setCrop(const utils::Dim& d) { in setCrop() 327 inline bool S3DExtPipe<CHAN>::setPosition(const utils::Dim& d) in setPosition() 393 inline bool S3DPrimaryPipe<CHAN>::setCrop(const utils::Dim& d) { in setCrop() 402 inline bool S3DPrimaryPipe<CHAN>::setPosition(const utils::Dim& d) in setPosition()
|
/aosp12/hardware/qcom/display/msm8084/liboverlay/pipes/ |
H A D | overlay3DPipe.h | 191 inline bool M3DExtPipe<CHAN>::setCrop(const utils::Dim& d) { in setCrop() 201 inline bool M3DExtPipe<CHAN>::setPosition(const utils::Dim& d) { in setPosition() 260 inline bool M3DPrimaryPipe<CHAN>::setCrop(const utils::Dim& d) { in setCrop() 269 inline bool M3DPrimaryPipe<CHAN>::setPosition(const utils::Dim& d) { in setPosition() 318 inline bool S3DExtPipe<CHAN>::setCrop(const utils::Dim& d) { in setCrop() 327 inline bool S3DExtPipe<CHAN>::setPosition(const utils::Dim& d) in setPosition() 393 inline bool S3DPrimaryPipe<CHAN>::setCrop(const utils::Dim& d) { in setCrop() 402 inline bool S3DPrimaryPipe<CHAN>::setPosition(const utils::Dim& d) in setPosition()
|
/aosp12/art/test/105-invoke/src/ |
H A D | Main.java | 31 int virI_IIII(int a, int b, int c, int d) { in virI_IIII() 35 int virI_IIIII(int a, int b, int c, int d, int e) { in virI_IIIII() 39 int virI_IIIIII(int a, int b, int c, int d, int e, int f) { in virI_IIIIII() 55 static int statI_IIII(int a, int b, int c, int d) { in statI_IIII() 59 static int statI_IIIII(int a, int b, int c, int d, int e) { in statI_IIIII() 63 static int statI_IIIIII(int a, int b, int c, int d, int e, int f) { in statI_IIIIII()
|
/aosp12/frameworks/base/services/core/java/com/android/server/am/ |
H A D | BroadcastDispatcher.java | 82 void dumpLocked(Dumper d) { in dumpLocked() 334 final Deferrals d = list.get(i); in replaceDeferredBroadcastLocked() local 470 Deferrals d = mDeferredBroadcasts.get(i); in getNextBroadcastLocked() local 525 Deferrals d = findUidLocked(uid); in isDeferringLocked() local 548 Deferrals d = findUidLocked(uid); in startDeferring() local 592 Deferrals d = findUidLocked(uid); in addDeferredBroadcast() local 614 final Deferrals d = mDeferredBroadcasts.get(0); in scheduleDeferralCheckLocked() local 638 Deferrals d = list.get(i); in zeroDeferralTimes() local 664 private boolean removeDeferral(Deferrals d) { in removeDeferral() 678 Deferrals d = list.get(i); in findUidLocked() local [all …]
|
/aosp12/bionic/tests/ |
H A D | dirent_test.cpp | 175 DIR* d = fdopendir(fd); in TEST() local 195 DIR* d = opendir("/proc/self"); in TEST() local 203 DIR* d = nullptr; in TEST() local 209 DIR* d = opendir("/proc/self"); in TEST() local 215 DIR* d = opendir("/proc/self"); in TEST() local 232 DIR* d = opendir("/proc/self"); in TEST() local 249 DIR* d = opendir("/proc/self"); in TEST() local 267 DIR* d = opendir("/proc/self"); in TEST() local 285 DIR* d = opendir("/proc/self"); in TEST() local 314 DIR* d = opendir("/proc/self"); in TEST() local
|
/aosp12/frameworks/rs/support/java/src/androidx/renderscript/ |
H A D | Allocation.java | 600 public void copyFrom(BaseObj[] d) { in copyFrom() 736 public void copyFromUnchecked(int[] d) { in copyFromUnchecked() 786 public void copyFromUnchecked(byte[] d) { in copyFromUnchecked() 865 public void copyFrom(int[] d) { in copyFrom() 892 public void copyFrom(short[] d) { in copyFrom() 919 public void copyFrom(byte[] d) { in copyFrom() 946 public void copyFrom(float[] d) { in copyFrom() 1870 public void copyTo(byte[] d) { in copyTo() 1897 public void copyTo(short[] d) { in copyTo() 1924 public void copyTo(int[] d) { in copyTo() [all …]
|
/aosp12/art/test/123-inline-execute2/src/ |
H A D | Main.java | 22 double d = i * (Math.PI / 180.0); in main() local 80 double d = i * (StrictMath.PI / 180.0); in main() local
|
/aosp12/packages/apps/LegacyCamera/jni/feature_stab/db_vlvm/ |
H A D | db_utilities_poly.h | 96 inline void db_MultiplyPoly1_1(double *d,const double *a,const double *b) in db_MultiplyPoly1_1() 108 inline void db_MultiplyPoly0_2(double *d,const double *a,const double *b) in db_MultiplyPoly0_2() 120 inline void db_MultiplyPoly1_2(double *d,const double *a,const double *b) in db_MultiplyPoly1_2() 134 inline void db_MultiplyPoly1_3(double *d,const double *a,const double *b) in db_MultiplyPoly1_3() 149 inline void db_AddPolyProduct0_1(double *d,const double *a,const double *b) in db_AddPolyProduct0_1() 159 inline void db_AddPolyProduct0_2(double *d,const double *a,const double *b) in db_AddPolyProduct0_2() 172 inline void db_SubtractPolyProduct0_0(double *d,const double *a,const double *b) in db_SubtractPolyProduct0_0() 182 inline void db_SubtractPolyProduct0_1(double *d,const double *a,const double *b) in db_SubtractPolyProduct0_1() 193 inline void db_SubtractPolyProduct0_2(double *d,const double *a,const double *b) in db_SubtractPolyProduct0_2() 205 inline void db_SubtractPolyProduct1_3(double *d,const double *a,const double *b) in db_SubtractPolyProduct1_3()
|
/aosp12/art/test/003-omnibus-opcodes/src/ |
H A D | UnresTest1.java | 29 double d = stuff.wideInstField; in run() local 55 double d = UnresStuff.wideStaticField; in run() local
|
/aosp12/art/test/404-optimizing-allocator/src/ |
H A D | Main.java | 70 int d = 0; in $opt$reg$TestFourLive() local 84 int d = 0; in $opt$reg$TestMultipleLive() local 117 int d = 0; in $opt$reg$testSpillInIf() local 129 public static int $opt$reg$TestAgressiveLive1(int a, int b, int c, int d, int e, int f, int g) { in $opt$reg$TestAgressiveLive1() 150 public static int $opt$reg$TestAgressiveLive2(int a, int b, int c, int d, int e, int f, int g) { in $opt$reg$TestAgressiveLive2()
|
/aosp12/art/test/405-optimizing-long-allocator/src/ |
H A D | Main.java | 76 long d = 0; in $opt$TestFourLive() local 90 long d = 0; in $opt$TestMultipleLive() local 123 long d = 0; in $opt$testSpillInIf() local 135 …public static long $opt$TestAgressiveLive1(long a, long b, long c, long d, long e, long f, long g)… in $opt$TestAgressiveLive1() 156 …public static long $opt$TestAgressiveLive2(long a, long b, long c, long d, long e, long f, long g)… in $opt$TestAgressiveLive2()
|
/aosp12/art/test/NonStaticLeafMethods/ |
H A D | NonStaticLeafMethods.java | 34 int sum(int a, int b, int c, int d) { in sum() 37 int sum(int a, int b, int c, int d, int e) { in sum() 49 double sum(double a, double b, double c, double d) { in sum() 52 double sum(double a, double b, double c, double d, double e) { in sum()
|
/aosp12/art/test/StaticLeafMethods/ |
H A D | StaticLeafMethods.java | 32 static int sum(int a, int b, int c, int d) { in sum() 35 static int sum(int a, int b, int c, int d, int e) { in sum() 47 static double sum(double a, double b, double c, double d) { in sum() 50 static double sum(double a, double b, double c, double d, double e) { in sum()
|
/aosp12/frameworks/base/rs/java/android/renderscript/ |
H A D | Allocation.java | 608 public void copyFrom(BaseObj[] d) { in copyFrom() 760 public void copyFromUnchecked(int[] d) { in copyFromUnchecked() 810 public void copyFromUnchecked(byte[] d) { in copyFromUnchecked() 894 public void copyFrom(int[] d) { in copyFrom() 921 public void copyFrom(short[] d) { in copyFrom() 948 public void copyFrom(byte[] d) { in copyFrom() 975 public void copyFrom(float[] d) { in copyFrom() 1934 public void copyTo(byte[] d) { in copyTo() 1961 public void copyTo(short[] d) { in copyTo() 1988 public void copyTo(int[] d) { in copyTo() [all …]
|
/aosp12/art/test/821-many-args/src/ |
H A D | Main.java | 40 int a, int b, int c, int d, int e, int f, int g, int h, int i, int j) { in staticMethod() 54 public int instanceMethod(int a, int b, int c, int d, int e, int f, int g, int h, int i, int j) { in instanceMethod() 69 public static int staticMethodNonRange(int a, int b, int c, int d, int e) { in staticMethodNonRange() 78 public int instanceMethodNonRange(int a, int b, int c, int d) { in instanceMethodNonRange()
|