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

1 2 3 4 5 6 7 8 91011>>

  /src/external/gpl3/gcc/dist/libstdc++-v3/src/shared/
hashtable-aux.cc 30 2ul, 3ul, 5ul, 7ul, 11ul, 13ul, 17ul, 19ul, 23ul, 29ul, 31ul
    [all...]
  /src/external/gpl3/gcc.old/dist/libstdc++-v3/src/shared/
hashtable-aux.cc 30 2ul, 3ul, 5ul, 7ul, 11ul, 13ul, 17ul, 19ul, 23ul, 29ul, 31ul
    [all...]
  /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/external/lgpl3/gmp/dist/mpz/
cmp_ui.c 39 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)
cmpabs_ui.c 39 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)
  /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;
  /src/external/gpl3/gcc/dist/libstdc++-v3/include/ext/pb_ds/detail/thin_heap_/
thin_heap_.hpp 249 /* 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...]
  /src/external/gpl3/gcc.old/dist/libstdc++-v3/include/ext/pb_ds/detail/thin_heap_/
thin_heap_.hpp 249 /* 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...]
  /src/external/lgpl3/gmp/dist/mpn/generic/
com.c 39 mp_limb_t ul; local
41 ul = *up++;
42 *rp++ = ~ul & GMP_NUMB_MASK;
  /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);
  /src/external/gpl3/gcc.old/dist/libstdc++-v3/include/ext/pb_ds/detail/resize_policy/
hash_prime_size_policy_imp.hpp 67 /* 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...]
  /src/external/lgpl3/mpc/dist/tests/
tswap.c 33 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);
  /src/external/apache2/llvm/dist/libcxx/utils/google-benchmark/test/
string_util_gtest.cc 12 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, pos)
    [all...]
  /src/external/gpl3/gcc/dist/libstdc++-v3/include/ext/pb_ds/detail/resize_policy/
hash_prime_size_policy_imp.hpp 69 /* 0 */ 5ul,
70 /* 1 */ 11ul,
71 /* 2 */ 23ul,
72 /* 3 */ 47ul,
73 /* 4 */ 97ul,
74 /* 5 */ 199ul,
75 /* 6 */ 409ul,
76 /* 7 */ 823ul,
77 /* 8 */ 1741ul,
78 /* 9 */ 3469ul,
    [all...]

Completed in 35 milliseconds

1 2 3 4 5 6 7 8 91011>>