Searched refs:high (Results 1 - 25 of 647) sorted by relevance

1234567891011>>

/netbsd-6-1-5-RELEASE/lib/libm/src/
H A Ds_fabs.c28 u_int32_t high; local
29 GET_HIGH_WORD(high,x);
30 SET_HIGH_WORD(x,high&0x7fffffff);
H A Ds_modf.c40 if(jj0<20) { /* integer part in high x */
47 u_int32_t high; local
49 GET_HIGH_WORD(high,x);
50 INSERT_WORDS(x,high&0x80000000,0); /* return +-0 */
58 u_int32_t high; local
62 GET_HIGH_WORD(high,x);
63 INSERT_WORDS(x,high&0x80000000,0); /* return +-0 */
68 u_int32_t high; local
70 GET_HIGH_WORD(high,x);
71 INSERT_WORDS(x,high
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/gcc.dg/
H A Dpr15825-1.c5 unsigned int foo(long long high, int unsigned_p) argument
8 if (high < 0)
H A D20020607-1.c9 long high; member in struct:cpp_num
14 #define num_eq(num1, num2) (num1.low == num2.low && num1.high == num2.high)
21 lhs.high = 0;
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/testsuite/gcc.dg/
H A Dpr15825-1.c5 unsigned int foo(long long high, int unsigned_p) argument
8 if (high < 0)
H A D20020607-1.c9 long high; member in struct:cpp_num
14 #define num_eq(num1, num2) (num1.low == num2.low && num1.high == num2.high)
21 lhs.high = 0;
/netbsd-6-1-5-RELEASE/external/gpl3/gdb/dist/gdb/testsuite/gdb.base/
H A Dsum.c5 int sum(int *list, int low, int high) argument
7 int sum(list, low, high)
8 int *list, low, high;
12 for (i = low; i <= high; i++)
H A Daverage.c17 void print_average(int *list, int low, int high) argument
19 void print_average(list, low, high)
20 int *list, low, high;
24 total = sum(list, low, high);
25 num_elements = high - low; /* note this is an off-by-one bug */
/netbsd-6-1-5-RELEASE/external/gpl3/gdb/dist/gdb/testsuite/gdb.hp/gdb.compat/
H A Dsum.c5 int sum(int *list, int low, int high) argument
7 int sum(list, low, high)
8 int *list, low, high;
12 for (i = low; i <= high; i++)
H A Daverage.c17 void print_average(int *list, int low, int high) argument
19 void print_average(list, low, high)
20 int *list, low, high;
24 total = sum(list, low, high);
25 num_elements = high - low; /* note this is an off-by-one bug */
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/gcc.c-torture/unsorted/
H A Dbad.c4 struct {signed long low, high;} si; member in struct:longlong::__anon5657
5 struct {unsigned long low, high;} ui; member in struct:longlong::__anon5658
21 uu.si.high = -uu.si.high;
23 uu.si.high = ~uu.si.high;
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/gcc.dg/tree-ssa/
H A Dpr31966.c16 word high = n1 % d, quotient = 0; local
21 word high_top_bit = (high & MP_WORD_TOP_BIT);
23 high <<= 1;
24 high |= (n0 >> (MP_WORD_BITS-1-j)) & 1;
27 if(high_top_bit || high >= d)
29 high -= d;
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/testsuite/gcc.c-torture/unsorted/
H A Dbad.c4 struct {signed long low, high;} si; member in struct:longlong::__anon3896
5 struct {unsigned long low, high;} ui; member in struct:longlong::__anon3897
21 uu.si.high = -uu.si.high;
23 uu.si.high = ~uu.si.high;
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/testsuite/gcc.dg/tree-ssa/
H A Dpr31966.c16 word high = n1 % d, quotient = 0; local
21 word high_top_bit = (high & MP_WORD_TOP_BIT);
23 high <<= 1;
24 high |= (n0 >> (MP_WORD_BITS-1-j)) & 1;
27 if(high_top_bit || high >= d)
29 high -= d;
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/g++.dg/ext/
H A Dcase-range1.C5 const int high = 15; variable
12 case low ... high : return i + 1;
H A Dcase-range3.C5 const int high = 15; variable
12 case low ... high : return i + 1; // { dg-warning "non-standard" }
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/g++.old-deja/g++.brendan/
H A Dparse3.C12 int high; member in class:A
19 if (high==0)
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/testsuite/g++.dg/ext/
H A Dcase-range1.C5 const int high = 15; variable
12 case low ... high : return i + 1;
H A Dcase-range3.C5 const int high = 15; variable
12 case low ... high : return i + 1; // { dg-error "non-standard" }
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/testsuite/g++.old-deja/g++.brendan/
H A Dparse3.C12 int high; member in class:A
19 if (high==0)
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/gcc.c-torture/compile/
H A D981001-1.c3 unsigned short high = 0xb000; variable
8 (high & 0x8000) != (low & 0x8000)
10 && (high & 0x4000) == 0
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/testsuite/gcc.c-torture/compile/
H A D981001-1.c3 unsigned short high = 0xb000; variable
8 (high & 0x8000) != (low & 0x8000)
10 && (high & 0x4000) == 0
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/config/picochip/libgccExtras/
H A Dashrsi3.c33 UHItype low, high; member in struct:USIstruct
54 /* Shift low and high words by the count. The high word must use
60 /* Shift low and high parts by the count. The upper word now has
63 result.s.high = value.s.high >> count;
71 wordOfSignBits = __builtin_asri(value.s.high, 15);
73 result.s.high |= signWord;
78 temp = value.s.high << reverseCount;
87 result.s.low = value.s.high >> coun
[all...]
H A Dlshrsi3.c33 UHItype low, high; member in struct:USIstruct
52 /* Shift low and high words by the count. */
54 result.s.high = value.s.high >> count;
60 temp = value.s.high << (16 - count);
69 result.s.low = value.s.high >> count;
70 result.s.high = 0;
/netbsd-6-1-5-RELEASE/external/gpl3/binutils/dist/gas/testsuite/gas/m32r/
H A Duppercase.s7 high: label
8 seth r0,#HIGH(high)

Completed in 162 milliseconds

1234567891011>>