Searched refs:ul (Results 1 - 25 of 420) sorted by relevance

1234567891011>>

/netbsd-current/external/gpl3/gcc.old/dist/libstdc++-v3/src/shared/
H A Dhashtable-aux.cc30 2ul, 3ul, 5ul, 7ul, 11ul, 13ul, 17ul, 19ul, 23ul, 29ul, 3
[all...]
/netbsd-current/external/gpl3/gcc/dist/libstdc++-v3/src/shared/
H A Dhashtable-aux.cc30 2ul, 3ul, 5ul, 7ul, 11ul, 13ul, 17ul, 19ul, 23ul, 29ul, 3
[all...]
/netbsd-current/common/lib/libc/arch/arm/quad/
H A D__aeabi_ulcmp.c44 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])
/netbsd-current/external/lgpl3/gmp/dist/mpz/
H A Dcmpabs_ui.c39 mp_limb_t ul; variable
51 ul = up[0];
52 if (ul > v_digit)
54 if (ul < v_digit)
64 ul = up[0] + (up[1] << GMP_NUMB_BITS);
66 if (ul > v_digit)
68 if (ul < v_digit)
H A Dcmp_ui.c39 mp_limb_t ul; variable
49 ul = up[0];
50 if (ul > v_digit)
52 if (ul < v_digit)
62 ul = up[0] + (up[1] << GMP_NUMB_BITS);
67 if (ul > v_digit)
69 if (ul < v_digit)
/netbsd-current/sys/arch/alpha/stand/common/
H A Dputulong.c30 putulong(unsigned long ul) argument
32 char buf[sizeof (ul) * 2], *bp;
34 for (bp = buf; ul != 0; ul >>= 4)
35 *bp++ = hexdigits[ul & 0xf];
/netbsd-current/external/lgpl3/gmp/dist/mpn/generic/
H A Dcom.c39 mp_limb_t ul; local
41 ul = *up++;
42 *rp++ = ~ul & GMP_NUMB_MASK;
/netbsd-current/external/gpl3/gcc.old/dist/libstdc++-v3/include/ext/pb_ds/detail/thin_heap_/
H A Dthin_heap_.hpp249 /* 0 */ 0ul,
250 /* 1 */ 1ul,
251 /* 2 */ 1ul,
252 /* 3 */ 2ul,
253 /* 4 */ 4ul,
254 /* 5 */ 6ul,
255 /* 6 */ 11ul,
256 /* 7 */ 17ul,
257 /* 8 */ 29ul,
258 /* 9 */ 46ul,
[all...]
/netbsd-current/external/gpl3/gcc/dist/libstdc++-v3/include/ext/pb_ds/detail/thin_heap_/
H A Dthin_heap_.hpp249 /* 0 */ 0ul,
250 /* 1 */ 1ul,
251 /* 2 */ 1ul,
252 /* 3 */ 2ul,
253 /* 4 */ 4ul,
254 /* 5 */ 6ul,
255 /* 6 */ 11ul,
256 /* 7 */ 17ul,
257 /* 8 */ 29ul,
258 /* 9 */ 46ul,
[all...]
/netbsd-current/common/lib/libc/quad/
H A Dadddi3.c59 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]);
H A Dsubdi3.c58 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]);
H A Ducmpdi2.c58 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);
H A Danddi3.c57 aa.ul[0] &= bb.ul[0];
58 aa.ul[1] &= bb.ul[1];
H A Diordi3.c57 aa.ul[0] |= bb.ul[0];
58 aa.ul[1] |= bb.ul[1];
H A Dnotdi2.c57 aa.ul[0] = ~aa.ul[0];
58 aa.ul[1] = ~aa.ul[1];
H A Dxordi3.c57 aa.ul[0] ^= bb.ul[0];
58 aa.ul[1] ^= bb.ul[1];
H A Dashldi3.c60 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;
H A Dlshldi3.c62 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;
H A Dlshrdi3.c61 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;
H A Dnegdi2.c56 res.ul[L] = -aa.ul[L];
57 res.ul[H] = -aa.ul[H] - (res.ul[L] > 0);
/netbsd-current/external/gpl3/gcc.old/dist/libstdc++-v3/include/ext/pb_ds/detail/resize_policy/
H A Dhash_prime_size_policy_imp.hpp59 /* 0 */ 5ul,
60 /* 1 */ 11ul,
61 /* 2 */ 23ul,
62 /* 3 */ 47ul,
63 /* 4 */ 97ul,
64 /* 5 */ 199ul,
65 /* 6 */ 409ul,
66 /* 7 */ 823ul,
67 /* 8 */ 1741ul,
68 /* 9 */ 3469ul,
[all...]
/netbsd-current/external/gpl3/gcc/dist/libstdc++-v3/include/ext/pb_ds/detail/resize_policy/
H A Dhash_prime_size_policy_imp.hpp67 /* 0 */ 5ul,
68 /* 1 */ 11ul,
69 /* 2 */ 23ul,
70 /* 3 */ 47ul,
71 /* 4 */ 97ul,
72 /* 5 */ 199ul,
73 /* 6 */ 409ul,
74 /* 7 */ 823ul,
75 /* 8 */ 1741ul,
76 /* 9 */ 3469ul,
[all...]
/netbsd-current/external/lgpl3/mpc/dist/tests/
H A Dtswap.c33 mpc_set_ui_ui (x, 1ul, 2ul, MPC_RNDNN);
34 mpc_set_ui_ui (x2, 1ul, 2ul, MPC_RNDNN);
35 mpc_set_ui_ui (y, 3ul, 4ul, MPC_RNDNN);
36 mpc_set_ui_ui (y2, 3ul, 4ul, MPC_RNDNN);
/netbsd-current/external/apache2/llvm/dist/libcxx/utils/google-benchmark/test/
H A Dstring_util_gtest.cc12 EXPECT_EQ(0ul, benchmark::stoul("0", &pos));
13 EXPECT_EQ(1ul, pos);
17 EXPECT_EQ(7ul, benchmark::stoul("7", &pos));
18 EXPECT_EQ(1ul, pos);
22 EXPECT_EQ(135ul, benchmark::stoul("135", &pos));
23 EXPECT_EQ(3ul, pos);
29 EXPECT_EQ(10ul, pos);
35 EXPECT_EQ(20ul, pos);
40 EXPECT_EQ(10ul, benchmark::stoul("1010", &pos, 2));
41 EXPECT_EQ(4ul, po
[all...]
/netbsd-current/lib/libc/quad/
H A Dfloatundisf_ieee754.c68 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));

Completed in 388 milliseconds

1234567891011>>