Searched refs:low (Results 26 - 50 of 177) sorted by relevance

12345678

/barrelfish-2018-10-04/lib/compiler-rt/builtins/
H A Dparitydi2.c24 return __paritysi2(x.s.high ^ x.s.low);
H A Dparityti2.c26 return __paritydi2(x.s.high ^ x.s.low);
H A Dfixunssfdi.c27 su_int low = da - (double)high * 4294967296.f; /* high * 0x1p32f; */ local
28 return ((du_int)high << 32) | low;
H A Dashrdi3.c34 result.s.low = input.s.high >> (b - bits_in_word);
41 result.s.low = (input.s.high << (bits_in_word - b)) | (input.s.low >> b);
H A Dashrti3.c34 result.s.low = input.s.high >> (b - bits_in_dword);
41 result.s.low = (input.s.high << (bits_in_dword - b)) | (input.s.low >> b);
H A Dfloatdixf.c40 fb.u.high.s.low = ((su_int)s & 0x00008000) | /* sign */
42 fb.u.low.all = a << clz; /* mantissa */
H A Dclzdi2.c27 return __builtin_clz((x.s.high & ~f) | (x.s.low & f)) +
H A Dclzti2.c29 return __builtin_clzll((x.s.high & ~f) | (x.s.low & f)) +
H A Dfloatdidf.c38 union { int64_t x; double d; } low = { .d = twop52 }; local
41 low.x |= a & INT64_C(0x00000000ffffffff);
43 const double result = (high - twop52) + low.d;
104 fb.u.low = (su_int)a; /* mantissa-low */
H A Dfloatundidf.c40 union { uint64_t x; double d; } low = { .d = twop52 }; local
43 low.x |= a & UINT64_C(0x00000000ffffffff);
45 const double result = (high.d - twop84_plus_twop52) + low.d;
103 fb.u.low = (su_int)a; /* mantissa-low */
H A Dfloattixf.c78 fb.u.high.s.low = ((su_int)s & 0x8000) | /* sign */
80 fb.u.low.all = (du_int)a; /* mantissa */
H A Dfloatuntixf.c76 fb.u.high.s.low = (e + 16383); /* exponent */
77 fb.u.low.all = (du_int)a; /* mantissa */
/barrelfish-2018-10-04/usr/eclipseclp/icparc_solvers/
H A Dbitmap.c30 ** This file provides low-level primitives for manipulating bitmaps (e.g.
62 ** low, % lowest word containing non-zero bits
66 ** bits[low],
72 ** bits[0] .. bits[low-1] contain zeroes
74 ** bits[low] contains at least one set bit
80 ** In this module, `low' and `high' in variable names are generally used to
104 /* Word with just low bit set. */
142 ** the low (high) word.
144 #define bitmap_low_to_min(bitmap, low) \
145 ((low) * BP
426 word low, old_low, high, offset; local
539 word low, high, old_high, offset; local
652 word low, high, offset, pos; local
791 word low, high, offset, pos, limit; local
942 word low, high, offset; local
1154 word low, high, offset; local
1372 word low, high, offset; local
1454 word low, high, offset; local
1578 word low, high; local
1612 word low, high; local
1680 word low, high, offset; local
1724 word low; local
1811 word low, high, offset, pos; local
1891 word low, high, offset, pos; local
1966 word low, high, offset, pos; local
2033 word low, high, offset, pos; local
2133 word low, high, offset, pos; local
2176 word low, high, offset, pos, limit; local
2270 word low, high, offset; local
[all...]
/barrelfish-2018-10-04/lib/libc/quad/
H A Dmuldi3.c71 * (2^n + 1) (u0 v0) [u0v0 = low]
89 * (2^n)(high) + (2^n)(mid) + (2^n + 1)(low)
93 * (2^n)(high + mid + low) + low
96 * of 2^n in either one will also vanish. Only `low' need be computed
105 union uu u, v, low, prod; local
141 low.q = __lmulq(u0, v0);
158 prod.ul[H] = high + (negmid ? -mid : mid) + low.ul[L] +
159 low.ul[H];
160 prod.ul[L] = low
189 u_long u1, u0, v1, v0, udiff, vdiff, high, mid, low; local
[all...]
/barrelfish-2018-10-04/lib/msun/src/
H A De_hypot.c71 u_int32_t low; local
74 GET_LOW_WORD(low,a);
75 if(((ha&0xfffff)|low)==0) w = a;
76 GET_LOW_WORD(low,b);
77 if(((hb^0x7ff00000)|low)==0) w = b;
87 u_int32_t low; local
88 GET_LOW_WORD(low,b);
89 if((hb|low)==0) return a;
H A Ds_cbrt.c46 u_int32_t high,low; local
48 EXTRACT_WORDS(hx,low,x);
69 if((hx|low)==0)
/barrelfish-2018-10-04/lib/compiler-rt/test/
H A Ddivti3_test.c38 at.s.high, at.s.low, bt.s.high, bt.s.low, xt.s.high, xt.s.low,
39 expectedt.s.high, expectedt.s.low);
H A Dmodti3_test.c38 at.s.high, at.s.low, bt.s.high, bt.s.low, xt.s.high, xt.s.low,
39 expectedt.s.high, expectedt.s.low);
H A Dsubvti3_test.c42 at.s.high, at.s.low, bt.s.high, bt.s.low, xt.s.high, xt.s.low,
43 expectedt.s.high, expectedt.s.low);
H A Dudivti3_test.c38 at.s.high, at.s.low, bt.s.high, bt.s.low, qt.s.high, qt.s.low,
39 expected_qt.s.high, expected_qt.s.low);
H A Dumodti3_test.c38 at.s.high, at.s.low, bt.s.high, bt.s.low, rt.s.high, rt.s.low,
39 expected_rt.s.high, expected_rt.s.low);
H A Daddvti3_test.c41 at.s.high, at.s.low, bt.s.high, bt.s.low, xt.s.high, xt.s.low,
42 expectedt.s.high, expectedt.s.low);
H A Dabsvti2_test.c42 at.s.high, at.s.low, xt.s.high, xt.s.low,
43 expectedt.s.high, expectedt.s.low);
/barrelfish-2018-10-04/usr/eclipseclp/CPViz/viz/src/ie/ucc/cccc/viz/
H A DVisualizerSequenceTotal.java42 int low = visualState.argumentInt("Low");
63 showCount(out,i,i+subSeqN,posX(i),y,subSeqN,low,high,vars);
69 int low,int high,FullDomain[] vars){
81 drawCount(out,x,y,width,low,high,fixed,possible);
68 showCount(PrintWriter out,int from,int to,double x,double y,double width, int low,int high,FullDomain[] vars) argument
/barrelfish-2018-10-04/kernel/arch/armv7/
H A Da9_gt.c50 uint32_t low, high; local
53 low = cortex_a9_gt_TimerCounterLow_rd(&a9_gt);
56 return (((uint64_t) high) << 32) | ((uint32_t) low);

Completed in 140 milliseconds

12345678