/external/llvm/test/MC/PowerPC/ |
H A D | pr24686.s | 5 ld %r5, p_end - _stext(%r5) label
|
/external/clang/test/Analysis/ |
H A D | builtin_signbit.cpp | 7 long double ld = -1.0L; variable 17 b = __builtin_signbit(ld); 38 b = __builtin_signbitl(ld);
|
/external/compiler-rt/test/builtins/Unit/ppc/ |
H A D | DD.h | 7 long double ld; member in union:__anon3379
|
/external/clang/test/Sema/ |
H A D | warn-double-promotion.c | 7 float ReturnFloatFromLongDouble(long double ld) { argument 8 return ld; 11 double ReturnDoubleFromLongDouble(long double ld) { argument 12 return ld; 27 void Convert(float f, double d, long double ld) { argument 29 ld = f; //expected-warning{{implicit conversion increases floating-point precision: 'float' to 'long double'}} 30 ld = d; //expected-warning{{implicit conversion increases floating-point precision: 'double' to 'long double'}} 32 f = ld; 33 d = ld;
|
H A D | format-strings-scanf.c | 44 void bad_length_modifiers(char *s, void *p, wchar_t *ws, long double *ld) { argument 48 scanf("%#.2Lf", ld); // expected-warning{{invalid conversion specifier '#'}} 72 fscanf(f, "%ld", i); // expected-warning{{format specifies type 'long *' but the argument has type 'int *'}} 73 sscanf(buf, "%ld", i); // expected-warning{{format specifies type 'long *' but the argument has type 'int *'}} 74 my_scanf("%ld", i); // expected-warning{{format specifies type 'long *' but the argument has type 'int *'}}
|
/external/libcxx/test/std/depr/depr.c.headers/ |
H A D | stdlib_h.pass.cpp | 39 ldiv_t ld; ((void)ld); local
|
/external/clang/test/CodeGen/ |
H A D | mips64-padding-arg.c | 7 long double ld; member in struct:__anon2189
|
H A D | libcalls.c | 83 void test_builtins(double d, float f, long double ld) { argument 87 long double atanl_ = atanl(ld); 97 long double atan2l_ = atan2l(ld, ld); 107 long double expl_ = expl(ld); 117 long double logl_ = logl(ld);
|
H A D | malign-double-x86-nacl.c | 13 long double ld; member in struct:st_ld
|
H A D | builtins.c | 138 long double ld; local 152 ld = __builtin_huge_vall(); // CHECK: x86_fp80 0xK7FFF8000000000000000 155 ld = __builtin_nanl(""); // CHECK: x86_fp80 0xK7FFFC000000000000000 158 ld = __builtin_nanl("0xAE98"); // CHECK: x86_fp80 0xK7FFFC00000000000AE98 161 ld = __builtin_nansl(""); // CHECK: x86_fp80 0xK7FFFA000000000000000 164 ld = __builtin_nansl("0xAE98");// CHECK: x86_fp80 0xK7FFF800000000000AE98
|
H A D | catch-undef-behavior.c | 263 int long_double_int_overflow(long double ld) { argument 278 return ld;
|
/external/clang/test/SemaCXX/ |
H A D | warn-float-conversion.cpp | 19 void Convert(float f, double d, long double ld) { argument 27 b = ld; //expected-warning{{conversion}} 30 c = ld; //expected-warning{{conversion}} 33 i = ld; //expected-warning{{conversion}} 36 l = ld; //expected-warning{{conversion}}
|
/external/bison/lib/ |
H A D | float.in.h | 99 long double ld; member in union:gl_long_double_union 102 # define LDBL_MAX (gl_LDBL_MAX.ld) 152 long double ld; member in union:gl_long_double_union 155 # define LDBL_MAX (gl_LDBL_MAX.ld)
|
/external/clang/test/Modules/Inputs/ |
H A D | templates-left.h | 38 List<double> ld; local 39 ld.push_back(0.0); 40 return ld.size;
|
H A D | templates-right.h | 36 List<double> ld; local 37 ld.push_back(0.0); 38 return ld.size;
|
/external/compiler-rt/lib/builtins/ppc/ |
H A D | DD.h | 7 long double ld; member in union:__anon3314
|
/external/compiler-rt/test/ubsan/TestCases/Float/ |
H A D | cast-overflow.cpp | 146 volatile long double ld = 300.0; local 148 char c = ld;
|
/external/toybox/toys/posix/ |
H A D | printf.c | 127 long double ld = strtold(aa, &end); local 130 printf(toybuf, wp[0], wp[1], ld); 131 } else error_exit("bad %%%c@%ld", c, (long)(f-*toys.optargs));
|
H A D | od.c | 74 long double ld; local 75 union {float f; double d; long double ld;} fdl; member in union:__anon16834 80 ld = fdl.f; 83 ld = fdl.d; 86 ld = fdl.ld; 90 sprintf(buf, "%.*Le", throw, ld);
|
/external/fio/engines/ |
H A D | guasi.c | 53 struct guasi_data *ld = td->io_ops->data; local 58 if (guasi_req_info(ld->reqs[event], &rinf) < 0) { 85 struct guasi_data *ld = td->io_ops->data; local 90 if (min > ld->max_reqs) 91 min = ld->max_reqs; 92 if (max > ld->max_reqs) 93 max = ld->max_reqs; 96 for (n = 0; n < ld->reqs_nr; n++) 97 guasi_req_free(ld->reqs[n]); 100 r = guasi_fetch(ld 118 struct guasi_data *ld = td->io_ops->data; local 151 struct guasi_data *ld = td->io_ops->data; local 201 struct guasi_data *ld = td->io_ops->data; local 219 struct guasi_data *ld = malloc(sizeof(*ld)); local [all...] |
H A D | libaio.c | 59 static inline void ring_inc(struct libaio_data *ld, unsigned int *val, argument 62 if (ld->is_pow2) 63 *val = (*val + add) & (ld->entries - 1); 65 *val = (*val + add) % ld->entries; 84 struct libaio_data *ld = td->io_ops->data; local 88 ev = ld->aio_events + event; 146 struct libaio_data *ld = td->io_ops->data; local 160 && ((struct aio_ring *)(ld->aio_ctx))->magic 162 r = user_io_getevents(ld->aio_ctx, max, 163 ld 182 struct libaio_data *ld = td->io_ops->data; local 239 struct libaio_data *ld = td->io_ops->data; local 309 struct libaio_data *ld = td->io_ops->data; local 316 struct libaio_data *ld = td->io_ops->data; local 330 struct libaio_data *ld; local [all...] |
/external/llvm/lib/Target/AArch64/ |
H A D | AArch64PBQPRegAlloc.cpp | 187 const LiveInterval &ld = LIs.getInterval(Rd); local 189 bool livesOverlap = ld.overlaps(la); 263 const LiveInterval &ld = LIs.getInterval(Rd); local 270 if (ld.overlaps(lr)) {
|
/external/ltrace/sysdeps/linux-gnu/m68k/ |
H A D | fetch.c | 191 long double ld; member in union:__anon13347 198 memcpy (&u.ld, reg, sizeof (u.ld)); 200 u.f = (float)u.ld; 202 u.d = (double)u.ld;
|
/external/boringssl/src/crypto/x509/ |
H A D | by_dir.c | 124 BY_DIR *ld; local 127 ld=(BY_DIR *)ctx->method_data; 136 ret=add_cert_dir(ld,dir,X509_FILETYPE_PEM); 138 ret=add_cert_dir(ld,X509_get_default_cert_dir(), 146 ret=add_cert_dir(ld,argp,(int)argl);
|
/external/clang/test/CodeGenCXX/ |
H A D | constructor-init.cpp | 29 N() : f1(1.314), P(2000), ld(00.1234+f1), M(1000), Q(3000), 37 printf("f1 = %f d1 = %f i1 = %d ld = %f \n", f1,d1,i1, ld); 50 float ld; member in struct:N
|