HomeSort by: relevance | last modified time | path
    Searched defs:low (Results 1 - 25 of 494) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /src/sys/external/bsd/compiler_rt/dist/lib/builtins/
fixunsdfdi.c 24 su_int low = a - (double)high * 4294967296.f; /* high * 0x1p32f; */ local
25 return ((du_int)high << 32) | low;
fixunssfdi.c 25 su_int low = da - (double)high * 4294967296.f; /* high * 0x1p32f; */ local
26 return ((du_int)high << 32) | low;
floatdidf.c 36 union { int64_t x; double d; } low = { .d = twop52 }; local
39 low.x |= a & INT64_C(0x00000000ffffffff);
41 const double result = (high - twop52) + low.d;
102 fb.u.s.low = (su_int)a; /* mantissa-low */
floatundidf.c 38 union { uint64_t x; double d; } low = { .d = twop52 }; local
41 low.x |= a & UINT64_C(0x00000000ffffffff);
43 const double result = (high.d - twop84_plus_twop52) + low.d;
101 fb.u.s.low = (su_int)a; /* mantissa-low */
  /src/sys/external/bsd/compiler_rt/dist/lib/builtins/ppc/
floatditf.c 15 doublebits low = { .d = twop52 }; local
16 low.x |= a & UINT64_C(0x00000000ffffffff); /* 0x1.0p52 + low 32 bits of a. */
21 * high_addend and low.d, and we wish to return their sum
31 result.s.hi = high_addend + low.d;
32 result.s.lo = (high_addend - result.s.hi) + low.d;
floatunditf.c 19 doublebits low = { .d = twop52 }; local
22 low.x |= a & UINT64_C(0x00000000ffffffff); /* 0x1.0p52 + low 32 bits of a */
27 * high_addend and low.d, and we wish to return their sum
36 result.s.hi = high_addend + low.d;
37 result.s.lo = (high_addend - result.s.hi) + low.d;
  /src/external/apache2/llvm/dist/llvm/lib/BinaryFormat/
Magic.cpp 91 unsigned low = Data2MSB ? 17 : 16; local
93 switch (Magic[low]) {
  /src/external/gpl3/binutils/dist/gas/
flonum.h 40 * Exponent is the place value of the low littlenum. E.g.: *
41 * If 0: low points to the units littlenum. *
42 * If 1: low points to the LITTLENUM_RADIX littlenum. *
43 * If -1: low points to the 1/LITTLENUM_RADIX littlenum. *
56 LITTLENUM_TYPE *low; /* low order littlenum of a bignum */ member in struct:FLONUM_STRUCT
59 /* If flonum is 0.0, leader==low-1 */
  /src/external/gpl3/binutils.old/dist/gas/
flonum.h 40 * Exponent is the place value of the low littlenum. E.g.: *
41 * If 0: low points to the units littlenum. *
42 * If 1: low points to the LITTLENUM_RADIX littlenum. *
43 * If -1: low points to the 1/LITTLENUM_RADIX littlenum. *
56 LITTLENUM_TYPE *low; /* low order littlenum of a bignum */ member in struct:FLONUM_STRUCT
59 /* If flonum is 0.0, leader==low-1 */
  /src/lib/libm/src/
e_hypot.c 70 u_int32_t low; local
72 GET_LOW_WORD(low,a);
73 if(((ha&0xfffff)|low)==0) w = a;
74 GET_LOW_WORD(low,b);
75 if(((hb^0x7ff00000)|low)==0) w = b;
85 u_int32_t low; local
86 GET_LOW_WORD(low,b);
87 if((hb|low)==0) return a;
k_tan.c 88 u_int32_t low; local
89 GET_LOW_WORD(low, x);
90 if(((ix | low) | (iy + 1)) == 0)
s_atan.c 93 u_int32_t low; local
94 GET_LOW_WORD(low,x);
96 (ix==0x7ff00000&&(low!=0)))
s_cbrt.c 47 u_int32_t high,low; local
53 GET_LOW_WORD(low,x);
54 if((hx|low)==0)
  /src/external/gpl3/gcc/dist/gcc/config/
sol2-c.cc 86 unsigned HOST_WIDE_INT low; local
95 low = TREE_INT_CST_LOW (x);
97 || (low != 1 && low != 2 && low != 4 && low != 8 && low != 16
98 && low != 32 && low != 64 && low != 128)
    [all...]
  /src/external/gpl3/gcc/dist/gcc/
double-int.h 60 static double_int from_pair (HOST_WIDE_INT high, unsigned HOST_WIDE_INT low);
195 unsigned HOST_WIDE_INT low; member in struct:double_int
211 r.low = (unsigned HOST_WIDE_INT) cst;
234 r.low = cst;
240 double_int::from_pair (HOST_WIDE_INT high, unsigned HOST_WIDE_INT low)
243 r.low = low;
289 return (HOST_WIDE_INT) low;
298 return low;
317 result.low = ~low
    [all...]
hash-table.cc 86 unsigned int low = 0; local
89 while (low != high)
91 unsigned int mid = low + (high - low) / 2;
93 low = mid + 1;
99 gcc_assert (n <= prime_tab[low].prime);
101 return low;
tree-ssa-reassoc.h 36 tree low; member in struct:range_entry
wide-int-bitmask.h 38 uint64_t low, high; member in class:wide_int_bitmask
43 : low (0), high (0)
49 : low (l), high (0)
55 : low (l), high (h)
62 low &= b.low;
70 low |= b.low;
78 return wide_int_bitmask (~low, ~high);
84 return wide_int_bitmask (low | b.low, high | b.high)
    [all...]
  /src/external/gpl3/gcc/dist/libgfortran/runtime/
select_inc.c 31 CHARTYPE *low; member in struct:__anon14425
53 int i, low, high, mid; local
61 if (table->low == NULL && table->high == NULL)
71 /* Try the high and low bounds if present. */
73 if (table->low == NULL)
89 if (compare_string (t->low_len, t->low, selector_len, selector) <= 0)
100 low = -1;
103 while (low + 1 < high)
105 mid = (low + high) / 2;
108 i = compare_string (t->low_len, t->low, selector_len, selector)
    [all...]
  /src/external/gpl3/gcc/dist/libquadmath/math/
hypotq.c 67 uint64_t low; local
71 GET_FLT128_LSW64(low,a);
72 if(((ha&0xffffffffffffLL)|low)==0) w = a;
73 GET_FLT128_LSW64(low,b);
74 if(((hb^0x7fff000000000000LL)|low)==0) w = b;
85 uint64_t low; local
86 GET_FLT128_LSW64(low,b);
87 if((hb|low)==0) return a;
  /src/external/gpl3/gcc.old/dist/gcc/config/
sol2-c.cc 86 unsigned HOST_WIDE_INT low; local
95 low = TREE_INT_CST_LOW (x);
97 || (low != 1 && low != 2 && low != 4 && low != 8 && low != 16
98 && low != 32 && low != 64 && low != 128)
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/
double-int.h 60 static double_int from_pair (HOST_WIDE_INT high, unsigned HOST_WIDE_INT low);
195 unsigned HOST_WIDE_INT low; member in struct:double_int
211 r.low = (unsigned HOST_WIDE_INT) cst;
234 r.low = cst;
240 double_int::from_pair (HOST_WIDE_INT high, unsigned HOST_WIDE_INT low)
243 r.low = low;
289 return (HOST_WIDE_INT) low;
298 return low;
317 result.low = ~low
    [all...]
hash-table.cc 86 unsigned int low = 0; local
89 while (low != high)
91 unsigned int mid = low + (high - low) / 2;
93 low = mid + 1;
99 gcc_assert (n <= prime_tab[low].prime);
101 return low;
tree-ssa-reassoc.h 36 tree low; member in struct:range_entry
wide-int-bitmask.h 38 uint64_t low, high; member in class:wide_int_bitmask
43 : low (0), high (0)
49 : low (l), high (0)
55 : low (l), high (h)
62 low &= b.low;
70 low |= b.low;
78 return wide_int_bitmask (~low, ~high);
84 return wide_int_bitmask (low | b.low, high | b.high)
    [all...]

Completed in 47 milliseconds

1 2 3 4 5 6 7 8 91011>>