Home
last modified time | relevance | path

Searched defs:a (Results 1 – 25 of 217) sorted by relevance

123456789

/system/core/libcutils/include_vndk/cutils/
Datomic.h93 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/
Datomic.h93 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/bt/stack/smp/
Dp_256_multprecision.cc34 void multiprecision_copy(uint32_t* c, uint32_t* a) { in multiprecision_copy()
38 int multiprecision_compare(uint32_t* a, uint32_t* b) { in multiprecision_compare()
46 int multiprecision_iszero(uint32_t* a) { in multiprecision_iszero()
53 uint32_t multiprecision_dword_bits(uint32_t a) { in multiprecision_dword_bits()
61 uint32_t multiprecision_most_signdwords(uint32_t* a) { in multiprecision_most_signdwords()
68 uint32_t multiprecision_most_signbits(uint32_t* a) { in multiprecision_most_signbits()
78 uint32_t multiprecision_add(uint32_t* c, uint32_t* a, uint32_t* b) { in multiprecision_add()
95 uint32_t multiprecision_sub(uint32_t* c, uint32_t* a, uint32_t* b) { in multiprecision_sub()
111 void multiprecision_lshift_mod(uint32_t* c, uint32_t* a) { in multiprecision_lshift_mod()
124 void multiprecision_rshift(uint32_t* c, uint32_t* a) { in multiprecision_rshift()
[all …]
/system/bt/gd/security/ecc/
Dmultprecision.cc40 void multiprecision_copy(uint32_t* c, const uint32_t* a) { in multiprecision_copy()
44 int multiprecision_compare(const uint32_t* a, const uint32_t* b) { in multiprecision_compare()
52 int multiprecision_iszero(const uint32_t* a) { in multiprecision_iszero()
59 uint32_t multiprecision_dword_bits(uint32_t a) { in multiprecision_dword_bits()
67 uint32_t multiprecision_most_signdwords(const uint32_t* a) { in multiprecision_most_signdwords()
74 uint32_t multiprecision_most_signbits(const uint32_t* a) { in multiprecision_most_signbits()
83 uint32_t multiprecision_add(uint32_t* c, const uint32_t* a, const uint32_t* b) { in multiprecision_add()
100 uint32_t multiprecision_sub(uint32_t* c, const uint32_t* a, const uint32_t* b) { in multiprecision_sub()
116 void multiprecision_lshift_mod(uint32_t* c, const uint32_t* a, const uint32_t* modp) { in multiprecision_lshift_mod()
126 void multiprecision_rshift(uint32_t* c, const uint32_t* a) { in multiprecision_rshift()
[all …]
/system/bt/embdrv/sbc/decoder/include/
Doi_utils.h116 #define OI_ScheduleCallback(f, a, t) OI_ScheduleCallbackFunction(f, a, t, NULL); argument
331 #define OI_MAX(a, b) (((a) < (b)) ? (b) : (a)) argument
332 #define OI_MIN(a, b) (((a) > (b)) ? (b) : (a)) argument
/system/chre/external/kiss_fft/
D_kiss_fft_guts.h58 # define CHECK_OVERFLOW_OP(a,op,b) \ argument
64 # define smul(a,b) ( (SAMPPROD)(a)*(b) ) argument
67 # define S_MUL(a,b) sround( smul(a,b) ) argument
69 # define C_MUL(m,a,b) \ argument
86 # define S_MUL(a,b) ( (a)*(b) ) argument
87 #define C_MUL(m,a,b) \ argument
97 # define CHECK_OVERFLOW_OP(a,op,b) /* noop */ argument
100 #define C_ADD( res, a,b)\ argument
106 #define C_SUB( res, a,b)\ argument
112 #define C_ADDTO( res , a)\ argument
[all …]
Dkissfft.hh114 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/core/libpixelflinger/
Dfixed.cpp29 uint32_t a = s ? -x : x; in gglRecipQNormalized() local
82 const GGLfixed a = x; in gglSqrtRecipx() local
97 GGLfixed gglSqrtx(GGLfixed a) in gglSqrtx()
237 static inline void swap(T& a, T& b) { in swap()
244 int32_t slow_muldiv(uint32_t a, uint32_t b, uint32_t c) in slow_muldiv()
280 int32_t quick_muldiv(int32_t a, int32_t b, int32_t c) in quick_muldiv()
309 int32_t gglMulDivi(int32_t a, int32_t b, int32_t c) in gglMulDivi()
/system/media/audio_utils/include/audio_utils/
Dsafe_math.h29 auto safe_sub_overflow(const T& a, const U& b) { in safe_sub_overflow()
42 auto safe_add_overflow(const T& a, const U& b) { in safe_add_overflow()
/system/core/libpixelflinger/include/private/pixelflinger/
Dggl_fixed.h133 __attribute__((always_inline)) inline GGLfixed gglMulAddx(GGLfixed x, GGLfixed y, GGLfixed a, in gglMulAddx()
155 inline GGLfixed gglMulSubx(GGLfixed x, GGLfixed y, GGLfixed a, int shift) { in gglMulSubx()
197 inline GGLfixed gglMulx(GGLfixed a, GGLfixed b, int shift) { in gglMulx()
293 inline GGLfixed gglMulAddx(GGLfixed a, GGLfixed b, GGLfixed c, int shift) { in gglMulAddx()
365 inline GGLfixed gglMulSubx(GGLfixed a, GGLfixed b, GGLfixed c, int shift) { in gglMulSubx()
482 inline GGLfixed gglMulAddx(GGLfixed x, GGLfixed y, GGLfixed a, int shift) in gglMulAddx()
496 inline GGLfixed gglMulSubx(GGLfixed x, GGLfixed y, GGLfixed a, int shift) in gglMulSubx()
526 inline GGLfixed gglMulx(GGLfixed a, GGLfixed b, int shift) { in gglMulx()
615 inline GGLfixed gglMulAddx(GGLfixed a, GGLfixed b, GGLfixed c, int shift) { in gglMulAddx()
681 inline GGLfixed gglMulSubx(GGLfixed a, GGLfixed b, GGLfixed c, int shift) { in gglMulSubx()
[all …]
/system/extras/tests/timetest/
Dtimetest.c26 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/libufdt/sysdeps/
Dlibufdt_sysdeps_vendor.c57 #define min(a, b) (a) < (b) ? a : b argument
73 #define SWAPINIT(a, es) \ argument
78 static __inline void swapfunc(char *a, char *b, int n, int swaptype) { in swapfunc()
82 #define swap(a, b) \ argument
89 #define vecswap(a, b, n) \ argument
92 static __inline char *med3(char *a, char *b, char *c, in med3()
102 char *a = aa; in qsort() local
/system/update_engine/update_manager/
Dprng_unittest.cc28 PRNG a(42); in TEST() local
37 PRNG a(42); in TEST() local
65 PRNG a(42); in TEST() local
/system/libufdt/tests/testdata/
Dnode_ordering-base.dts4 a: a { label
Doverlay_2_layers-base.dts3 a: a { label
Dno_local_fixup-base.dts3 a: a { label
Dlocal_fixup-base.dts4 a: a { label
Dbase_no_symbols-overlay.dts5 a: a {}; label
Dlocal_fixup_with_offset-base.dts4 a: a { label
/system/nfc/src/include/
Dnfc_types.h66 #define ARRAY8_TO_STREAM(p, a) \ argument
71 #define ARRAY_TO_STREAM(p, a, len) \ argument
93 #define STREAM_TO_ARRAY8(a, p) \ argument
99 #define STREAM_TO_ARRAY(a, p, len) \ argument
129 #define ARRAY_TO_BE_STREAM(p, a, len) \ argument
/system/libhwbinder/vts/performance/
DPerfTest.cpp55 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/teeui/libteeui/src/
Dutils.cpp91 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/core/debuggerd/crasher/
Dcrasher.cpp122 noinline int crash3(int a) { in crash3()
127 noinline int crash2(int a) { in crash2()
132 noinline int crash(int a) { in crash()
151 int* a = (int *)(&do_action); in sigsegv_non_null() local
/system/tools/aidl/tests/android/aidl/tests/immutable/
DIBaz.aidl22 Foo RepeatFoo(in Foo a); in RepeatFoo()
/system/extras/showslab/
Dshowslab.c9 #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()

123456789