Searched refs:high_bits (Results 1 - 8 of 8) sorted by relevance

/freebsd-11-stable/contrib/gcc/
H A Dtree-vect-generic.c151 tree low_bits, high_bits, a_low, b_low, result_low, signs; local
155 high_bits = build_replicated_const (word_type, inner_type, max & ~(max >> 1));
166 a_low = gimplify_build2 (bsi, BIT_IOR_EXPR, word_type, a, high_bits);
170 signs = gimplify_build2 (bsi, BIT_AND_EXPR, word_type, signs, high_bits);
183 tree low_bits, high_bits, b_low, result_low, signs; local
187 high_bits = build_replicated_const (word_type, inner_type, max & ~(max >> 1));
193 signs = gimplify_build2 (bsi, BIT_AND_EXPR, word_type, signs, high_bits);
194 result_low = gimplify_build2 (bsi, MINUS_EXPR, word_type, high_bits, b_low);
H A Dggc-page.c337 size_t high_bits;
566 size_t high_bits = (size_t) p & ~ (size_t) 0xffffffff;
571 if (table->high_bits == high_bits)
598 size_t high_bits = (size_t) p & ~ (size_t) 0xffffffff;
599 while (table->high_bits != high_bits)
623 size_t high_bits = (size_t) p & ~ (size_t) 0xffffffff;
625 if (table->high_bits == high_bits)
335 size_t high_bits; member in struct:page_table_chain
563 size_t high_bits = (size_t) p & ~ (size_t) 0xffffffff; local
595 size_t high_bits = (size_t) p & ~ (size_t) 0xffffffff; local
620 size_t high_bits = (size_t) p & ~ (size_t) 0xffffffff; local
[all...]
H A Dggc-zone.c340 size_t high_bits; member in struct:page_table_chain
512 size_t high_bits = (size_t) p & ~ (size_t) 0xffffffff; local
513 while (table->high_bits != high_bits)
538 size_t high_bits = (size_t) p & ~ (size_t) 0xffffffff; local
540 if (table->high_bits == high_bits)
546 table->high_bits = high_bits;
/freebsd-11-stable/contrib/gcc/config/sparc/
H A Dsparc.c1363 unsigned HOST_WIDE_INT high_bits;
1366 high_bits = (~low_bits) & 0xffffffff;
1368 high_bits = low_bits;
1370 emit_insn (gen_safe_HIGH64 (temp, high_bits));
1374 gen_safe_OR64 (temp, (high_bits & 0x3ff))));
1401 unsigned HOST_WIDE_INT high_bits,
1407 if ((high_bits & 0xfffffc00) != 0)
1409 emit_insn (gen_safe_HIGH64 (temp, high_bits));
1410 if ((high_bits & ~0xfffffc00) != 0)
1412 gen_safe_OR64 (temp, (high_bits
1359 unsigned HOST_WIDE_INT high_bits; local
1396 sparc_emit_set_const64_quick2(rtx op0, rtx temp, unsigned HOST_WIDE_INT high_bits, unsigned HOST_WIDE_INT low_immediate, int shift_count) argument
1436 sparc_emit_set_const64_longway(rtx op0, rtx temp, unsigned HOST_WIDE_INT high_bits, unsigned HOST_WIDE_INT low_bits) argument
1541 analyze_64bit_constant(unsigned HOST_WIDE_INT high_bits, unsigned HOST_WIDE_INT low_bits, int *hbsp, int *lbsp, int *abbasp) argument
1605 const64_is_2insns(unsigned HOST_WIDE_INT high_bits, unsigned HOST_WIDE_INT low_bits) argument
1634 create_simple_focus_bits(unsigned HOST_WIDE_INT high_bits, unsigned HOST_WIDE_INT low_bits, int lowest_bit_set, int shift) argument
1661 unsigned HOST_WIDE_INT high_bits, low_bits; local
[all...]
/freebsd-11-stable/contrib/binutils/bfd/
H A Dcoff-arm.c995 unsigned int high_bits;
1001 high_bits = (rel_off >> 11) & 0x000007FF; /* The top 11 bits. */
1004 br_insn = LOW_HI_ORDER | (low_bits << 16) | high_bits;
1006 br_insn = HI_LOW_ORDER | (high_bits << 16) | low_bits;
994 unsigned int high_bits; local
H A Delfxx-mips.c7987 bfd_vma high_bits;
8005 high_bits = addend;
8010 high_bits = sign_bits;
8014 bfd_put_32 (input_bfd, high_bits,
8107 bfd_vma high_bits;
8127 high_bits = value;
8132 high_bits = sign_bits;
8136 bfd_put_32 (input_bfd, high_bits,
7955 bfd_vma high_bits; local
8075 bfd_vma high_bits; local
H A Delf32-arm.c3978 unsigned int high_bits; local
3984 high_bits = (rel_off >> 11) & 0x000007FF; /* The top 11 bits. */
3987 br_insn = LOW_HI_ORDER | (low_bits << 16) | high_bits;
3989 br_insn = HI_LOW_ORDER | (high_bits << 16) | low_bits;
/freebsd-11-stable/sys/dev/ixgbe/
H A Dixgbe_phy.c120 u8 high_bits; local
150 if (ixgbe_in_i2c_byte_ack(hw, &high_bits))
164 *val = (high_bits << 8) | low_bits;

Completed in 146 milliseconds