Searched refs:tmp (Results 1 - 25 of 1214) sorted by relevance

1234567891011>>

/haiku-buildtools/gcc/gcc/testsuite/gfortran.dg/
H A Ddo_while_1.f905 real :: tmp variable in program:main
6 tmp = 0.
7 do while (abs(tmp) < 10. .and. abs(tmp) < 20.)
8 tmp = tmp + 1.
H A Darrayio_10.f907 real(kind=8), dimension(3) :: tmp variable in program:pr29563
8 read(arraydata,*,iostat=iostat)tmp
9 if (tmp(1).ne.1123.0) call abort()
10 if (tmp(2).ne.456.0) call abort()
11 if (tmp(3).ne.789.0) call abort()
H A Darrayio_9.f907 real(kind=8), dimension(3,3) :: tmp variable in program:pr29563
8 tmp = 0.0
9 read(arraydata,*,iostat=iostat)((tmp(i,j),j=1,3),i=1,3)
10 if (tmp(3,3)-9.0.gt.0.0000001) call abort()
H A Dstring_compare_1.f9014 LOGICAL :: tmp(1), tmp2(1) variable in program:main
16 tmp = (exprs(1:1)(1:1) == al1)
19 PRINT '(L1)', tmp
22 IF (.NOT. tmp(1) .OR. .NOT. tmp2(1)) THEN
/haiku-buildtools/gcc/gcc/testsuite/gcc.c-torture/compile/
H A D20000403-2.c4 long long tmp; local
5 (( tmp ) = (long long)( tmp ) >> ( 32 )) ;
H A Dpr26725.c8 unsigned int *tmp; local
9 while (tmp = (numptr ? &numptr->num : 0), (tmp ? *tmp : 0) > 0)
11 tmp = (numptr ? &numptr->num : 0);
12 (void) (*tmp ? 0 : notice (x));
13 doit (tmp);
H A D941014-1.c6 unsigned char tmp; local
9 tmp = (wch>>(unsigned int)(length * mult));
10 *to++ = (unsigned char)tmp;
/haiku-buildtools/gcc/gcc/testsuite/gcc.target/i386/
H A Dpr42589.c9 unsigned long long tmp; local
10 tmp = *p;
11 tmp = (tmp >> 32) | (tmp << 32);
12 tmp = (((tmp & 0xff00ff00ff00ff00ULL) >> 8)
13 | ((tmp & 71777214294589695ULL) << 8));
14 *p = (((tmp & 0xffff0000ffff0000ULL) >> 16)
15 | ((tmp
[all...]
/haiku-buildtools/gcc/gcc/testsuite/gcc.dg/
H A Duninit-18.c6 char *tmp; local
9 tmp = baz;
13 tmp[5] = 7; /* { dg-bogus "may be used uninitialized" } */
16 tmp[11] = 15; /* { dg-bogus "may be used uninitialized" } */
19 tmp = 0;
23 return tmp; /* { dg-bogus "may be used uninitialized" } */
H A Dpr17581-1.c9 unsigned long long tmp = 0; local
13 tmp |= 1;
14 tmp |= 2;
15 tmp |= 8;
21 return (int)tmp;
H A Dpr20017.c15 const int *tmp; local
22 tmp = buf;
23 switch (*tmp)
/haiku-buildtools/binutils/gas/testsuite/lib/
H A Ddoboth6 rm tmp.0 > /dev/null 2>&1
7 ln -s $x tmp.0
8 $* tmp.0 > tmp.1
10 rm tmp.0
11 ln -s $y tmp.0
12 $* tmp.0 > tmp.2
14 rm tmp.0
16 diff -c tmp
[all...]
/haiku-buildtools/legacy/binutils/gas/testsuite/lib/
H A Ddoboth6 rm tmp.0 > /dev/null 2>&1
7 ln -s $x tmp.0
8 $* tmp.0 > tmp.1
10 rm tmp.0
11 ln -s $y tmp.0
12 $* tmp.0 > tmp.2
14 rm tmp.0
16 diff -c tmp
[all...]
/haiku-buildtools/gcc/gcc/testsuite/gcc.dg/tree-ssa/
H A Dvrp42.c6 int tmp; local
12 tmp = 1;
15 tmp = 2;
18 return tmp; /* { dg-bogus "used uninitialized" } */
/haiku-buildtools/gcc/gcc/testsuite/g++.dg/opt/
H A Dasm1.C7 union { double d; char c[sizeof(double)]; } tmp; local
8 __asm__ ("" : "=m" (tmp.d)); // { dg-bogus "not directly addressable" "double sized union element should be addressible" { xfail xstormy16-*-* } }
/haiku-buildtools/gcc/gcc/testsuite/gcc.target/arm/
H A Dwmul-12.c8 long long tmp = (long long)*b * *c; local
9 return 10 + tmp;
/haiku-buildtools/gcc/gcc/testsuite/gcc.target/ia64/
H A Dpr43897.c8 float tmp; local
10 __asm__ __volatile__ ("frcpa.s0 %0,p1=f0,f0":"=f" (tmp)::"p1");
/haiku-buildtools/gcc/gcc/testsuite/gcc.dg/torture/stackalign/
H A Dpr16660-1.c10 unsigned long tmp[4] __attribute__((aligned(64))); local
11 check (&tmp, 64);
/haiku-buildtools/gcc/gcc/testsuite/c-c++-common/asan/
H A Dasan-interface-1.c8 char tmp; local
9 if (__asan_address_is_poisoned((volatile char *)&tmp + 1))
/haiku-buildtools/gcc/libstdc++-v3/scripts/
H A Dcreate_testsuite_files26 tmp="${TMPDIR:-/tmp}/ctt$$"
36 find $dlist "(" -type f -o -type l ")" -name "*.cc" -print > $tmp.01
37 find $dlist "(" -type f -o -type l ")" -name "*.c" -print > $tmp.02
38 cat $tmp.01 $tmp.02 | sort > $tmp.1
39 if test ! -s "$tmp.1"; then
44 grep _xin $tmp.1 > $tests_file_inter
45 grep -v _xin $tmp
[all...]
/haiku-buildtools/gcc/gcc/testsuite/gcc.c-torture/execute/
H A D950503-1.c3 int tmp; local
6 tmp = 16;
8 utmp1 = (~((unsigned long long) 0)) >> tmp;
H A Dbf64-1.c2 struct tmp struct
14 struct tmp
15 sub (struct tmp tmp) argument
17 tmp.field |= 0x0008765412345678LL;
18 return tmp;
30 struct tmp tmp = {0x123, 0xFFF000FFF000FLL}; local
33 tmp = sub (tmp);
[all...]
H A D941202-1.c11 int *tmp; local
13 tmp = (int *) alloca (sizeof (i));
14 *tmp = i;
15 g (*tmp, 0);
/haiku-buildtools/gcc/libstdc++-v3/testsuite/18_support/
H A Dnew_delete_placement.cc30 void* tmp = 0; local
31 operator delete(pc, tmp);
32 operator delete[](pa, tmp);
/haiku-buildtools/gcc/gcc/testsuite/gcc.target/i386/mpx/
H A Dstatic-string-1-nov.c16 char *tmp = 0; local
18 tmp = ptr;
19 return tmp[0] + tmp[4];

Completed in 331 milliseconds

1234567891011>>