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

1 2 3 4 5

  /src/common/lib/libc/arch/arm/quad/
__aeabi_ulcmp.c 44 if (aa.ul[H] < bb.ul[H])
46 if (aa.ul[H] > bb.ul[H])
49 if (aa.ul[L] < bb.ul[L])
51 if (aa.ul[L] > bb.ul[L])
  /src/sys/arch/alpha/stand/common/
putulong.c 30 putulong(unsigned long ul)
32 char buf[sizeof (ul) * 2], *bp;
34 for (bp = buf; ul != 0; ul >>= 4)
35 *bp++ = hexdigits[ul & 0xf];
  /src/tests/usr.bin/xlint/lint1/
expr.c 15 expr_cond_cvt(unsigned long ul)
20 return bits.u32 < ul ? bits.u32 : ul;
msg_118.c 12 unsigned long ul; variable in typeref:typename:unsigned long
22 si <<= ul;
29 si = si << ul;
38 si >>= ul;
46 si = si >> ul;
msg_118_ilp32.c 12 unsigned long ul; variable in typeref:typename:unsigned long
25 si <<= ul;
30 si = si << ul;
39 si >>= ul;
46 si = si >> ul;
  /src/common/lib/libc/quad/
adddi3.c 59 sum.ul[L] = aa.ul[L] + bb.ul[L];
60 sum.ul[H] = aa.ul[H] + bb.ul[H] + (sum.ul[L] < bb.ul[L]);
subdi3.c 58 diff.ul[L] = aa.ul[L] - bb.ul[L];
59 diff.ul[H] = aa.ul[H] - bb.ul[H] - (diff.ul[L] > aa.ul[L]);
ucmpdi2.c 58 return (aa.ul[H] < bb.ul[H] ? 0 : aa.ul[H] > bb.ul[H] ? 2 :
59 aa.ul[L] < bb.ul[L] ? 0 : aa.ul[L] > bb.ul[L] ? 2 : 1);
anddi3.c 57 aa.ul[0] &= bb.ul[0];
58 aa.ul[1] &= bb.ul[1];
iordi3.c 57 aa.ul[0] |= bb.ul[0];
58 aa.ul[1] |= bb.ul[1];
notdi2.c 57 aa.ul[0] = ~aa.ul[0];
58 aa.ul[1] = ~aa.ul[1];
xordi3.c 57 aa.ul[0] ^= bb.ul[0];
58 aa.ul[1] ^= bb.ul[1];
ashldi3.c 60 aa.ul[H] = aa.ul[L] << (unsigned int)(shift - INT_BITS);
61 aa.ul[L] = 0;
63 aa.ul[H] = (aa.ul[H] << shift) |
64 (aa.ul[L] >> (INT_BITS - shift));
65 aa.ul[L] <<= shift;
lshldi3.c 62 aa.ul[H] = aa.ul[L] << (unsigned int)(shift - INT_BITS);
63 aa.ul[L] = 0;
65 aa.ul[H] = (aa.ul[H] << shift) |
66 (aa.ul[L] >> (INT_BITS - shift));
67 aa.ul[L] <<= shift;
lshrdi3.c 61 aa.ul[L] = aa.ul[H] >> (shift - INT_BITS);
62 aa.ul[H] = 0;
64 aa.ul[L] = (aa.ul[L] >> shift) |
65 (aa.ul[H] << (unsigned int)(INT_BITS - shift));
66 aa.ul[H] >>= shift;
negdi2.c 56 res.ul[L] = -aa.ul[L];
57 res.ul[H] = -aa.ul[H] - (res.ul[L] > 0);
cmpdi2.c 60 aa.ul[L] < bb.ul[L] ? 0 : aa.ul[L] > bb.ul[L] ? 2 : 1);
ashrdi3.c 73 aa.ul[L] = aa.sl[H] >> (shift - INT_BITS);
74 aa.ul[H] = s;
76 aa.ul[L] = (aa.ul[L] >> shift) |
77 (aa.ul[H] << (unsigned int)(INT_BITS - shift));
  /src/lib/libc/quad/
floatundisf_ieee754.c 68 if (u.ul[H] == 0) {
69 l = __builtin_clz(u.ul[L]);
70 frac = u.ul[L] << (l + 1); /* clear implicit bit */
73 l = __builtin_clz(u.ul[H]);
74 frac = u.ul[H] << (l + 1); /* clear implicit bit */
75 frac |= u.ul[L] >> (32 - (l + 1));
floatundidf.c 62 d = (double)u.ul[H] * (((int)1 << (unsigned int)(INT_BITS - 2)) * 4.0);
63 d += u.ul[L];
floatundisf.c 63 * Now u.ul[H] has the factor of 2^32 (or whatever) and u.ul[L]
71 f = (double)u.ul[H] * (((int)1 << (unsigned int)(INT_BITS - 2)) * 4.0);
72 f += u.ul[L];
fixunssfdi.c 94 t.ul[H] = (unsigned int)toppart;
95 t.ul[L] = 0;
98 t.ul[H]--;
102 t.ul[H]++;
105 t.ul[L] = (u_int)x;
  /src/usr.bin/ul/
Makefile 4 PROG= ul
  /src/sys/external/bsd/drm2/include/linux/
fb.h 39 #define PICOS2KHZ(PICOS) (1000000000ul / (PICOS))
40 #define KHZ2PICOS(KHZ) (1000000000ul / (KHZ))
  /src/tests/lib/libc/
t_convfp.c 43 #define ULONG_TESTVALUE (LONG_MAX+42UL)
77 unsigned long ul; local in function:ATF_TC_BODY
82 if (sizeof(d) > sizeof(ul)) {
84 ul = (unsigned long)d;
86 } else if (sizeof(dt) > sizeof(ul)) {
88 ul = (unsigned long)dt;
93 sizeof(ul), sizeof(d), sizeof(dt));
97 if (ul != ULONG_TESTVALUE)
99 ul, ul, ULONG_TESTVALUE, ULONG_TESTVALUE)
    [all...]

Completed in 17 milliseconds

1 2 3 4 5