/external/clang/test/SemaCXX/ |
D | addr-of-overloaded-function-casting.cpp | 14 { bool b = (void (&)(char))f; } // expected-error{{does not match required type}} in main() local 15 { bool b = (void (*)(char))f; } // expected-error{{does not match required type}} in main() local 17 { bool b = (void (&)(int))f; } //ok in main() local 18 { bool b = (void (*)(int))f; } //ok in main() local 20 { bool b = static_cast<void (&)(char)>(f); } // expected-error{{does not match}} in main() local 21 { bool b = static_cast<void (*)(char)>(f); } // expected-error{{address of overloaded function}} in main() local 23 { bool b = static_cast<void (&)(int)>(f); } //ok in main() local 24 { bool b = static_cast<void (*)(int)>(f); } //ok in main() local 27 { bool b = reinterpret_cast<void (&)(char)>(f); } // expected-error{{cannot resolve}} in main() local 28 { bool b = reinterpret_cast<void (*)(char)>(f); } // expected-error{{cannot resolve}} in main() local [all …]
|
D | for-range-no-std.cpp | 32 for (auto b : S()) {} // ok in f() local 33 …for (auto b : T()) {} // expected-error {{no matching function for call to 'begin'}} expected-note… in f() local 34 for (auto b : a) {} // ok in f() local 35 for (int b : NS::ADL()) {} // ok in f() local 36 …for (int b : NS::NoADL()) {} // expected-error {{no matching function for call to 'begin'}} expect… in f() local
|
/external/clang/test/CXX/basic/basic.scope/basic.scope.local/ |
D | p4-0x.cpp | 4 int b; in f() local 7 if (bool b = true) // expected-note 2{{previous definition}} in f() local 8 bool b; // expected-error {{redefinition}} in f() local 10 int b; // expected-error {{redefinition}} in f() local 11 while (bool b = true) // expected-note {{previous definition}} in f() local 12 int b; // expected-error {{redefinition}} in f() local 21 if (bool b = true) { // expected-note 2{{previous definition}} in f() local 22 int b; // expected-error {{redefinition}} in f() local 24 int b; // expected-error {{redefinition}} in f() local 26 while (bool b = true) { // expected-note {{previous definition}} in f() local [all …]
|
/external/clang/lib/Headers/ |
D | altivec.h | 138 vec_add(vector signed char a, vector signed char b) in vec_add() 144 vec_add(vector bool char a, vector signed char b) in vec_add() 150 vec_add(vector signed char a, vector bool char b) in vec_add() 156 vec_add(vector unsigned char a, vector unsigned char b) in vec_add() 162 vec_add(vector bool char a, vector unsigned char b) in vec_add() 168 vec_add(vector unsigned char a, vector bool char b) in vec_add() 174 vec_add(vector short a, vector short b) in vec_add() 180 vec_add(vector bool short a, vector short b) in vec_add() 186 vec_add(vector short a, vector bool short b) in vec_add() 192 vec_add(vector unsigned short a, vector unsigned short b) in vec_add() [all …]
|
D | tmmintrin.h | 69 #define _mm_alignr_epi8(a, b, n) (__builtin_ia32_palignr128((a), (b), (n))) argument 70 #define _mm_alignr_pi8(a, b, n) (__builtin_ia32_palignr((a), (b), (n))) argument 73 _mm_hadd_epi16(__m128i a, __m128i b) in _mm_hadd_epi16() 79 _mm_hadd_epi32(__m128i a, __m128i b) in _mm_hadd_epi32() 85 _mm_hadd_pi16(__m64 a, __m64 b) in _mm_hadd_pi16() 91 _mm_hadd_pi32(__m64 a, __m64 b) in _mm_hadd_pi32() 97 _mm_hadds_epi16(__m128i a, __m128i b) in _mm_hadds_epi16() 103 _mm_hadds_pi16(__m64 a, __m64 b) in _mm_hadds_pi16() 109 _mm_hsub_epi16(__m128i a, __m128i b) in _mm_hsub_epi16() 115 _mm_hsub_epi32(__m128i a, __m128i b) in _mm_hsub_epi32() [all …]
|
D | xmmintrin.h | 44 _mm_add_ss(__m128 a, __m128 b) in _mm_add_ss() 51 _mm_add_ps(__m128 a, __m128 b) in _mm_add_ps() 57 _mm_sub_ss(__m128 a, __m128 b) in _mm_sub_ss() 64 _mm_sub_ps(__m128 a, __m128 b) in _mm_sub_ps() 70 _mm_mul_ss(__m128 a, __m128 b) in _mm_mul_ss() 77 _mm_mul_ps(__m128 a, __m128 b) in _mm_mul_ps() 83 _mm_div_ss(__m128 a, __m128 b) in _mm_div_ss() 90 _mm_div_ps(__m128 a, __m128 b) in _mm_div_ps() 132 _mm_min_ss(__m128 a, __m128 b) in _mm_min_ss() 138 _mm_min_ps(__m128 a, __m128 b) in _mm_min_ps() [all …]
|
D | emmintrin.h | 43 _mm_add_sd(__m128d a, __m128d b) in _mm_add_sd() 50 _mm_add_pd(__m128d a, __m128d b) in _mm_add_pd() 56 _mm_sub_sd(__m128d a, __m128d b) in _mm_sub_sd() 63 _mm_sub_pd(__m128d a, __m128d b) in _mm_sub_pd() 69 _mm_mul_sd(__m128d a, __m128d b) in _mm_mul_sd() 76 _mm_mul_pd(__m128d a, __m128d b) in _mm_mul_pd() 82 _mm_div_sd(__m128d a, __m128d b) in _mm_div_sd() 89 _mm_div_pd(__m128d a, __m128d b) in _mm_div_pd() 95 _mm_sqrt_sd(__m128d a, __m128d b) in _mm_sqrt_sd() 108 _mm_min_sd(__m128d a, __m128d b) in _mm_min_sd() [all …]
|
/external/clang/test/CXX/over/over.over/ |
D | p2-resolve-single-template-id.cpp | 103 { bool b = (twoT<int>); } // ok in main() local 104 { bool b = (twoT<int, int>); } //ok in main() local 106 { bool b = &twoT<int>; //&foo<int>; } in main() local 121 { bool b = cant_resolve<int>; } // expected-error {{address of overload}} in main() local 163 …{ bool b = S::f<char>; } // expected-error {{call to non-static member function without an object … in test() local 164 …{ bool b = S::f<int>; } // expected-error {{call to non-static member function without an object a… in test() local 165 { bool b = &S::f<char>; } in test() local 166 { bool b = &S::f<int>; } in test() local 168 { bool b = s.f<char>; } // expected-error {{cannot initialize}} in test() local 169 { bool b = s.f<int>; } // expected-error {{cannot initialize}} in test() local [all …]
|
/external/clang/test/CodeGen/ |
D | mmx-builtins.c | 10 __m64 test1(__m64 a, __m64 b) { in test1() 15 __m64 test2(__m64 a, __m64 b) { in test2() 20 __m64 test3(__m64 a, __m64 b) { in test3() 25 __m64 test4(__m64 a, __m64 b) { in test4() 30 __m64 test5(__m64 a, __m64 b) { in test5() 35 __m64 test6(__m64 a, __m64 b) { in test6() 40 __m64 test7(__m64 a, __m64 b) { in test7() 45 __m64 test8(__m64 a, __m64 b) { in test8() 50 __m64 test9(__m64 a, __m64 b) { in test9() 55 __m64 test10(__m64 a, __m64 b) { in test10() [all …]
|
D | pointer-arithmetic.c | 5 int f0(int *a, Int *b) { return a - b; } in f0() 7 int f1(const char *a, char *b) { return b - a; } in f1() 11 void *f2(void *a, int b) { return a + b; } in f2() 12 void *f2_0(void *a, int b) { return &a[b]; } in f2_0() 13 void *f2_1(void *a, int b) { return (a += b); } in f2_1() 14 void *f3(int a, void *b) { return a + b; } in f3() 15 void *f3_1(int a, void *b) { return (a += b); } in f3_1() 16 void *f4(void *a, int b) { return a - b; } in f4() 17 void *f4_1(void *a, int b) { return (a -= b); } in f4_1() 18 FP f5(FP a, int b) { return a + b; } in f5() [all …]
|
D | palignr.c | 4 #define _mm_alignr_epi8(a, b, n) (__builtin_ia32_palignr128((a), (b), (n))) argument 8 int4 align1(int4 a, int4 b) { return _mm_alignr_epi8(a, b, 15); } in align1() 12 int4 align2(int4 a, int4 b) { return _mm_alignr_epi8(a, b, 16); } in align2() 14 int4 align3(int4 a, int4 b) { return _mm_alignr_epi8(a, b, 17); } in align3() 16 int4 align4(int4 a, int4 b) { return _mm_alignr_epi8(a, b, 32); } in align4() 18 #define _mm_alignr_pi8(a, b, n) (__builtin_ia32_palignr((a), (b), (n))) argument 22 int2 align5(int2 a, int2 b) { return _mm_alignr_pi8(a, b, 8); } in align5() 25 int2 align6(int2 a, int2 b) { return _mm_alignr_pi8(a, b, 9); } in align6() 28 int2 align7(int2 a, int2 b) { return _mm_alignr_pi8(a, b, 16); } in align7() 31 int2 align8(int2 a, int2 b) { return _mm_alignr_pi8(a, b, 7); } in align8()
|
D | avx-cmp-builtins.c | 12 __m128d test_cmp_pd(__m128d a, __m128d b) { in test_cmp_pd() 18 __m128d test_cmp_ps(__m128 a, __m128 b) { in test_cmp_ps() 24 __m256d test_cmp_pd256(__m256d a, __m256d b) { in test_cmp_pd256() 30 __m256d test_cmp_ps256(__m256 a, __m256 b) { in test_cmp_ps256() 36 __m128d test_cmp_sd(__m128d a, __m128d b) { in test_cmp_sd() 42 __m128d test_cmp_ss(__m128 a, __m128 b) { in test_cmp_ss()
|
/external/clang/test/Analysis/ |
D | additive-folding.c | 16 int b = a + 1; in separateExpressions() local 28 int b = 15 + a + 15 - 10 - 20; in oneLongExpression() local 41 int b = a + 1LL; in mixedTypes() local 58 char* b = NULL; in eq_ne() local 69 char* b = NULL; in ne_eq() local 82 char* b = NULL; in mixed_eq_ne() local 93 char* b = NULL; in mixed_ne_eq() local 106 char* b = NULL; in baselineGT() local 115 char* b = NULL; in baselineGE() local 124 char* b = NULL; in baselineLT() local [all …]
|
D | temp-obj-dtors-cfg-output.cpp | 32 int b; in test_binary() local 38 int b; in test_and() local 44 int b; in test_or() local 50 int b; in test_cond() local 56 int b; in test_cond_cref() local 61 int b; in test_cond_implicit() local 67 int b; in test_cond_implicit_cref() local 72 int b; in test_copy_init() local 78 int b; in test_cref_init() local 83 int b; in test_call_copy_init() local [all …]
|
D | additive-folding-range-constraints.c | 14 char* b = NULL; in smallAdjustmentGT() local 25 char* b = NULL; in smallAdjustmentGE() local 36 char* b = NULL; in smallAdjustmentLT() local 45 char* b = NULL; in smallAdjustmentLE() local 58 char* b = NULL; in largeAdjustmentGT() local 69 char* b = NULL; in largeAdjustmentGE() local 80 char* b = NULL; in largeAdjustmentLT() local 91 char* b = NULL; in largeAdjustmentLE() local
|
/external/safe-iop/src/ |
D | safe_iop.c | 183 int8_t a, b; in T_add_s8() local 196 int16_t a, b; in T_add_s16() local 207 int32_t a, b; in T_add_s32() local 218 int64_t a, b; in T_add_s64() local 229 long a, b; in T_add_long() local 239 long long a, b; in T_add_longlong() local 249 ssize_t a, b; in T_add_ssizet() local 260 uint8_t a, b; in T_add_u8() local 272 uint16_t a, b; in T_add_u16() local 284 uint32_t a, b; in T_add_u32() local [all …]
|
/external/dropbear/libtomcrypt/src/math/ |
D | gmp_desc.c | 39 static int neg(void *a, void *b) in neg() 47 static int copy(void *a, void *b) in copy() 55 static int init_copy(void **a, void *b) in init_copy() 64 static int set_int(void *a, unsigned long b) in set_int() 89 static int compare(void *a, void *b) in compare() 104 static int compare_d(void *a, unsigned long b) in compare_d() 142 static int read_radix(void *a, const char *b, int radix) in read_radix() 151 static int write_radix(void *a, char *b, int radix) in write_radix() 170 static int unsigned_write(void *a, unsigned char *b) in unsigned_write() 179 static int unsigned_read(void *a, unsigned char *b, unsigned long len) in unsigned_read() [all …]
|
D | ltm_desc.c | 68 static int neg(void *a, void *b) in neg() 75 static int copy(void *a, void *b) in copy() 82 static int init_copy(void **a, void *b) in init_copy() 91 static int set_int(void *a, unsigned long b) in set_int() 119 static int compare(void *a, void *b) in compare() 133 static int compare_d(void *a, unsigned long b) in compare_d() 168 static int read_radix(void *a, const char *b, int radix) in read_radix() 176 static int write_radix(void *a, char *b, int radix) in write_radix() 191 static int unsigned_write(void *a, unsigned char *b) in unsigned_write() 199 static int unsigned_read(void *a, unsigned char *b, unsigned long len) in unsigned_read() [all …]
|
D | tfm_desc.c | 62 static int neg(void *a, void *b) in neg() 70 static int copy(void *a, void *b) in copy() 78 static int init_copy(void **a, void *b) in init_copy() 87 static int set_int(void *a, unsigned long b) in set_int() 118 static int compare(void *a, void *b) in compare() 132 static int compare_d(void *a, unsigned long b) in compare_d() 167 static int read_radix(void *a, const char *b, int radix) in read_radix() 175 static int write_radix(void *a, char *b, int radix) in write_radix() 190 static int unsigned_write(void *a, unsigned char *b) in unsigned_write() 199 static int unsigned_read(void *a, unsigned char *b, unsigned long len) in unsigned_read() [all …]
|
/external/dropbear/libtomcrypt/src/ciphers/safer/ |
D | saferp.c | 47 #define ROUND(b, i) \ argument 66 #define iROUND(b, i) \ argument 85 #define PHT(b) \ argument 96 #define iPHT(b) \ argument 107 #define SHUF(b, b2) \ argument 114 #define iSHUF(b, b2) \ argument 124 #define LT(b, b2) \ argument 131 #define iLT(b, b2) \ argument 139 static void _round(unsigned char *b, int i, symmetric_key *skey) in _round() 144 static void _iround(unsigned char *b, int i, symmetric_key *skey) in _iround() [all …]
|
/external/speex/libspeex/ |
D | pseudofloat.h | 63 #define MIN(a,b) ((a)<(b)?(a):(b)) argument 97 static inline spx_float_t FLOAT_ADD(spx_float_t a, spx_float_t b) in FLOAT_ADD() 132 static inline spx_float_t FLOAT_SUB(spx_float_t a, spx_float_t b) in FLOAT_SUB() 167 static inline int FLOAT_LT(spx_float_t a, spx_float_t b) in FLOAT_LT() 180 static inline int FLOAT_GT(spx_float_t a, spx_float_t b) in FLOAT_GT() 185 static inline spx_float_t FLOAT_MULT(spx_float_t a, spx_float_t b) in FLOAT_MULT() 208 static inline spx_float_t FLOAT_AMULT(spx_float_t a, spx_float_t b) in FLOAT_AMULT() 217 static inline spx_float_t FLOAT_SHL(spx_float_t a, int b) in FLOAT_SHL() 241 static inline spx_int32_t FLOAT_MUL32(spx_float_t a, spx_word32_t b) in FLOAT_MUL32() 246 static inline spx_float_t FLOAT_MUL32U(spx_word32_t a, spx_word32_t b) in FLOAT_MUL32U() [all …]
|
D | fixed_generic.h | 65 #define ADD16(a,b) ((spx_word16_t)((spx_word16_t)(a)+(spx_word16_t)(b))) argument 66 #define SUB16(a,b) ((spx_word16_t)(a)-(spx_word16_t)(b)) argument 67 #define ADD32(a,b) ((spx_word32_t)(a)+(spx_word32_t)(b)) argument 68 #define SUB32(a,b) ((spx_word32_t)(a)-(spx_word32_t)(b)) argument 72 #define MULT16_16_16(a,b) ((((spx_word16_t)(a))*((spx_word16_t)(b)))) argument 75 #define MULT16_16(a,b) (((spx_word32_t)(spx_word16_t)(a))*((spx_word32_t)(spx_word16_t)(b))) argument 77 #define MAC16_16(c,a,b) (ADD32((c),MULT16_16((a),(b)))) argument 78 #define MULT16_32_Q12(a,b) ADD32(MULT16_16((a),SHR((b),12)), SHR(MULT16_16((a),((b)&0x00000fff)),12… argument 79 #define MULT16_32_Q13(a,b) ADD32(MULT16_16((a),SHR((b),13)), SHR(MULT16_16((a),((b)&0x00001fff)),13… argument 80 #define MULT16_32_Q14(a,b) ADD32(MULT16_16((a),SHR((b),14)), SHR(MULT16_16((a),((b)&0x00003fff)),14… argument [all …]
|
D | fixed_debug.h | 173 #define ADD16(a, b) _ADD16(a, b, __FILE__, __LINE__) argument 174 static inline short _ADD16(int a, int b, char *file, int line) in _ADD16() 190 #define SUB16(a, b) _SUB16(a, b, __FILE__, __LINE__) argument 191 static inline short _SUB16(int a, int b, char *file, int line) in _SUB16() 205 #define ADD32(a, b) _ADD32(a, b, __FILE__, __LINE__) argument 206 static inline int _ADD32(long long a, long long b, char *file, int line) in _ADD32() 222 static inline int SUB32(long long a, long long b) in SUB32() 236 #define ADD64(a,b) (MIPS_INC(a)+(b)) argument 239 static inline short MULT16_16_16(int a, int b) in MULT16_16_16() 253 #define MULT16_16(a, b) _MULT16_16(a, b, __FILE__, __LINE__) argument [all …]
|
/external/v8/test/mjsunit/ |
D | arguments-read-and-assignment.js | 66 assertEquals(54, function(a, b) { arguments[1] = 54; return b; }(42, 37), argument 68 assertEquals(54, function(a, b) { b = 54; return arguments[1]; }(42, 47), argument 70 assertEquals(42, function(a, b) { arguments[1] = 54; return a; }(42, 37), argument 72 assertEquals(42, function(a, b) { b = 54; return arguments[0]; }(42, 47), argument 77 function(a,b) { argument 79 function(b){ return a + b + arguments[0]; }(b); }(7,6), argument 83 return function(b){ return a; }(); argument 89 return function(b){ a; return 42; }(); argument 95 return function(b){ if (a) return 42; }(); argument 101 return function(b){ return a || "no"; }(); argument [all …]
|
/external/llvm/test/FrontendC/ |
D | 2008-03-05-syncPtr.c | 5 int* foo(int** a, int* b, int* c) { in foo() 9 int foo2(int** a, int* b, int* c) { in foo2() 13 int* foo3(int** a, int b) { in foo3() 17 int* foo4(int** a, int b) { in foo4() 21 int* foo5(int** a, int* b) { in foo5() 25 int* foo6(int** a, int*** b) { in foo6()
|