/external/clang/test/Analysis/ |
D | string.c | 50 void strlen_constant2(char x) { in strlen_constant2() 92 void strlen_argument(char *x) { in strlen_argument() 123 void strlen_indirect(char *x) { in strlen_indirect() 139 void strlen_indirect2(char *x) { in strlen_indirect2() 151 void strlen_liveness(const char *x) { in strlen_liveness() 172 void strnlen_constant2(char x) { in strnlen_constant2() 188 void strnlen_constant6(char x) { in strnlen_constant6() 224 void strnlen_is_not_strlen(char *x) { in strnlen_is_not_strlen() 228 void strnlen_at_limit(char *x) { in strnlen_at_limit() 266 void strcpy_null_dst(char *x) { in strcpy_null_dst() [all …]
|
D | bool-assignment.c | 9 void test_stdbool_initialization(int y) { in test_stdbool_initialization() 12 bool x = y; // no-warning in test_stdbool_initialization() local 16 bool x = y; // no-warning in test_stdbool_initialization() local 19 bool x = y; // no-warning in test_stdbool_initialization() local 22 void test_stdbool_assignment(int y) { in test_stdbool_assignment() 23 bool x = 0; // no-warning in test_stdbool_assignment() local 39 void test_BOOL_initialization(int y) { in test_BOOL_initialization() 42 BOOL x = y; // expected-warning {{Assignment of a non-Boolean value}} in test_BOOL_initialization() local 46 BOOL x = y; // expected-warning {{Assignment of a non-Boolean value}} in test_BOOL_initialization() local 49 BOOL x = y; // no-warning in test_BOOL_initialization() local [all …]
|
/external/clang/test/CodeGen/ |
D | builtins-overflow.c | 15 unsigned test_uadd_overflow(unsigned x, unsigned y) { in test_uadd_overflow() 24 unsigned long test_uaddl_overflow(unsigned long x, unsigned long y) { in test_uaddl_overflow() 33 unsigned long long test_uaddll_overflow(unsigned long long x, unsigned long long y) { in test_uaddll_overflow() 42 unsigned test_usub_overflow(unsigned x, unsigned y) { in test_usub_overflow() 51 unsigned long test_usubl_overflow(unsigned long x, unsigned long y) { in test_usubl_overflow() 60 unsigned long long test_usubll_overflow(unsigned long long x, unsigned long long y) { in test_usubll_overflow() 69 unsigned test_umul_overflow(unsigned x, unsigned y) { in test_umul_overflow() 78 unsigned long test_umull_overflow(unsigned long x, unsigned long y) { in test_umull_overflow() 87 unsigned long long test_umulll_overflow(unsigned long long x, unsigned long long y) { in test_umulll_overflow() 96 int test_sadd_overflow(int x, int y) { in test_sadd_overflow() [all …]
|
D | ppc64-align-struct.c | 5 struct test1 { int x; int y; }; member 6 struct test2 { int x; int y; } __attribute__((aligned (16))); member 7 struct test3 { int x; int y; } __attribute__((aligned (32))); member 8 struct test4 { int x; int y; int z; }; member 9 struct test5 { int x[17]; }; member 10 struct test6 { int x[17]; } __attribute__((aligned (16))); member 11 struct test7 { int x[17]; } __attribute__((aligned (32))); member 14 void test1 (int x, struct test1 y) in test1() 19 void test2 (int x, struct test2 y) in test2() 24 void test3 (int x, struct test3 y) in test3() [all …]
|
D | restrict.c | 6 void test0(int *x, int y) { in test0() 10 void test1(int * restrict x, int y) { in test1() 14 void test2(int *x, int * restrict y) { in test2() 20 void test3(rp x, int y) { in test3() 24 void test4(int *x, rp y) { in test4()
|
D | builtins-multiprecision.c | 5 unsigned char test_addcb(unsigned char x, unsigned char y, in test_addcb() 24 unsigned short test_addcs(unsigned short x, unsigned short y, in test_addcs() 43 unsigned test_addc(unsigned x, unsigned y, unsigned carryin, unsigned *z) { in test_addc() 60 unsigned long test_addcl(unsigned long x, unsigned long y, in test_addcl() 79 unsigned long long test_addcll(unsigned long long x, unsigned long long y, in test_addcll() 98 unsigned char test_subcb(unsigned char x, unsigned char y, in test_subcb() 117 unsigned short test_subcs(unsigned short x, unsigned short y, in test_subcs() 136 unsigned test_subc(unsigned x, unsigned y, unsigned carryin, unsigned *z) { in test_subc() 153 unsigned long test_subcl(unsigned long x, unsigned long y, in test_subcl() 171 unsigned long long test_subcll(unsigned long long x, unsigned long long y, in test_subcll()
|
/external/clang/INPUTS/ |
D | cfg-nested-switches.c | 1 #define EXPAND_2_INNER_CASES(i, x, y) INNER_CASE(i, x, y); INNER_CASE(i + 1, x, y); argument 2 #define EXPAND_4_INNER_CASES(i, x, y) EXPAND_2_INNER_CASES(i, x, y) EXPAND_2_INNER_CASES(i + … argument 3 #define EXPAND_8_INNER_CASES(i, x, y) EXPAND_4_INNER_CASES(i, x, y) EXPAND_4_INNER_CASES(i + … argument 4 #define EXPAND_16_INNER_CASES(i, x, y) EXPAND_8_INNER_CASES(i, x, y) EXPAND_8_INNER_CASES(i + … argument 5 #define EXPAND_32_INNER_CASES(i, x, y) EXPAND_16_INNER_CASES(i, x, y) EXPAND_16_INNER_CASES(i +… argument 6 #define EXPAND_64_INNER_CASES(i, x, y) EXPAND_32_INNER_CASES(i, x, y) EXPAND_32_INNER_CASES(i +… argument 8 #define EXPAND_2_OUTER_CASES(i, x, y) OUTER_CASE(i, x, y); OUTER_CASE(i + 1, x, y); argument 9 #define EXPAND_4_OUTER_CASES(i, x, y) EXPAND_2_OUTER_CASES(i, x, y) EXPAND_2_OUTER_CASES(i + … argument 10 #define EXPAND_8_OUTER_CASES(i, x, y) EXPAND_4_OUTER_CASES(i, x, y) EXPAND_4_OUTER_CASES(i + … argument 11 #define EXPAND_16_OUTER_CASES(i, x, y) EXPAND_8_OUTER_CASES(i, x, y) EXPAND_8_OUTER_CASES(i + … argument [all …]
|
D | cfg-long-chain1.c | 1 #define EXPAND_2_BRANCHES(i, x, y) BRANCH(i, x, y); BRANCH(i + 1, x, y); argument 2 #define EXPAND_4_BRANCHES(i, x, y) EXPAND_2_BRANCHES(i, x, y) EXPAND_2_BRANCHES(i + 2, x, y) argument 3 #define EXPAND_8_BRANCHES(i, x, y) EXPAND_4_BRANCHES(i, x, y) EXPAND_4_BRANCHES(i + 4, x, y) argument 4 #define EXPAND_16_BRANCHES(i, x, y) EXPAND_8_BRANCHES(i, x, y) EXPAND_8_BRANCHES(i + 8, x, y) argument 5 #define EXPAND_32_BRANCHES(i, x, y) EXPAND_16_BRANCHES(i, x, y) EXPAND_16_BRANCHES(i + 16, x, y) argument 6 #define EXPAND_64_BRANCHES(i, x, y) EXPAND_32_BRANCHES(i, x, y) EXPAND_32_BRANCHES(i + 32, x, y) argument 7 #define EXPAND_128_BRANCHES(i, x, y) EXPAND_64_BRANCHES(i, x, y) EXPAND_64_BRANCHES(i + 64, x, y) argument 8 #define EXPAND_256_BRANCHES(i, x, y) EXPAND_128_BRANCHES(i, x, y) EXPAND_128_BRANCHES(i + 128, x,… argument 9 #define EXPAND_512_BRANCHES(i, x, y) EXPAND_256_BRANCHES(i, x, y) EXPAND_256_BRANCHES(i + 256, x,… argument 10 #define EXPAND_1024_BRANCHES(i, x, y) EXPAND_512_BRANCHES(i, x, y) EXPAND_512_BRANCHES(i + 512, x,… argument [all …]
|
D | cfg-long-chain2.c | 1 #define EXPAND_2_BRANCHES(i, x, y) BRANCH(i, x, y); BRANCH(i + 1, x, y); argument 2 #define EXPAND_4_BRANCHES(i, x, y) EXPAND_2_BRANCHES(i, x, y) EXPAND_2_BRANCHES(i + 2, x, y) argument 3 #define EXPAND_8_BRANCHES(i, x, y) EXPAND_4_BRANCHES(i, x, y) EXPAND_4_BRANCHES(i + 4, x, y) argument 4 #define EXPAND_16_BRANCHES(i, x, y) EXPAND_8_BRANCHES(i, x, y) EXPAND_8_BRANCHES(i + 8, x, y) argument 5 #define EXPAND_32_BRANCHES(i, x, y) EXPAND_16_BRANCHES(i, x, y) EXPAND_16_BRANCHES(i + 16, x, y) argument 6 #define EXPAND_64_BRANCHES(i, x, y) EXPAND_32_BRANCHES(i, x, y) EXPAND_32_BRANCHES(i + 32, x, y) argument 7 #define EXPAND_128_BRANCHES(i, x, y) EXPAND_64_BRANCHES(i, x, y) EXPAND_64_BRANCHES(i + 64, x, y) argument 8 #define EXPAND_256_BRANCHES(i, x, y) EXPAND_128_BRANCHES(i, x, y) EXPAND_128_BRANCHES(i + 128, x,… argument 9 #define EXPAND_512_BRANCHES(i, x, y) EXPAND_256_BRANCHES(i, x, y) EXPAND_256_BRANCHES(i + 256, x,… argument 10 #define EXPAND_1024_BRANCHES(i, x, y) EXPAND_512_BRANCHES(i, x, y) EXPAND_512_BRANCHES(i + 512, x,… argument [all …]
|
D | cfg-big-switch.c | 1 #define EXPAND_2_CASES(i, x, y) CASE(i, x, y); CASE(i + 1, x, y); argument 2 #define EXPAND_4_CASES(i, x, y) EXPAND_2_CASES(i, x, y) EXPAND_2_CASES(i + 2, x, y) argument 3 #define EXPAND_8_CASES(i, x, y) EXPAND_4_CASES(i, x, y) EXPAND_4_CASES(i + 4, x, y) argument 4 #define EXPAND_16_CASES(i, x, y) EXPAND_8_CASES(i, x, y) EXPAND_8_CASES(i + 8, x, y) argument 5 #define EXPAND_32_CASES(i, x, y) EXPAND_16_CASES(i, x, y) EXPAND_16_CASES(i + 16, x, y) argument 6 #define EXPAND_64_CASES(i, x, y) EXPAND_32_CASES(i, x, y) EXPAND_32_CASES(i + 32, x, y) argument 7 #define EXPAND_128_CASES(i, x, y) EXPAND_64_CASES(i, x, y) EXPAND_64_CASES(i + 64, x, y) argument 8 #define EXPAND_256_CASES(i, x, y) EXPAND_128_CASES(i, x, y) EXPAND_128_CASES(i + 128, x, y) argument 9 #define EXPAND_512_CASES(i, x, y) EXPAND_256_CASES(i, x, y) EXPAND_256_CASES(i + 256, x, y) argument 10 #define EXPAND_1024_CASES(i, x, y) EXPAND_512_CASES(i, x, y) EXPAND_512_CASES(i + 512, x, y) argument [all …]
|
D | cfg-long-chain3.c | 1 #define EXPAND_2_BRANCHES(i, x, y) BRANCH(i, x, y); BRANCH(i + 1, x, y); argument 2 #define EXPAND_4_BRANCHES(i, x, y) EXPAND_2_BRANCHES(i, x, y) EXPAND_2_BRANCHES(i + 2, x, y) argument 3 #define EXPAND_8_BRANCHES(i, x, y) EXPAND_4_BRANCHES(i, x, y) EXPAND_4_BRANCHES(i + 4, x, y) argument 4 #define EXPAND_16_BRANCHES(i, x, y) EXPAND_8_BRANCHES(i, x, y) EXPAND_8_BRANCHES(i + 8, x, y) argument 5 #define EXPAND_32_BRANCHES(i, x, y) EXPAND_16_BRANCHES(i, x, y) EXPAND_16_BRANCHES(i + 16, x, y) argument 6 #define EXPAND_64_BRANCHES(i, x, y) EXPAND_32_BRANCHES(i, x, y) EXPAND_32_BRANCHES(i + 32, x, y) argument 7 #define EXPAND_128_BRANCHES(i, x, y) EXPAND_64_BRANCHES(i, x, y) EXPAND_64_BRANCHES(i + 64, x, y) argument 8 #define EXPAND_256_BRANCHES(i, x, y) EXPAND_128_BRANCHES(i, x, y) EXPAND_128_BRANCHES(i + 128, x,… argument 9 #define EXPAND_512_BRANCHES(i, x, y) EXPAND_256_BRANCHES(i, x, y) EXPAND_256_BRANCHES(i + 256, x,… argument 10 #define EXPAND_1024_BRANCHES(i, x, y) EXPAND_512_BRANCHES(i, x, y) EXPAND_512_BRANCHES(i + 512, x,… argument [all …]
|
D | cfg-nested-var-scopes.cpp | 15 #define EXPAND_2_VARS(c, i, x) const X##i var_##c##_##i##0(x), &var_##c##_##i##1 = X##i(x) argument 16 #define EXPAND_4_VARS(c, i, x) EXPAND_2_VARS(c, i##0, x); EXPAND_2_VARS(c, i##1, x) argument 17 #define EXPAND_8_VARS(c, i, x) EXPAND_4_VARS(c, i##0, x); EXPAND_4_VARS(c, i##1, x) argument 18 #define EXPAND_16_VARS(c, i, x) EXPAND_8_VARS(c, i##0, x); EXPAND_8_VARS(c, i##1, x) argument 19 #define EXPAND_32_VARS(c, x) EXPAND_16_VARS(c, 0, x); EXPAND_16_VARS(c, 1, x) argument 21 #define EXPAND_2_INNER_CASES(i, x, y) INNER_CASE(i, x, y); INNER_CASE(i + 1, x, y); argument 22 #define EXPAND_4_INNER_CASES(i, x, y) EXPAND_2_INNER_CASES(i, x, y) EXPAND_2_INNER_CASES(i + … argument 23 #define EXPAND_8_INNER_CASES(i, x, y) EXPAND_4_INNER_CASES(i, x, y) EXPAND_4_INNER_CASES(i + … argument 24 #define EXPAND_16_INNER_CASES(i, x, y) EXPAND_8_INNER_CASES(i, x, y) EXPAND_8_INNER_CASES(i + … argument 25 #define EXPAND_32_INNER_CASES(i, x, y) EXPAND_16_INNER_CASES(i, x, y) EXPAND_16_INNER_CASES(i +… argument [all …]
|
/external/v8/test/mjsunit/compiler/ |
D | binary-ops.js | 29 function or_test0(x, y) { return x | y; } argument 30 function and_test0(x, y) { return x & y; } argument 31 function add_test0(x, y) { return x + y; } argument 39 function or_test1(x, y) { return x | x; } argument 40 function and_test1(x, y) { return x & x; } argument 41 function add_test1(x, y) { return x + x; } argument 49 function or_test2(x, y) { x = y; return x | y; } argument 50 function and_test2(x, y) { x = y; return x & y; } argument 51 function add_test2(x, y) { x = y; return x + y; } argument
|
D | compare.js | 28 function MaxLT(x, y) { argument 33 function MaxLE(x, y) { argument 38 function MaxGE(x, y) { argument 43 function MaxGT(x, y) { argument 50 function TestPrimitive(max, x, y) { argument 79 var x = { valueOf: function() { result += "x"; } }; variable in TestNonPrimitive 80 var y = { valueOf: function() { result += "y"; } }; variable in TestNonPrimitive 91 function CmpX(x) { if (x == x) return 42; } argument 94 function CmpXY(x) { var y = x; if (x == y) return 42; } argument 99 function CmpNullValue(x) { return x == null; } argument [all …]
|
/external/bison/lib/ |
D | unlocked-io.h | 38 # define clearerr(x) clearerr_unlocked (x) argument 40 # define clearerr_unlocked(x) clearerr (x) argument 45 # define feof(x) feof_unlocked (x) argument 47 # define feof_unlocked(x) feof (x) argument 52 # define ferror(x) ferror_unlocked (x) argument 54 # define ferror_unlocked(x) ferror (x) argument 59 # define fflush(x) fflush_unlocked (x) argument 61 # define fflush_unlocked(x) fflush (x) argument 66 # define fgets(x,y,z) fgets_unlocked (x,y,z) argument 68 # define fgets_unlocked(x,y,z) fgets (x,y,z) argument [all …]
|
/external/compiler-rt/lib/builtins/ |
D | int_math.h | 25 # define __has_builtin(x) 0 argument 30 #define crt_isinf(x) __builtin_isinf((x)) argument 31 #define crt_isnan(x) __builtin_isnan((x)) argument 38 # define crt_isfinite(x) __builtin_isfinite((x)) argument 40 # define crt_isfinite(x) \ argument 47 #define crt_copysign(x, y) __builtin_copysign((x), (y)) argument 48 #define crt_copysignf(x, y) __builtin_copysignf((x), (y)) argument 49 #define crt_copysignl(x, y) __builtin_copysignl((x), (y)) argument 51 #define crt_fabs(x) __builtin_fabs((x)) argument 52 #define crt_fabsf(x) __builtin_fabsf((x)) argument [all …]
|
/external/mesa3d/src/mesa/main/ |
D | rastpos.c | 49 rasterpos(GLfloat x, GLfloat y, GLfloat z, GLfloat w) in rasterpos() 70 _mesa_RasterPos2d(GLdouble x, GLdouble y) in _mesa_RasterPos2d() 76 _mesa_RasterPos2f(GLfloat x, GLfloat y) in _mesa_RasterPos2f() 82 _mesa_RasterPos2i(GLint x, GLint y) in _mesa_RasterPos2i() 88 _mesa_RasterPos2s(GLshort x, GLshort y) in _mesa_RasterPos2s() 94 _mesa_RasterPos3d(GLdouble x, GLdouble y, GLdouble z) in _mesa_RasterPos3d() 100 _mesa_RasterPos3f(GLfloat x, GLfloat y, GLfloat z) in _mesa_RasterPos3f() 106 _mesa_RasterPos3i(GLint x, GLint y, GLint z) in _mesa_RasterPos3i() 112 _mesa_RasterPos3s(GLshort x, GLshort y, GLshort z) in _mesa_RasterPos3s() 118 _mesa_RasterPos4d(GLdouble x, GLdouble y, GLdouble z, GLdouble w) in _mesa_RasterPos4d() [all …]
|
/external/clang/test/SemaObjC/ |
D | arc-property-decl-attrs.m | 6 id __unsafe_unretained x; field 7 id __weak y; field 10 @property(strong) id x; property 11 @property(strong) id y; property 17 id __unsafe_unretained x; field 18 id __weak y; field 21 @property(retain) id x; property 22 @property(retain) id y; property 28 id __unsafe_unretained x; field 29 id __weak y; field [all …]
|
/external/clang/test/CodeGenCXX/ |
D | typeid-should-throw.cpp | 12 void f1(A *x) { typeid(false, *x); } in f1() 17 void f2(bool b, A *x, A *y) { typeid(b ? *x : *y); } in f2() 22 void f3(bool b, A *x, A &y) { typeid(b ? *x : y); } in f3() 27 void f4(bool b, A &x, A *y) { typeid(b ? x : *y); } in f4() 32 void f5(volatile A *x) { typeid(*x); } in f5() 37 void f6(A *x) { typeid((B &)*(B *)x); } in f6() 42 void f7(A *x) { typeid((*x)); } in f7() 47 void f8(A *x) { typeid(x[0]); } in f8() 52 void f9(A *x) { typeid(0[x]); } in f9() 57 void f10(A *x, A *y) { typeid(*y ?: *x); } in f10() [all …]
|
/external/v8/src/ |
D | runtime.js | 30 function EQUALS(y) { argument 83 function STRICT_EQUALS(x) { argument 103 function COMPARE(x, ncr) { argument 146 function ADD(x) { argument 166 function STRING_ADD_LEFT(y) { argument 181 function STRING_ADD_RIGHT(y) { argument 197 function SUB(y) { argument 205 function MUL(y) { argument 213 function DIV(y) { argument 221 function MOD(y) { argument [all …]
|
/external/libcxx/include/support/win32/ |
D | math_win32.h | 45 _LIBCPP_ALWAYS_INLINE bool isgreater( double x, double y ) in isgreater() 51 _LIBCPP_ALWAYS_INLINE bool isgreaterequal( double x, double y ) in isgreaterequal() 57 _LIBCPP_ALWAYS_INLINE bool isless( double x, double y ) in isless() 63 _LIBCPP_ALWAYS_INLINE bool islessequal( double x, double y ) in islessequal() 69 _LIBCPP_ALWAYS_INLINE bool islessgreater( double x, double y ) in islessgreater() 75 _LIBCPP_ALWAYS_INLINE bool isunordered( double x, double y ) in isunordered() 98 _LIBCPP_ALWAYS_INLINE float copysignf( float x, float y ) in copysignf() 102 _LIBCPP_ALWAYS_INLINE double copysign( double x, double y ) in copysign() 106 _LIBCPP_ALWAYS_INLINE double copysignl( long double x, long double y ) in copysignl()
|
/external/skia/src/pathops/ |
D | SkPathOpsTypes.h | 215 inline bool zero_or_one(double x) { in zero_or_one() 219 inline bool approximately_zero(double x) { in approximately_zero() 223 inline bool precisely_zero(double x) { in precisely_zero() 227 inline bool precisely_subdivide_zero(double x) { in precisely_subdivide_zero() 231 inline bool approximately_zero(float x) { in approximately_zero() 235 inline bool approximately_zero_cubed(double x) { in approximately_zero_cubed() 239 inline bool approximately_zero_half(double x) { in approximately_zero_half() 243 inline bool approximately_zero_double(double x) { in approximately_zero_double() 247 inline bool approximately_zero_orderable(double x) { in approximately_zero_orderable() 251 inline bool approximately_zero_squared(double x) { in approximately_zero_squared() [all …]
|
/external/pdfium/core/src/fxge/agg/agg23/ |
D | agg_path_storage.h | 39 unsigned vertex(FX_FLOAT* x, FX_FLOAT* y) in vertex() 63 FX_FLOAT x, y; variable 78 FX_FLOAT x, y; variable 93 unsigned vertex(unsigned idx, FX_FLOAT* x, FX_FLOAT* y) const in vertex() 124 inline unsigned path_storage::vertex(FX_FLOAT* x, FX_FLOAT* y) in vertex() 131 inline unsigned path_storage::prev_vertex(FX_FLOAT* x, FX_FLOAT* y) const in prev_vertex() 138 inline unsigned path_storage::last_vertex(FX_FLOAT* x, FX_FLOAT* y) const in last_vertex() 154 inline void path_storage::add_vertex(FX_FLOAT x, FX_FLOAT y, unsigned cmd) in add_vertex() 163 inline void path_storage::move_to(FX_FLOAT x, FX_FLOAT y) in move_to() 167 inline void path_storage::line_to(FX_FLOAT x, FX_FLOAT y) in line_to()
|
/external/srtp/crypto/include/ |
D | crypto_math.h | 175 #define v128_copy(z, x) _v128_copy(z, x) argument 176 #define v128_xor(z, x, y) _v128_xor(z, x, y) argument 177 #define v128_and(z, x, y) _v128_and(z, x, y) argument 178 #define v128_or(z, x, y) _v128_or(z, x, y) argument 179 #define v128_complement(x) _v128_complement(x) argument 180 #define v128_is_eq(x, y) _v128_is_eq(x, y) argument 181 #define v128_xor_eq(x, y) _v128_xor_eq(x, y) argument 182 #define v128_get_bit(x, i) _v128_get_bit(x, i) argument 183 #define v128_set_bit(x, i) _v128_set_bit(x, i) argument 184 #define v128_clear_bit(x, i) _v128_clear_bit(x, i) argument [all …]
|
/external/libcxx/test/std/algorithms/alg.sorting/alg.min.max/ |
D | minmax.pass.cpp | 21 test(const T& a, const T& b, const T& x, const T& y) in test() 31 int x = 0; in main() local 32 int y = 0; in main() local 37 int x = 0; in main() local 38 int y = 1; in main() local 43 int x = 1; in main() local 44 int y = 0; in main() local 52 constexpr static int x = 1; in main() local 53 constexpr static int y = 0; in main() local
|