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

12

/external/chromium_org/third_party/yasm/source/patched-yasm/modules/arch/lc3b/tests/
H A Dlc3b-ea-err.asm0 ld r5, [r6+5]
1 ld r5, [r6+5] label
/external/compiler-rt/test/Unit/ppc/
H A DDD.h7 long double ld; member in union:__anon16758
/external/libffi/testsuite/libffi.call/
H A Dfloat2.c23 long double ld; local
40 ld = 666;
41 ffi_call(&cif, FFI_FN(ldblit), &ld, values);
47 printf ("%Lf, %Lf, %Lf, %Lf\n", ld, ldblit(f), ld - ldblit(f), LDBL_EPSILON);
51 if (ld - ldblit(f) < LDBL_EPSILON)
H A Dfloat.c30 long double ld; local
39 values[3] = &ld;
48 ld = 2.71828182846L;
50 floating (si1, f, d, ld);
54 printf ("%d vs %d\n", (int)rint, floating (si1, f, d, ld));
56 CHECK((int)rint == floating(si1, f, d, ld));
H A Dfloat3.c31 long double ld; local
38 values[2] = &ld;
46 ld = 2.71828182846L;
48 floating_1 (f, d, ld);
52 CHECK(rd - floating_1(f, d, ld) < DBL_EPSILON);
55 values[0] = &ld;
65 floating_2 (ld, d, f);
69 CHECK(rd - floating_2(ld, d, f) < DBL_EPSILON);
/external/clang/test/CodeGen/
H A Dmips64-padding-arg.c6 long double ld; member in struct:__anon15909
H A Dlibcalls.c78 void test_builtins(double d, float f, long double ld) { argument
82 long double atanl_ = atanl(ld);
92 long double atan2l_ = atan2l(ld, ld);
102 long double expl_ = expl(ld);
112 long double logl_ = logl(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.c308 int long_double_int_overflow(long double ld) { argument
325 return ld;
/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/compiler-rt/lib/ppc/
H A DDD.h7 long double ld; member in union:__anon16732
/external/clang/test/Sema/
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/stlport/src/
H A Dcomplex_trig.cpp42 long double ld; member in union:__anon26061
45 # define ldouble_limit ldouble_ulimit.ld
/external/chromium_org/third_party/openssl/openssl/crypto/x509/
H A Dby_dir.c128 BY_DIR *ld; local
131 ld=(BY_DIR *)ctx->method_data;
140 ret=add_cert_dir(ld,dir,X509_FILETYPE_PEM);
142 ret=add_cert_dir(ld,X509_get_default_cert_dir(),
150 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
/external/openssl/crypto/x509/
H A Dby_dir.c128 BY_DIR *ld; local
131 ld=(BY_DIR *)ctx->method_data;
140 ret=add_cert_dir(ld,dir,X509_FILETYPE_PEM);
142 ret=add_cert_dir(ld,X509_get_default_cert_dir(),
150 ret=add_cert_dir(ld,argp,(int)argl);
/external/chromium_org/third_party/icu/source/test/intltest/
H A Dtzfmttst.cpp256 TestTimeRoundTripThread(IntlTest& tlog, LocaleData &ld, int32_t i) argument
257 : log(tlog), data(ld), index(i) {}
/external/libffi/src/powerpc/
H A Dffi_darwin.c642 long double ld; member in union:ldu
779 avalue[i] = &temp_ld.ld;
/external/clang/test/CXX/dcl.decl/dcl.init/dcl.init.list/
H A Dp7-0x.cpp53 long double ld = 1.0; local
56 Agg<char> a6 = {ld}; // expected-error {{ cannot be narrowed }} expected-note {{override}}
71 long double ld = 1.0; local
76 Agg<float> f3 = {ld}; // expected-error {{ cannot be narrowed }} expected-note {{override}}
93 Agg<double> d3 = {ld}; // expected-error {{ cannot be narrowed }} expected-note {{override}}
H A Dp7-cxx11-nowarn.cpp54 long double ld = 1.0; local
57 Agg<char> a6 = {ld}; // expected-warning {{ cannot be narrowed }} expected-note {{override}}
72 long double ld = 1.0; local
77 Agg<float> f3 = {ld}; // expected-warning {{ cannot be narrowed }} expected-note {{override}}
94 Agg<double> d3 = {ld}; // expected-warning {{ cannot be narrowed }} expected-note {{override}}
/external/ipsec-tools/src/racoon/
H A Disakmp_xauth.c800 LDAP *ld = NULL; local
833 res = ldap_initialize(&ld, init);
842 ldap_set_option(ld, LDAP_OPT_PROTOCOL_VERSION,
856 res = ldap_sasl_bind_s(ld,
862 res = ldap_sasl_bind_s(ld,
908 res = ldap_search_ext_s(ld, basedn, scope,
919 ecount = ldap_count_entries(ld, lr);
933 le = ldap_first_entry(ld, lr);
939 userdn = ldap_get_dn(ld, le);
951 bv = ldap_get_values_len(ld, l
1034 LDAP *ld = NULL; local
[all...]
/external/libvorbis/lib/
H A Dsmallft.c44 int ld, ii, ip, is, nq, nr; local
86 ld=0;
92 ld+=l1;
94 argld=(float)ld*argh;
/external/pixman/pixman/
H A Dpixman-arm-simd-asm.h144 pixldst ld, cond, numbytes, %(firstreg+0), %(firstreg+1), %(firstreg+2), %(firstreg+3), base, unaligned variable
/external/speex/libspeex/
H A Dsmallft.c46 int ld, ii, ip, is, nq, nr; local
88 ld=0;
94 ld+=l1;
96 argld=(float)ld*argh;
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/nvc0/codegen/
H A Dnv50_ir_lowering_nvc0.cpp896 Instruction *ld; local
924 ld = bld.mkFetch(i->getDef(0), i->dType,
926 ld->perPatch = i->perPatch;

Completed in 606 milliseconds

12