Searched refs:ld (Results 1 - 25 of 543) sorted by relevance

1234567891011>>

/external/clang/test/Sema/
H A Dfloat128-ld-incompatibility.cpp10 long double ld{qf()}; // expected-error {{cannot initialize a variable of type 'long double' with an rvalue of type '__float128'}}
13 auto test1(__float128 q, long double ld) -> decltype(q + ld) { // expected-error {{invalid operands to binary expression ('__float128' and 'long double')}}
14 return q + ld; // expected-error {{invalid operands to binary expression ('__float128' and 'long double')}}
22 long double ld; local
25 ld + q; // expected-error {{invalid operands to binary expression ('long double' and '__float128')}}
26 q + ld; // expected-error {{invalid operands to binary expression ('__float128' and 'long double')}} local
27 ld - q; // expected-error {{invalid operands to binary expression ('long double' and '__float128')}}
28 q - ld; // expected-error {{invalid operands to binary expression ('__float128' and 'long double')}}
29 ld *
30 q * ld; // expected-error {{invalid operands to binary expression ('__float128' and 'long double')}} local
32 q / ld; // expected-error {{invalid operands to binary expression ('__float128' and 'long double')}} local
[all...]
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 Assignment(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;
45 void BinaryOperator(float f, double d, long double ld) { argument
54 MultiplicationAssignment(float f, double d, long double ld) argument
67 ConditionalOperator(float f, double d, long double ld, int i) argument
[all...]
/external/python/cpython2/Lib/test/leakers/
H A Dtest_dictself.py9 ld = LeakyDict()
10 ld.__dict__ = ld
11 del ld
/external/valgrind/none/tests/ppc32/
H A Dldstrev.stdout.exp0 ld be16 0x00001234
2 ld le16 0x00003412
3 ld be32 0x12345678
4 ld le32 0x78563412
/external/capstone/suite/MC/Mips/
H A Dtest_mi10.s.cs2 0x7a,0x00,0x08,0x20 = ld.b $w0, -512($1)
3 0x78,0x00,0x10,0x60 = ld.b $w1, 0($2)
4 0x79,0xff,0x18,0xa0 = ld.b $w2, 511($3)
5 0x7a,0x00,0x20,0xe1 = ld.h $w3, -1024($4)
6 0x7b,0x00,0x29,0x21 = ld.h $w4, -512($5)
7 0x78,0x00,0x31,0x61 = ld.h $w5, 0($6)
8 0x79,0x00,0x39,0xa1 = ld.h $w6, 512($7)
9 0x79,0xff,0x41,0xe1 = ld.h $w7, 1022($8)
10 0x7a,0x00,0x4a,0x22 = ld.w $w8, -2048($9)
11 0x7b,0x00,0x52,0x62 = ld
[all...]
/external/llvm/test/MC/Mips/msa/
H A Dtest_mi10.s3 ld.b $w0, -512($1) # CHECK: ld.b $w0, -512($1) # encoding: [0x7a,0x00,0x08,0x20]
4 ld.b $w1, 0($2) # CHECK: ld.b $w1, 0($2) # encoding: [0x78,0x00,0x10,0x60]
5 ld.b $w2, 511($3) # CHECK: ld.b $w2, 511($3) # encoding: [0x79,0xff,0x18,0xa0]
7 ld.h $w3, -1024($4) # CHECK: ld.h $w3, -1024($4) # encoding: [0x7a,0x00,0x20,0xe1]
8 ld.h $w4, -512($5) # CHECK: ld
[all...]
/external/compiler-rt/test/builtins/Unit/ppc/
H A DDD.h7 long double ld; member in union:__anon3875
/external/linux-kselftest/tools/testing/selftests/powerpc/include/
H A Dgpr_asm.h36 ld r31,(top_pos)(%r1); \
37 ld r30,(top_pos - 8)(%r1); \
38 ld r29,(top_pos - 16)(%r1); \
39 ld r28,(top_pos - 24)(%r1); \
40 ld r27,(top_pos - 32)(%r1); \
41 ld r26,(top_pos - 40)(%r1); \
42 ld r25,(top_pos - 48)(%r1); \
43 ld r24,(top_pos - 56)(%r1); \
44 ld r23,(top_pos - 64)(%r1); \
45 ld r2
[all...]
/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.c61 static inline void ring_inc(struct libaio_data *ld, unsigned int *val, argument
64 if (ld->is_pow2)
65 *val = (*val + add) & (ld->entries - 1);
67 *val = (*val + add) % ld->entries;
86 struct libaio_data *ld = td->io_ops_data; local
90 ev = ld->aio_events + event;
148 struct libaio_data *ld = td->io_ops_data; local
162 && ((struct aio_ring *)(ld->aio_ctx))->magic
164 r = user_io_getevents(ld->aio_ctx, max,
165 ld
184 struct libaio_data *ld = td->io_ops_data; local
241 struct libaio_data *ld = td->io_ops_data; local
311 struct libaio_data *ld = td->io_ops_data; local
318 struct libaio_data *ld = td->io_ops_data; local
339 struct libaio_data *ld; local
[all...]
/external/libffi/testsuite/libffi.call/
H A Dfloat2.c24 long double ld; local
41 ld = 666;
42 ffi_call(&cif, FFI_FN(ldblit), &ld, values);
48 printf ("%Lf, %Lf, %Lf, %Lf\n", ld, ldblit(f), ld - ldblit(f), LDBL_EPSILON);
52 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));
/external/python/cpython2/Modules/_ctypes/libffi/testsuite/libffi.call/
H A Dfloat2.c24 long double ld; local
41 ld = 666;
42 ffi_call(&cif, FFI_FN(ldblit), &ld, values);
48 printf ("%Lf, %Lf, %Lf, %Lf\n", ld, ldblit(f), ld - ldblit(f), LDBL_EPSILON);
52 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));
/external/python/cpython3/Modules/_ctypes/libffi/testsuite/libffi.call/
H A Dfloat2.c24 long double ld; local
41 ld = 666;
42 ffi_call(&cif, FFI_FN(ldblit), &ld, values);
48 printf ("%Lf, %Lf, %Lf, %Lf\n", ld, ldblit(f), ld - ldblit(f), LDBL_EPSILON);
52 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));
/external/elfutils/tests/
H A Drun-elflint-self.sh21 testrun_on_self ${abs_top_builddir}/src/elflint --quiet --gnu-ld
/external/boringssl/src/util/fipstools/testdata/ppc64le-LoadToR0/
H A Din.s4 ld 0,bar@toc@l(22)
/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/clang/test/CodeGen/
H A Diamcu-abi.c10 void foold(long double *ld);
36 long double ld = 2.0; local
37 foold(&ld);
/external/valgrind/coregrind/m_dispatch/
H A Ddispatch-mips64-linux.S113 ld $4, 160($29)
120 ld $31, 72($29)
123 ld $16, 80($29)
124 ld $17, 88($29)
125 ld $18, 96($29)
126 ld $19, 104($29)
127 ld $20, 112($29)
128 ld $21, 120($29)
129 ld $22, 128($29)
130 ld
[all...]
/external/valgrind/coregrind/m_syswrap/
H A Dsyscall-mips64-linux.S94 ld $5, 8($29) /* guest_state */
95 ld $4, OFFSET_mips64_r4($5) /* a0 */
97 ld $6, OFFSET_mips64_r6($5) /* a2 */
98 ld $7, OFFSET_mips64_r7($5) /* a3 */
99 ld $8, OFFSET_mips64_r8($5) /* a4 */
100 ld $9, OFFSET_mips64_r9($5) /* a5 */
102 ld $5, OFFSET_mips64_r5($5) /* a1 */
103 ld $2, 0($29) /* syscallno */
108 3: ld $5, 8($29) /* guest_state */
114 ld
[all...]
H A Dsyscall-ppc64be-linux.S109 ld 3,OFFSET_ppc64_GPR3(30)
110 ld 4,OFFSET_ppc64_GPR4(30)
111 ld 5,OFFSET_ppc64_GPR5(30)
112 ld 6,OFFSET_ppc64_GPR6(30)
113 ld 7,OFFSET_ppc64_GPR7(30)
114 ld 8,OFFSET_ppc64_GPR8(30)
138 5: ld 28,48(1)
139 ld 29,56(1)
140 ld 30,64(1)
141 ld 3
[all...]
/external/boringssl/src/util/fipstools/testdata/ppc64le-Sample2/
H A Dout.s30 ld 12, 0(2)
60 ld 3, -8(1)
62 ld 21, -24(1)
63 ld 3, -16(1)
75 ld 3, -8(1)
77 ld 22, -24(1)
78 ld 3, -16(1)
89 ld 3, -8(1)
91 ld 29, -24(1)
92 ld
[all...]
/external/mesa3d/src/mesa/sparc/
H A Dsparc_matrix.h19 #define LDPTR ld
63 ld [BASE + ( 0 * 0x4)], M0; \
68 ld [BASE + ( 2 * 0x4)], M2; \
70 ld [BASE + (14 * 0x4)], M14
73 ld [BASE + ( 0 * 0x4)], M0; \
75 ld [BASE + (14 * 0x4)], M14
78 ld [BASE + ( 0 * 0x4)], M0; \
79 ld [BASE + (14 * 0x4)], M14
90 ld [BASE + ( 0 * 0x4)], M0; \
91 ld [BAS
[all...]

Completed in 757 milliseconds

1234567891011>>