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

1 2 3 4 5 6 7 8 91011>>

  /src/sys/external/bsd/compiler_rt/dist/lib/builtins/
udivmoddi4.c 45 *rem = n.s.low % d.s.low;
46 return n.s.low / d.s.low;
53 *rem = n.s.low;
57 if (d.s.low == 0)
66 *rem = n.s.high % d.s.low;
67 return n.s.high / d.s.low;
70 if (n.s.low == 0)
79 r.s.low = 0
    [all...]
udivmodti4.c 47 *rem = n.s.low % d.s.low;
48 return n.s.low / d.s.low;
55 *rem = n.s.low;
59 if (d.s.low == 0)
68 *rem = n.s.high % d.s.low;
69 return n.s.high / d.s.low;
72 if (n.s.low == 0)
81 r.s.low = 0
    [all...]
ashlti3.c 32 result.s.low = 0;
33 result.s.high = input.s.low << (b - bits_in_dword);
39 result.s.low = input.s.low << b;
40 result.s.high = (input.s.high << b) | (input.s.low >> (bits_in_dword - b));
multi3.c 28 r.s.low = (a & lower_mask) * (b & lower_mask);
29 du_int t = r.s.low >> bits_in_dword_2;
30 r.s.low &= lower_mask;
32 r.s.low += (t & lower_mask) << bits_in_dword_2;
34 t = r.s.low >> bits_in_dword_2;
35 r.s.low &= lower_mask;
37 r.s.low += (t & lower_mask) << bits_in_dword_2;
53 r.all = __mulddi3(x.s.low, y.s.low);
54 r.s.high += x.s.high * y.s.low + x.s.low * y.s.high
    [all...]
fixunsxfdi.c 38 int e = (fb.u.high.s.low & 0x00007FFF) - 16383;
39 if (e < 0 || (fb.u.high.s.low & 0x00008000))
43 return fb.u.low.all >> (63 - e);
fixunsxfsi.c 37 int e = (fb.u.high.s.low & 0x00007FFF) - 16383;
38 if (e < 0 || (fb.u.high.s.low & 0x00008000))
42 return fb.u.low.s.high >> (31 - e);
fixunsxfti.c 37 int e = (fb.u.high.s.low & 0x00007FFF) - 16383;
38 if (e < 0 || (fb.u.high.s.low & 0x00008000))
42 tu_int r = fb.u.low.all;
int_types.h 39 su_int low; member in struct:__anon692d56bb010a::__anon692d56bb0208
43 su_int low;
54 su_int low; member in struct:__anon692d56bb030a::__anon692d56bb0408
58 su_int low;
80 du_int low; member in struct:__anon692d56bb050a::__anon692d56bb0608
84 du_int low;
95 du_int low; member in struct:__anon692d56bb070a::__anon692d56bb0808
99 du_int low;
107 r.s.low = l;
114 r.s.low = l
135 udwords low; member in struct:__anon692d56bb0b08
    [all...]
cmpdi2.c 33 if (x.s.low < y.s.low)
35 if (x.s.low > y.s.low)
cmpti2.c 35 if (x.s.low < y.s.low)
37 if (x.s.low > y.s.low)
ucmpdi2.c 33 if (x.s.low < y.s.low)
35 if (x.s.low > y.s.low)
ucmpti2.c 35 if (x.s.low < y.s.low)
37 if (x.s.low > y.s.low)
muldi3.c 26 r.s.low = (a & lower_mask) * (b & lower_mask);
27 su_int t = r.s.low >> bits_in_word_2;
28 r.s.low &= lower_mask;
30 r.s.low += (t & lower_mask) << bits_in_word_2;
32 t = r.s.low >> bits_in_word_2;
33 r.s.low &= lower_mask;
35 r.s.low += (t & lower_mask) << bits_in_word_2;
51 r.all = __muldsi3(x.s.low, y.s.low);
52 r.s.high += x.s.high * y.s.low + x.s.low * y.s.high
    [all...]
ctzti2.c 28 const di_int f = -(x.s.low == 0);
29 return __builtin_ctzll((x.s.high & f) | (x.s.low & ~f)) +
ffsdi2.c 26 if (x.s.low == 0)
32 return __builtin_ctz(x.s.low) + 1;
ffsti2.c 28 if (x.s.low == 0)
34 return __builtin_ctzll(x.s.low) + 1;
floatundixf.c 37 fb.u.high.s.low = (e + 16383); /* exponent */
38 fb.u.low.all = a << clz; /* mantissa */
ashldi3.c 30 result.s.low = 0;
31 result.s.high = input.s.low << (b - bits_in_word);
37 result.s.low = input.s.low << b;
38 result.s.high = (input.s.high << b) | (input.s.low >> (bits_in_word - b));
fixxfdi.c 37 int e = (fb.u.high.s.low & 0x00007FFF) - 16383;
42 di_int s = -(si_int)((fb.u.high.s.low & 0x00008000) >> 15);
43 di_int r = fb.u.low.all;
fixxfti.c 37 int e = (fb.u.high.s.low & 0x00007FFF) - 16383;
40 ti_int s = -(si_int)((fb.u.high.s.low & 0x00008000) >> 15);
41 ti_int r = fb.u.low.all;
lshrti3.c 33 result.s.low = input.s.high >> (b - bits_in_dword);
40 result.s.low = (input.s.high << (bits_in_dword - b)) | (input.s.low >> b);
paritydi2.c 24 return __paritysi2(x.s.high ^ x.s.low);
  /src/sys/external/bsd/compiler_rt/dist/lib/builtins/ppc/
floatditf.c 15 doublebits low = { .d = twop52 }; local in function:__floatditf
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 in function:__floatunditf
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/sys/arch/x86/include/
cpufunc.h 103 uint32_t low, high; \
108 : "=a" (low), "=d" (high) \
112 return (low | ((uint64_t)high << 32)); \
363 uint32_t low, high; local in function:rdxcr
367 : "=a" (low), "=d" (high)
371 return (low | ((uint64_t)high << 32));
377 uint32_t low, high; local in function:wrxcr
379 low = val;
384 : "a" (low), "d" (high), "c" (xcr)
444 uint32_t low, high local in function:xsave
460 uint32_t low, high; local in function:xsaveopt
476 uint32_t low, high; local in function:xrstor
519 uint32_t low, high; local in function:xsave64
535 uint32_t low, high; local in function:xsaveopt64
551 uint32_t low, high; local in function:xrstor64
604 uint32_t low, high; local in function:rdmsr
618 uint32_t low, high, pass = OPTERON_MSR_PASSCODE; local in function:rdmsr_locked
634 uint32_t low, high; local in function:wrmsr
649 uint32_t low, high, pass = OPTERON_MSR_PASSCODE; local in function:wrmsr_locked
    [all...]

Completed in 25 milliseconds

1 2 3 4 5 6 7 8 91011>>