Home
last modified time | relevance | path

Searched refs:HOST_BITS_PER_LONG (Results 1 – 24 of 24) sorted by relevance

/dragonfly/contrib/gcc-4.7/gcc/
HDhwint.h17 #define HOST_BITS_PER_LONG (CHAR_BIT * SIZEOF_LONG) macro
60 #if HOST_BITS_PER_LONG >= 64 || !defined NEED_64BIT_HOST_WIDE_INT
61 # define HOST_BITS_PER_WIDE_INT HOST_BITS_PER_LONG
79 #if HOST_BITS_PER_WIDE_INT == HOST_BITS_PER_LONG
161 # define HOST_BITS_PER_WIDEST_FAST_INT HOST_BITS_PER_LONG
185 # if HOST_BITS_PER_WIDE_INT == HOST_BITS_PER_LONG in clz_hwi()
199 # if HOST_BITS_PER_WIDE_INT == HOST_BITS_PER_LONG in ctz_hwi()
211 # if HOST_BITS_PER_WIDE_INT == HOST_BITS_PER_LONG in ffs_hwi()
HDreal.c75 #if HOST_BITS_PER_LONG != 64 && HOST_BITS_PER_LONG != 32
175 if (n >= HOST_BITS_PER_LONG) in sticky_rshift_significand()
177 for (i = 0, ofs = n / HOST_BITS_PER_LONG; i < ofs; ++i) in sticky_rshift_significand()
179 n &= HOST_BITS_PER_LONG - 1; in sticky_rshift_significand()
190 << (HOST_BITS_PER_LONG - n))); in sticky_rshift_significand()
211 unsigned int i, ofs = n / HOST_BITS_PER_LONG; in rshift_significand()
213 n &= HOST_BITS_PER_LONG - 1; in rshift_significand()
221 << (HOST_BITS_PER_LONG - n))); in rshift_significand()
240 unsigned int i, ofs = n / HOST_BITS_PER_LONG; in lshift_significand()
242 n &= HOST_BITS_PER_LONG - 1; in lshift_significand()
[all …]
HDggc-page.c96 #define HOST_BITS_PER_PTR HOST_BITS_PER_LONG
468 (CEIL ((Num_objects), HOST_BITS_PER_LONG) * sizeof(long))
902 entry->in_use_p[num_objects / HOST_BITS_PER_LONG] in alloc_page()
903 = (unsigned long) 1 << (num_objects % HOST_BITS_PER_LONG); in alloc_page()
1273 word = hint / HOST_BITS_PER_LONG; in ggc_internal_alloc_stat()
1274 bit = hint % HOST_BITS_PER_LONG; in ggc_internal_alloc_stat()
1290 hint = word * HOST_BITS_PER_LONG + bit; in ggc_internal_alloc_stat()
1431 word = bit / HOST_BITS_PER_LONG; in gt_ggc_m_S()
1432 mask = (unsigned long) 1 << (bit % HOST_BITS_PER_LONG); in gt_ggc_m_S()
1467 word = bit / HOST_BITS_PER_LONG; in ggc_set_mark()
[all …]
HDpointer-set.c57 #if HOST_BITS_PER_LONG == 32 in hash1()
59 #elif HOST_BITS_PER_LONG == 64 in hash1()
65 const unsigned long shift = HOST_BITS_PER_LONG - logmax; in hash1()
HDreal.h37 #define SIGNIFICAND_BITS (128 + HOST_BITS_PER_LONG)
40 #define SIGSZ (SIGNIFICAND_BITS / HOST_BITS_PER_LONG)
41 #define SIG_MSB ((unsigned long)1 << (HOST_BITS_PER_LONG - 1))
HDread-rtl.c613 #if HOST_BITS_PER_WIDE_INT > HOST_BITS_PER_LONG && !defined(HAVE_ATOLL) && !defined(HAVE_ATOQ)
1045 #if HOST_BITS_PER_WIDE_INT == HOST_BITS_PER_LONG in read_rtx_code()
HDtree-streamer-out.c132 bp_pack_value (bp, r.sig[i], HOST_BITS_PER_LONG); in pack_ts_real_cst_value_fields()
HDsbitmap.c36 # if HOST_BITS_PER_WIDEST_FAST_INT == HOST_BITS_PER_LONG
HDtree-streamer-in.c161 r.sig[i] = (unsigned long) bp_unpack_value (bp, HOST_BITS_PER_LONG); in unpack_ts_real_cst_value_fields()
HDfinal.c4092 #if HOST_BITS_PER_LONG > 32 in split_double()
4093 if (BITS_PER_WORD < HOST_BITS_PER_LONG && BITS_PER_WORD == 32) in split_double()
HDggc-zone.c104 #define HOST_BITS_PER_PTR HOST_BITS_PER_LONG
/dragonfly/contrib/gcc-4.7/libobjc/objc-private/
HDmodule-abi-8.h233 #ifndef HOST_BITS_PER_LONG
234 # define HOST_BITS_PER_LONG (sizeof(long)*8) macro
274 #define CLS_GETNUMBER(cls) (__CLS_INFO(cls) >> (HOST_BITS_PER_LONG/2))
276 ({ (cls)->info <<= (HOST_BITS_PER_LONG/2); \
277 (cls)->info >>= (HOST_BITS_PER_LONG/2); \
278 __CLS_SETINFO(cls, (((unsigned long)num) << (HOST_BITS_PER_LONG/2))); })
/dragonfly/contrib/gcc-8.0/gcc/
HDreal.c64 #if HOST_BITS_PER_LONG != 64 && HOST_BITS_PER_LONG != 32
164 if (n >= HOST_BITS_PER_LONG) in sticky_rshift_significand()
166 for (i = 0, ofs = n / HOST_BITS_PER_LONG; i < ofs; ++i) in sticky_rshift_significand()
168 n &= HOST_BITS_PER_LONG - 1; in sticky_rshift_significand()
179 << (HOST_BITS_PER_LONG - n))); in sticky_rshift_significand()
200 unsigned int i, ofs = n / HOST_BITS_PER_LONG; in rshift_significand()
202 n &= HOST_BITS_PER_LONG - 1; in rshift_significand()
210 << (HOST_BITS_PER_LONG - n))); in rshift_significand()
229 unsigned int i, ofs = n / HOST_BITS_PER_LONG; in lshift_significand()
231 n &= HOST_BITS_PER_LONG - 1; in lshift_significand()
[all …]
HDhwint.h16 #define HOST_BITS_PER_LONG (CHAR_BIT * SIZEOF_LONG) macro
134 # define HOST_BITS_PER_WIDEST_FAST_INT HOST_BITS_PER_LONG
189 # if HOST_BITS_PER_WIDE_INT == HOST_BITS_PER_LONG in clz_hwi()
203 # if HOST_BITS_PER_WIDE_INT == HOST_BITS_PER_LONG in ctz_hwi()
215 # if HOST_BITS_PER_WIDE_INT == HOST_BITS_PER_LONG in ffs_hwi()
227 # if HOST_BITS_PER_WIDE_INT == HOST_BITS_PER_LONG in popcount_hwi()
HDggc-page.c502 (CEIL ((Num_objects), HOST_BITS_PER_LONG) * sizeof (long))
938 entry->in_use_p[num_objects / HOST_BITS_PER_LONG] in alloc_page()
939 = (unsigned long) 1 << (num_objects % HOST_BITS_PER_LONG); in alloc_page()
1320 word = hint / HOST_BITS_PER_LONG; in ggc_internal_alloc()
1321 bit = hint % HOST_BITS_PER_LONG; in ggc_internal_alloc()
1337 hint = word * HOST_BITS_PER_LONG + bit; in ggc_internal_alloc()
1481 word = bit / HOST_BITS_PER_LONG; in gt_ggc_m_S()
1482 mask = (unsigned long) 1 << (bit % HOST_BITS_PER_LONG); in gt_ggc_m_S()
1537 word = bit / HOST_BITS_PER_LONG; in ggc_set_mark()
1538 mask = (unsigned long) 1 << (bit % HOST_BITS_PER_LONG); in ggc_set_mark()
[all …]
HDreal.h33 #define SIGNIFICAND_BITS (128 + HOST_BITS_PER_LONG)
36 #define SIGSZ (SIGNIFICAND_BITS / HOST_BITS_PER_LONG)
37 #define SIG_MSB ((unsigned long)1 << (HOST_BITS_PER_LONG - 1))
HDread-rtl.c749 #if HOST_BITS_PER_WIDE_INT > HOST_BITS_PER_LONG && !HAVE_DECL_ATOLL && !defined(HAVE_ATOQ)
1596 #if HOST_BITS_PER_WIDE_INT == HOST_BITS_PER_LONG in read_rtx_operand()
HDsbitmap.c416 # if HOST_BITS_PER_WIDEST_FAST_INT == HOST_BITS_PER_LONG in bitmap_count_bits()
HDtree-streamer-out.c173 bp_pack_value (bp, r.sig[i], HOST_BITS_PER_LONG); in pack_ts_real_cst_value_fields()
HDtree-streamer-in.c204 r.sig[i] = (unsigned long) bp_unpack_value (bp, HOST_BITS_PER_LONG); in unpack_ts_real_cst_value_fields()
HDwide-int.cc30 #if HOST_BITS_PER_HALF_WIDE_INT == HOST_BITS_PER_LONG
HDrtlanal.c6079 #if HOST_BITS_PER_LONG > 32 in split_double()
6080 if (BITS_PER_WORD < HOST_BITS_PER_LONG && BITS_PER_WORD == 32) in split_double()
/dragonfly/contrib/gcc-8.0/gcc/c-family/
HDc-warn.c2053 && bits < HOST_BITS_PER_LONG && unsignedp) in warn_for_sign_compare()
/dragonfly/contrib/gcc-4.7/gcc/c-family/
HDc-common.c10315 && bits < HOST_BITS_PER_LONG && unsignedp) in warn_for_sign_compare()