Searched defs:ld (Results 1 - 25 of 55) sorted by relevance

123

/external/llvm/test/MC/PowerPC/
H A Dpr24686.s5 ld %r5, p_end - _stext(%r5) label
/external/clang/test/Analysis/
H A Dbuiltin_signbit.cpp7 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 DDD.h7 long double ld; member in union:__anon3379
/external/clang/test/Sema/
H A Dwarn-double-promotion.c7 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 Dformat-strings-scanf.c44 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 Dstdlib_h.pass.cpp39 ldiv_t ld; ((void)ld); local
/external/clang/test/CodeGen/
H A Dmips64-padding-arg.c7 long double ld; member in struct:__anon2189
H A Dlibcalls.c83 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 Dmalign-double-x86-nacl.c13 long double ld; member in struct:st_ld
H A Dbuiltins.c138 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 Dcatch-undef-behavior.c263 int long_double_int_overflow(long double ld) { argument
278 return ld;
/external/clang/test/SemaCXX/
H A Dwarn-float-conversion.cpp19 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 Dfloat.in.h99 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 Dtemplates-left.h38 List<double> ld; local
39 ld.push_back(0.0);
40 return ld.size;
H A Dtemplates-right.h36 List<double> ld; local
37 ld.push_back(0.0);
38 return ld.size;
/external/compiler-rt/lib/builtins/ppc/
H A DDD.h7 long double ld; member in union:__anon3314
/external/compiler-rt/test/ubsan/TestCases/Float/
H A Dcast-overflow.cpp146 volatile long double ld = 300.0; local
148 char c = ld;
/external/toybox/toys/posix/
H A Dprintf.c127 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 Dod.c74 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 Dguasi.c53 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 Dlibaio.c59 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 DAArch64PBQPRegAlloc.cpp187 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 Dfetch.c191 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 Dby_dir.c124 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 Dconstructor-init.cpp29 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

Completed in 3194 milliseconds

123