/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 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() 29 void test4 (int x, struct test4 y) in test4() 34 void test5 (int x, struct test5 y) in test5() 39 void test6 (int x, struct test6 y) in test6() [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 | 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 27 #define EXPAND_2_OUTER_CASES(i, x, y) OUTER_CASE(i, x, y); OUTER_CASE(i + 1, x, y); argument 28 #define EXPAND_4_OUTER_CASES(i, x, y) EXPAND_2_OUTER_CASES(i, x, y) EXPAND_2_OUTER_CASES(i + … argument 29 #define EXPAND_8_OUTER_CASES(i, x, y) EXPAND_4_OUTER_CASES(i, x, y) EXPAND_4_OUTER_CASES(i + … argument 30 #define EXPAND_16_OUTER_CASES(i, x, y) EXPAND_8_OUTER_CASES(i, x, y) EXPAND_8_OUTER_CASES(i + … argument 31 #define EXPAND_32_OUTER_CASES(i, x, y) EXPAND_16_OUTER_CASES(i, x, y) EXPAND_16_OUTER_CASES(i +… argument [all …]
|
/external/v8/test/mjsunit/compiler/ |
D | short-circuit.js | 43 assertEquals(x, function(y) { return y++ || x }(0)); argument 44 assertEquals(1, function(y) { return y++ || x }(1)); argument 47 assertEquals(0, function(y) { return y++ && x }(0)); argument 48 assertEquals(x, function(y) { return y++ && x }(1)); argument 66 assertEquals(x, function (y) { return (y = 0) || x }("?")); argument 67 assertEquals(1, function (y) { return (y = 1) || x }("?")); argument 70 assertEquals(0, function (y) { return (y = 0) && x }("?")); argument 71 assertEquals(x, function (y) { return (y = 1) && x }("?")); argument 86 assertEquals(true, function (y) { return !y || x }(0)); argument 87 assertEquals(x, function (y) { return !y || x }(1)); argument [all …]
|
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
|
/external/clang/test/Analysis/ |
D | string.c | 283 void strcpy_effects(char *x, char *y) { in strcpy_effects() 294 void strcpy_overflow(char *y) { in strcpy_overflow() 300 void strcpy_no_overflow(char *y) { in strcpy_no_overflow() 325 void stpcpy_effect(char *x, char *y) { in stpcpy_effect() 333 void stpcpy_overflow(char *y) { in stpcpy_overflow() 339 void stpcpy_no_overflow(char *y) { in stpcpy_no_overflow() 376 void strcat_effects(char *y) { in strcat_effects() 388 void strcat_overflow_0(char *y) { in strcat_overflow_0() 394 void strcat_overflow_1(char *y) { in strcat_overflow_1() 400 void strcat_overflow_2(char *y) { in strcat_overflow_2() [all …]
|
D | plist-macros.cpp | 10 void noteOnMacro(int y) { in noteOnMacro() 19 void macroIsFirstInFunction(int y) { in macroIsFirstInFunction() 26 int macroInExpression(int *p, int y) {; in macroInExpression() 34 int macroInExpressionNoNote(int *p, int y) {; in macroInExpressionNoNote() 43 int macroWithArgInExpression(int *p, int y) {; in macroWithArgInExpression() 54 int useMultiNoteMacroWithError(int *p, int y) {; in useMultiNoteMacroWithError() 66 int useMultiNote(int *p, int y) {; in useMultiNote()
|
/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 | 7 id __weak y; field 11 @property(strong) id y; property 18 id __weak y; field 22 @property(retain) id y; property 29 id __weak y; field 33 @property(copy) id y; property 41 @property(strong) __weak id y; // expected-error {{strong property 'y' may not also be declared __w… property 47 @property(retain) __weak id y; // expected-error {{strong property 'y' may not also be declared __w… property 53 @property(copy) __weak id y; // expected-error {{strong property 'y' may not also be declared __wea… property 59 @property(assign) __weak id y; // expected-error {{property attributes 'assign' and 'weak' are mutu… property [all …]
|
/external/clang/test/CXX/temp/temp.decls/temp.class.spec/ |
D | p8-1y.cpp | 23 template<typename Inner> static int y; member 24 …template<typename Inner> static int y<Outer>; // expected-warning {{cannot be deduced}} expected-n… member 25 template<typename Inner> static int y<Inner>; // expected-error {{does not specialize}} member 27 template<typename Outer> template<typename Inner> int X<Outer>::y<Outer>; // expected-warning {{can… member in X<Outer> 28 template<typename Outer> template<typename Inner> int X<Outer>::y<Inner>; // expected-error {{does … member in X<Outer> 33 template<typename Inner> static int y; member 35 template<> template<typename Inner> int Y<int>::y<Inner>; // expected-error {{does not specialize}} member in Y<int>
|
/external/clang/test/CodeGenCXX/ |
D | pragma-visibility.cpp | 5 static int y; member 8 int x::y = 10; member in x 13 static int y; member 15 int x2::y = 10; member in x2 21 static int y; member 24 template<> int x4<int>::y = 10; member in x4<int> 39 template<> void x5<int>::y() {} in y() function in x5
|
/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/v8/test/mjsunit/regress/ |
D | regress-1229.js | 32 function foo1(x, y, z) { argument 38 function foo2(x, y, z) { argument 44 function foo3(x, y, z) { argument 56 function f1(y, z) { argument 60 function f2(y, z) { argument 64 function f3(y, z) { argument 69 function g1(z, y) { argument 73 function g2(z, y, x) { argument 77 function g3(z, y, x) { argument 133 function bar(x, y, z) { argument
|
/external/compiler-rt/lib/builtins/ |
D | int_math.h | 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 55 #define crt_fmax(x, y) __builtin_fmax((x), (y)) argument 56 #define crt_fmaxf(x, y) __builtin_fmaxf((x), (y)) argument 57 #define crt_fmaxl(x, y) __builtin_fmaxl((x), (y)) argument 63 #define crt_scalbn(x, y) __builtin_scalbn((x), (y)) argument 64 #define crt_scalbnf(x, y) __builtin_scalbnf((x), (y)) argument 65 #define crt_scalbnl(x, y) __builtin_scalbnl((x), (y)) argument
|
/external/bison/lib/ |
D | unlocked-io.h | 66 # define fgets(x,y,z) fgets_unlocked (x,y,z) argument 68 # define fgets_unlocked(x,y,z) fgets (x,y,z) argument 73 # define fputc(x,y) fputc_unlocked (x,y) argument 75 # define fputc_unlocked(x,y) fputc (x,y) argument 80 # define fputs(x,y) fputs_unlocked (x,y) argument 82 # define fputs_unlocked(x,y) fputs (x,y) argument 87 # define fread(w,x,y,z) fread_unlocked (w,x,y,z) argument 89 # define fread_unlocked(w,x,y,z) fread (w,x,y,z) argument 94 # define fwrite(w,x,y,z) fwrite_unlocked (w,x,y,z) argument 96 # define fwrite_unlocked(w,x,y,z) fwrite (w,x,y,z) argument [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/v8/src/ |
D | runtime.js | 30 function EQUALS(y) { 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 235 function BIT_OR(y) { argument 243 function BIT_AND(y) { argument 265 function BIT_XOR(y) { 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() 32 int y = 0; in main() local 38 int y = 1; in main() local 44 int y = 0; in main() local 53 constexpr static int y = 0; in main() local
|