HomeSort by relevance Sort by last modified time
    Searched refs:ld (Results 1 - 25 of 1013) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/Sema/
float128-ld-incompatibility.cpp 10 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 * q; // expected-error {{invalid operands to binary expression ('long double' and '__float128')}
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...]
warn-double-promotion.c 7 float ReturnFloatFromLongDouble(long double ld) {
8 return ld;
11 double ReturnDoubleFromLongDouble(long double ld) {
12 return ld;
27 void Assignment(float f, double d, long double ld) {
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) {
    [all...]
  /device/linaro/bootloader/arm-trusted-firmware/plat/arm/board/fvp/include/
plat.ld.S 9 #include <arm_common.ld.S>
  /external/swiftshader/third_party/llvm-7.0/llvm/test/MC/AVR/
inst-ld.s 8 ld r10, X
9 ld r17, X
11 ld r30, Y
12 ld r19, Y
14 ld r10, Z
15 ld r2, Z
19 ld r10, X+
20 ld r17, X+
22 ld r30, Y+
23 ld r19, Y
    [all...]
  /external/u-boot/drivers/misc/
status_led.c 77 led_dev_t *ld; local
80 for (i = 0, ld = led_dev; i < MAX_LED_DEV; i++, ld++)
81 __led_init (ld->mask, ld->state);
87 led_dev_t *ld; local
93 for (i = 0, ld = led_dev; i < MAX_LED_DEV; i++, ld++) {
95 if (ld->state != CONFIG_LED_STATUS_BLINKING)
98 if (++ld->cnt >= ld->period)
108 led_dev_t *ld; local
    [all...]
  /bionic/libm/
signbit.cpp 42 extern "C" int __signbitl(long double ld) {
43 return signbit(ld);
  /external/capstone/suite/MC/Mips/
test_mi10.s.cs 2 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.w $w9, -1024($10
    [all...]
  /external/llvm/test/MC/Mips/msa/
test_mi10.s 3 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.h $w4, -512($5) # encoding: [0x7b,0x00,0x29,0x21
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/test/MC/Mips/msa/
test_mi10.s 3 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.h $w4, -512($5) # encoding: [0x7b,0x00,0x29,0x21
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/leakers/
test_dictself.py 9 ld = LeakyDict()
10 ld.__dict__ = ld
11 del ld
  /external/compiler-rt/test/builtins/Unit/ppc/
DD.h 7 long double ld; member in union:__anon18442
  /external/python/cpython2/Lib/test/leakers/
test_dictself.py 9 ld = LeakyDict()
10 ld.__dict__ = ld
11 del ld
  /external/toolchain-utils/go/chromeos/
push_glibc 19 loader="ld-linux-x86-64.so.2"
21 loader32="ld-linux.so.2"
25 loader="ld-linux-aarch64.so.1"
27 loader32="ld-linux-armhf.so.3"
43 echo "#!/bin/bash" > /tmp/ld.so
44 echo "LD_LIBRARY_PATH=/tmp/glibc/${glibc##*/} exec /tmp/glibc/${glibc##*/}/${loader} \"\$@\"" >> /tmp/ld.so
45 chmod +x /tmp/ld.so
46 target_cp /tmp/ld.so ${target}:/tmp/glibc
47 rm /tmp/ld.so
49 echo "#!/bin/bash" > /tmp/ld.s
    [all...]
  /external/linux-kselftest/tools/testing/selftests/powerpc/include/
gpr_asm.h 36 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 r22,(top_pos - 72)(%r1);
    [all...]
  /external/libffi/testsuite/libffi.call/
float2.c 24 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)
float.c 30 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/
float2.c 24 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)
float.c 30 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/boringssl/src/util/fipstools/delocate/testdata/ppc64le-LoadToR0/
in.s 4 ld 0,bar@toc@l(22)
  /external/elfutils/tests/
run-elflint-self.sh 21 testrun_on_self ${abs_top_builddir}/src/elflint --quiet --gnu-ld
22 testrun_on_self_compressed ${abs_top_builddir}/src/elflint --quiet --gnu-ld
  /external/clang/test/Analysis/
builtin_signbit.cpp 7 long double ld = -1.0L; variable
17 b = __builtin_signbit(ld);
38 b = __builtin_signbitl(ld);
  /external/clang/test/CodeGen/
iamcu-abi.c 10 void foold(long double *ld);
36 long double ld = 2.0; local
37 foold(&ld);
  /external/boringssl/src/util/fipstools/delocate/testdata/ppc64le-Sample2/
out.s 32 ld 12, 0(2)
62 ld 3, -8(1)
64 ld 21, -24(1)
65 ld 3, -16(1)
77 ld 3, -8(1)
79 ld 22, -24(1)
80 ld 3, -16(1)
91 ld 3, -8(1)
93 ld 29, -24(1)
94 ld 3, -16(1
    [all...]
  /bionic/libc/bionic/
fpclassify.cpp 83 extern "C" int __fpclassifyl(long double ld) {
84 return fpclassify(ld);
87 extern "C" int __isinfl(long double ld) {
88 return isinf(ld);
91 extern "C" int __isnanl(long double ld) {
92 return isnan(ld);
95 extern "C" int __isfinitel(long double ld) {
96 return isfinite(ld);
99 extern "C" int __isnormall(long double ld) {
100 return isnormal(ld);
    [all...]
  /external/mesa3d/src/mesa/sparc/
sparc_matrix.h 19 #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 [BASE + ( 5 * 0x4)], M5;
    [all...]

Completed in 2272 milliseconds

1 2 3 4 5 6 7 8 91011>>