| /freebsd-12.1/contrib/gcc/ |
| H A D | tree-vect-generic.c | 151 tree low_bits, high_bits, a_low, b_low, result_low, signs; in do_plus_minus() local 155 high_bits = build_replicated_const (word_type, inner_type, max & ~(max >> 1)); in do_plus_minus() 166 a_low = gimplify_build2 (bsi, BIT_IOR_EXPR, word_type, a, high_bits); in do_plus_minus() 170 signs = gimplify_build2 (bsi, BIT_AND_EXPR, word_type, signs, high_bits); in do_plus_minus() 183 tree low_bits, high_bits, b_low, result_low, signs; in do_negate() local 187 high_bits = build_replicated_const (word_type, inner_type, max & ~(max >> 1)); in do_negate() 193 signs = gimplify_build2 (bsi, BIT_AND_EXPR, word_type, signs, high_bits); in do_negate() 194 result_low = gimplify_build2 (bsi, MINUS_EXPR, word_type, high_bits, b_low); in do_negate()
|
| H A D | ggc-page.c | 335 size_t high_bits; member 563 size_t high_bits = (size_t) p & ~ (size_t) 0xffffffff; in ggc_allocated_p() local 568 if (table->high_bits == high_bits) in ggc_allocated_p() 595 size_t high_bits = (size_t) p & ~ (size_t) 0xffffffff; in lookup_page_table_entry() local 596 while (table->high_bits != high_bits) in lookup_page_table_entry() 620 size_t high_bits = (size_t) p & ~ (size_t) 0xffffffff; in set_page_table_entry() local 622 if (table->high_bits == high_bits) in set_page_table_entry() 628 table->high_bits = high_bits; in set_page_table_entry()
|
| H A D | ggc-zone.c | 340 size_t high_bits; member 512 size_t high_bits = (size_t) p & ~ (size_t) 0xffffffff; in lookup_page_table_entry() local 513 while (table->high_bits != high_bits) in lookup_page_table_entry() 538 size_t high_bits = (size_t) p & ~ (size_t) 0xffffffff; in set_page_table_entry() local 540 if (table->high_bits == high_bits) in set_page_table_entry() 546 table->high_bits = high_bits; in set_page_table_entry()
|
| /freebsd-12.1/contrib/gcc/config/sparc/ |
| H A D | sparc.c | 1359 unsigned HOST_WIDE_INT high_bits; in sparc_emit_set_const64_quick1() local 1364 high_bits = low_bits; in sparc_emit_set_const64_quick1() 1403 if ((high_bits & 0xfffffc00) != 0) in sparc_emit_set_const64_quick2() 1447 if ((high_bits & 0xfffffc00) != 0) in sparc_emit_set_const64_longway() 1568 && ((high_bits >> i) & 1)) in analyze_64bit_constant() 1610 if (high_bits == 0 in const64_is_2insns() 1611 || high_bits == 0xffffffff) in const64_is_2insns() 1778 if (high_bits == 0 in sparc_emit_set_const64() 1779 || high_bits == 0xffffffff) in sparc_emit_set_const64() 1782 (high_bits == 0xffffffff)); in sparc_emit_set_const64() [all …]
|
| /freebsd-12.1/contrib/binutils/bfd/ |
| H A D | coff-arm.c | 994 unsigned int high_bits; in insert_thumb_branch() local 1000 high_bits = (rel_off >> 11) & 0x000007FF; /* The top 11 bits. */ in insert_thumb_branch() 1003 br_insn = LOW_HI_ORDER | (low_bits << 16) | high_bits; in insert_thumb_branch() 1005 br_insn = HI_LOW_ORDER | (high_bits << 16) | low_bits; in insert_thumb_branch()
|
| H A D | elfxx-mips.c | 7955 bfd_vma high_bits; in _bfd_mips_elf_relocate_section() local 7973 high_bits = addend; in _bfd_mips_elf_relocate_section() 7978 high_bits = sign_bits; in _bfd_mips_elf_relocate_section() 7982 bfd_put_32 (input_bfd, high_bits, in _bfd_mips_elf_relocate_section() 8075 bfd_vma high_bits; in _bfd_mips_elf_relocate_section() local 8095 high_bits = value; in _bfd_mips_elf_relocate_section() 8100 high_bits = sign_bits; in _bfd_mips_elf_relocate_section() 8104 bfd_put_32 (input_bfd, high_bits, in _bfd_mips_elf_relocate_section()
|
| H A D | elf32-arm.c | 3978 unsigned int high_bits; in insert_thumb_branch() local 3984 high_bits = (rel_off >> 11) & 0x000007FF; /* The top 11 bits. */ in insert_thumb_branch() 3987 br_insn = LOW_HI_ORDER | (low_bits << 16) | high_bits; in insert_thumb_branch() 3989 br_insn = HI_LOW_ORDER | (high_bits << 16) | low_bits; in insert_thumb_branch()
|
| /freebsd-12.1/sys/dev/ixgbe/ |
| H A D | ixgbe_phy.c | 121 u8 high_bits; in ixgbe_read_i2c_combined_generic_int() local 151 if (ixgbe_in_i2c_byte_ack(hw, &high_bits)) in ixgbe_read_i2c_combined_generic_int() 165 *val = (high_bits << 8) | low_bits; in ixgbe_read_i2c_combined_generic_int()
|
| /freebsd-12.1/contrib/jemalloc/src/ |
| H A D | jemalloc.c | 1767 static const size_t high_bits = SIZE_T_MAX << (sizeof(size_t) * 8 / 2); in compute_size_with_overflow() local 1781 if (likely((high_bits & (dopts->num_items | dopts->item_size)) == 0)) { in compute_size_with_overflow()
|