| /system/chre/apps/nearby/third_party/contexthub/chre/util/include/chre/util/ |
| D | macros.h | 59 #define MIN(a, b) ((a) < (b) ? (a) : (b)) argument 63 #define MAX(a, b) ((a) > (b) ? (a) : (b)) argument 86 #define TYPE_LIST_1(a) decltype(a) argument 87 #define TYPE_LIST_2(a, ...) decltype(a), TYPE_LIST_1(__VA_ARGS__) argument 88 #define TYPE_LIST_3(a, ...) decltype(a), TYPE_LIST_2(__VA_ARGS__) argument 89 #define TYPE_LIST_4(a, ...) decltype(a), TYPE_LIST_3(__VA_ARGS__) argument 90 #define TYPE_LIST_5(a, ...) decltype(a), TYPE_LIST_4(__VA_ARGS__) argument 91 #define TYPE_LIST_6(a, ...) decltype(a), TYPE_LIST_5(__VA_ARGS__) argument 92 #define TYPE_LIST_7(a, ...) decltype(a), TYPE_LIST_6(__VA_ARGS__) argument 93 #define TYPE_LIST_8(a, ...) decltype(a), TYPE_LIST_7(__VA_ARGS__) argument [all …]
|
| /system/chre/util/include/chre/util/ |
| D | macros.h | 59 #define MIN(a, b) ((a) < (b) ? (a) : (b)) argument 63 #define MAX(a, b) ((a) > (b) ? (a) : (b)) argument 86 #define TYPE_LIST_1(a) decltype(a) argument 87 #define TYPE_LIST_2(a, ...) decltype(a), TYPE_LIST_1(__VA_ARGS__) argument 88 #define TYPE_LIST_3(a, ...) decltype(a), TYPE_LIST_2(__VA_ARGS__) argument 89 #define TYPE_LIST_4(a, ...) decltype(a), TYPE_LIST_3(__VA_ARGS__) argument 90 #define TYPE_LIST_5(a, ...) decltype(a), TYPE_LIST_4(__VA_ARGS__) argument 91 #define TYPE_LIST_6(a, ...) decltype(a), TYPE_LIST_5(__VA_ARGS__) argument 92 #define TYPE_LIST_7(a, ...) decltype(a), TYPE_LIST_6(__VA_ARGS__) argument 93 #define TYPE_LIST_8(a, ...) decltype(a), TYPE_LIST_7(__VA_ARGS__) argument [all …]
|
| /system/core/libcutils/include_outside_system/cutils/ |
| D | atomic.h | 93 volatile atomic_int_least32_t* a = to_atomic_int_least32_t(addr); in android_atomic_inc() local 101 volatile atomic_int_least32_t* a = to_atomic_int_least32_t(addr); in android_atomic_dec() local 108 volatile atomic_int_least32_t* a = to_atomic_int_least32_t(addr); in android_atomic_add() local 115 volatile atomic_int_least32_t* a = to_atomic_int_least32_t(addr); in android_atomic_and() local 122 volatile atomic_int_least32_t* a = to_atomic_int_least32_t(addr); in android_atomic_or() local 143 volatile atomic_int_least32_t* a = to_atomic_int_least32_t(addr); in android_atomic_acquire_load() local 150 volatile atomic_int_least32_t* a = to_atomic_int_least32_t(addr); in android_atomic_release_load() local 174 volatile atomic_int_least32_t* a = to_atomic_int_least32_t(addr); in android_atomic_acquire_store() local 183 volatile atomic_int_least32_t* a = to_atomic_int_least32_t(addr); in android_atomic_release_store() local 203 volatile atomic_int_least32_t* a = to_atomic_int_least32_t(addr); in android_atomic_acquire_cas() local [all …]
|
| /system/core/libcutils/include/cutils/ |
| D | atomic.h | 93 volatile atomic_int_least32_t* a = to_atomic_int_least32_t(addr); in android_atomic_inc() local 101 volatile atomic_int_least32_t* a = to_atomic_int_least32_t(addr); in android_atomic_dec() local 108 volatile atomic_int_least32_t* a = to_atomic_int_least32_t(addr); in android_atomic_add() local 115 volatile atomic_int_least32_t* a = to_atomic_int_least32_t(addr); in android_atomic_and() local 122 volatile atomic_int_least32_t* a = to_atomic_int_least32_t(addr); in android_atomic_or() local 143 volatile atomic_int_least32_t* a = to_atomic_int_least32_t(addr); in android_atomic_acquire_load() local 150 volatile atomic_int_least32_t* a = to_atomic_int_least32_t(addr); in android_atomic_release_load() local 174 volatile atomic_int_least32_t* a = to_atomic_int_least32_t(addr); in android_atomic_acquire_store() local 183 volatile atomic_int_least32_t* a = to_atomic_int_least32_t(addr); in android_atomic_release_store() local 203 volatile atomic_int_least32_t* a = to_atomic_int_least32_t(addr); in android_atomic_acquire_cas() local [all …]
|
| /system/chre/external/kiss_fft/ |
| D | _kiss_fft_guts.h | 60 # define CHECK_OVERFLOW_OP(a,op,b) \ argument 64 #define CHECK_OVERFLOW(a, op, b) {} argument 69 # define smul(a,b) ( (SAMPPROD)(a)*(b) ) argument 72 # define S_MUL(a,b) sround( smul(a,b) ) argument 74 # define C_MUL(m,a,b) \ argument 91 # define S_MUL(a,b) ( (a)*(b) ) argument 92 #define C_MUL(m,a,b) \ argument 102 # define CHECK_OVERFLOW_OP(a,op,b) /* noop */ argument 105 #define C_ADD( res, a,b)\ argument 111 #define C_SUB( res, a,b)\ argument [all …]
|
| D | kissfft.hh | 114 void C_ADD( cpx_type & c,const cpx_type & a,const cpx_type & b) { c=a+b;} in C_ADD() 115 void C_MUL( cpx_type & c,const cpx_type & a,const cpx_type & b) { c=a*b;} in C_MUL() 116 void C_SUB( cpx_type & c,const cpx_type & a,const cpx_type & b) { c=a-b;} in C_SUB() 117 void C_ADDTO( cpx_type & c,const cpx_type & a) { c+=a;} in C_ADDTO() 119 scalar_type S_MUL( const scalar_type & a,const scalar_type & b) { return a*b;} in S_MUL() 120 scalar_type HALF_OF( const scalar_type & a) { return a*.5;} in HALF_OF() 121 void C_MULBYSCALAR(cpx_type & c,const scalar_type & a) {c*=a;} in C_MULBYSCALAR()
|
| /system/security/keystore2/src/database/ |
| D | utils.rs | 25 pub fn with_rows_extract_one<'a, T, F>(rows: &mut Rows<'a>, row_extractor: F) -> Result<T> in with_rows_extract_one() 40 pub fn with_rows_extract_all<'a, F>(rows: &mut Rows<'a>, mut row_extractor: F) -> Result<()> in with_rows_extract_all()
|
| /system/media/audio_utils/tests/ |
| D | intrinsic_tests.cpp | 70 const android::audio_utils::intrinsics::vector_hw_t<float, 3> a{ 1, 2, 3 }; in TEST() local 80 const android::audio_utils::intrinsics::vector_hw_t<float, 3> a(std::nanf("")); in TEST() local 91 const android::audio_utils::intrinsics::vector_hw_t<float, 3> a(negzero); in TEST() local 119 a(TypeParam(0.5)); in TYPED_TEST() local 138 const TypeParam a(0.25f); in TYPED_TEST() local 146 TypeParam a, b; in TYPED_TEST() local 155 TypeParam a; in TYPED_TEST() local 177 const TypeParam a(0.25f); in TYPED_TEST() local 185 TypeParam a, b; in TYPED_TEST() local 194 TypeParam a; in TYPED_TEST() local [all …]
|
| /system/keymaster/tests/ |
| D | android_keymaster_test_utils.cpp | 90 bool operator==(const keymaster_key_param_t& a, const keymaster_key_param_t& b) { in operator ==() 136 string hex2str(string a) { in hex2str() 148 bool operator==(const AuthorizationSet& a, const AuthorizationSet& b) { in operator ==() 156 bool operator!=(const AuthorizationSet& a, const AuthorizationSet& b) { in operator !=()
|
| /system/tools/hidl/hidl2aidl/test/aidl_api/hidl2aidl_test_gen/current/hidl2aidl/test/ |
| D | IFoo.aidl | 28 void someBar(in String a, in String b); in someBar() 29 oneway void someFoo(in byte a); in someFoo() 32 void versionTest_(in String a); in versionTest_() 33 boolean versionTest_two_(in String a); in versionTest_two_()
|
| D | IBar.aidl | 24 String someBar(in String a, in byte b); in someBar() 25 oneway void someFoo(in byte a); in someFoo()
|
| /system/media/audio/include/system/ |
| D | elementwise_op.h | 320 std::optional<T> elementwise_min(const T& a, const T& b) { in elementwise_min() 327 std::optional<T> elementwise_max(const T& a, const T& b) { in elementwise_max() 370 std::optional<T> elementwise_min(const T& a, const T& b) { in elementwise_min() 409 std::optional<T> elementwise_max(const T& a, const T& b) { in elementwise_max() 462 std::optional<T> elementwise_min(const T& a, const T& b) { in elementwise_min() 472 std::optional<T> elementwise_max(const T& a, const T& b) { in elementwise_max() 482 std::optional<T> elementwise_min(const T& a, const T& b) { in elementwise_min() 497 std::optional<T> elementwise_max(const T& a, const T& b) { in elementwise_max()
|
| /system/media/audio_utils/include/audio_utils/ |
| D | safe_math.h | 86 auto safe_sub_overflow(const T& a, const U& b) { in safe_sub_overflow() 99 auto safe_add_overflow(const T& a, const U& b) { in safe_add_overflow() 111 constexpr auto safe_add_sat(T a, T b) { in safe_add_sat()
|
| /system/libufdt/sysdeps/ |
| D | libufdt_sysdeps_vendor.c | 59 #define min(a, b) (a) < (b) ? a : b argument 75 #define SWAPINIT(a, es) \ argument 80 static __inline void swapfunc(char *a, char *b, int n, int swaptype) { in swapfunc() 84 #define swap(a, b) \ argument 91 #define vecswap(a, b, n) \ argument 94 static __inline char *med3(char *a, char *b, char *c, in med3() 104 char *a = aa; in qsort() local
|
| /system/extras/tests/timetest/ |
| D | timetest.c | 26 static struct timespec ts_sub(struct timespec a, struct timespec b) in ts_sub() 42 static struct timespec ts_min(struct timespec a, struct timespec b) in ts_min() 50 static struct timespec ts_max(struct timespec a, struct timespec b) in ts_max()
|
| /system/tools/aidl/tests/golden_output/aidl-test-extras-java-source/gen/android/aidl/tests/immutable/ |
| D | Foo.java | 12 public final int a; field in Foo 20 private int a = 10; field in Foo.Builder 21 public Builder setA(int a) { in setA() 87 …public Foo(int a, android.aidl.tests.immutable.Bar b, java.util.List<android.aidl.tests.immutable.… in Foo()
|
| D | IBaz.java | 15 …@Override public android.aidl.tests.immutable.Foo RepeatFoo(android.aidl.tests.immutable.Foo a) th… in RepeatFoo() 116 …Override public android.aidl.tests.immutable.Foo RepeatFoo(android.aidl.tests.immutable.Foo a) thr… in RepeatFoo() 144 …public android.aidl.tests.immutable.Foo RepeatFoo(android.aidl.tests.immutable.Foo a) throws andro… in RepeatFoo()
|
| /system/tools/aidl/tests/golden_output/frozen/aidl-test-extras-java-source/gen/android/aidl/tests/immutable/ |
| D | Foo.java | 12 public final int a; field in Foo 20 private int a = 10; field in Foo.Builder 21 public Builder setA(int a) { in setA() 87 …public Foo(int a, android.aidl.tests.immutable.Bar b, java.util.List<android.aidl.tests.immutable.… in Foo()
|
| D | IBaz.java | 15 …@Override public android.aidl.tests.immutable.Foo RepeatFoo(android.aidl.tests.immutable.Foo a) th… in RepeatFoo() 116 …Override public android.aidl.tests.immutable.Foo RepeatFoo(android.aidl.tests.immutable.Foo a) thr… in RepeatFoo() 144 …public android.aidl.tests.immutable.Foo RepeatFoo(android.aidl.tests.immutable.Foo a) throws andro… in RepeatFoo()
|
| /system/teeui/libteeui/src/ |
| D | utils.cpp | 91 Color drawLinePoint(Point<pxs> a, Point<pxs> b, Point<pxs> px_origin, Color c, pxs width) { in drawLinePoint() 128 optional<PxPoint> intersect(const PxVec& a, const PxPoint& b, const PxVec& c, const PxPoint& d) { in intersect() 161 auto a = b; in intersect() local 171 auto processSegment = [&](const PxVec& a, const PxVec& b) -> bool { in intersect() 253 auto a = begin; in area() local
|
| /system/libhwbinder/vts/performance/ |
| D | PerfTest.cpp | 55 int a[2]; in createPipePair() local 82 Results Results::combine(const Results& a, const Results& b) { in combine() 185 PResults PResults::combine(const PResults& a, const PResults& b) { in combine()
|
| /system/extras/showslab/ |
| D | showslab.c | 9 #define STRINGIFY_ARG(a) #a argument 10 #define STRINGIFY(a) STRINGIFY_ARG(a) argument 169 static struct slab_info *merge_objs(struct slab_info *a, struct slab_info *b) in merge_objs() 195 struct slab_info *a, *b; in slabsort() local 224 static int sort_name(const struct slab_info *a, const struct slab_info *b) in sort_name()
|
| /system/tools/aidl/ |
| D | generate_cpp_analyzer.cpp | 53 for (const unique_ptr<AidlArgument>& a : method.GetArguments()) { in GenerateAnalyzerTransaction() local 82 for (const auto& a : method.GetArguments()) { in GenerateAnalyzerTransaction() local 105 for (const auto& a : method.GetArguments()) { in GenerateAnalyzerTransaction() local
|
| /system/core/debuggerd/crasher/ |
| D | crasher.cpp | 130 noinline int crash3(int a) { in crash3() 135 noinline int crash2(int a) { in crash2() 140 noinline int crash(int a) { in crash() 163 int* a = (int *)(&do_action); in sigsegv_non_null() local
|
| /system/tools/aidl/tests/java/src/android/aidl/tests/ |
| D | UnionTests.java | 102 private void shouldBeTheSame(Union a, Union b) { in shouldBeTheSame() 110 private void shouldBeDifferent(Union a, Union b) { in shouldBeDifferent()
|