HomeSort by: relevance | last modified time | path
    Searched defs:high_bits (Results 1 - 19 of 19) sorted by relevancy

  /src/sys/external/bsd/drm2/dist/drm/qxl/
qxl_kms.c 78 uint64_t high_bits; local
88 high_bits = (qdev->rom->slots_start + slot->index)
90 high_bits |= slot->generation;
91 high_bits <<= (64 - (qdev->rom->slot_gen_bits + qdev->rom->slot_id_bits));
92 slot->high_bits = high_bits;
qxl_drv.h 138 uint64_t high_bits; member in struct:qxl_memslot
319 return slot->high_bits | (bo->tbo.offset - slot->gpu_offset + offset);
  /src/sys/dev/pci/ixgbe/
ixgbe_phy.c 124 u8 high_bits; local
154 if (ixgbe_in_i2c_byte_ack(hw, &high_bits))
167 *val = (high_bits << 8) | low_bits;
  /src/external/bsd/jemalloc.old/dist/src/
jemalloc.c 1795 static const size_t high_bits = SIZE_T_MAX << (sizeof(size_t) * 8 / 2); local
1809 if (likely((high_bits & (dopts->num_items | dopts->item_size)) == 0)) {
  /src/external/gpl3/binutils/dist/bfd/
coff-arm.c 1002 unsigned int high_bits;
1008 high_bits = (rel_off >> 11) & 0x000007FF; /* The top 11 bits. */
1011 br_insn = LOW_HI_ORDER | (low_bits << 16) | high_bits;
1013 br_insn = HI_LOW_ORDER | (high_bits << 16) | low_bits;
1001 unsigned int high_bits; local
elfxx-mips.c 10733 bfd_vma high_bits;
10751 high_bits = addend;
10756 high_bits = sign_bits;
10760 bfd_put_32 (input_bfd, high_bits,
10890 bfd_vma high_bits;
10910 high_bits = value;
10915 high_bits = sign_bits;
10919 bfd_put_32 (input_bfd, high_bits,
10699 bfd_vma high_bits; local
10856 bfd_vma high_bits; local
  /src/external/gpl3/binutils.old/dist/bfd/
coff-arm.c 1002 unsigned int high_bits;
1008 high_bits = (rel_off >> 11) & 0x000007FF; /* The top 11 bits. */
1011 br_insn = LOW_HI_ORDER | (low_bits << 16) | high_bits;
1013 br_insn = HI_LOW_ORDER | (high_bits << 16) | low_bits;
1001 unsigned int high_bits; local
elfxx-mips.c 10708 bfd_vma high_bits;
10726 high_bits = addend;
10731 high_bits = sign_bits;
10735 bfd_put_32 (input_bfd, high_bits,
10865 bfd_vma high_bits;
10885 high_bits = value;
10890 high_bits = sign_bits;
10894 bfd_put_32 (input_bfd, high_bits,
10674 bfd_vma high_bits; local
10831 bfd_vma high_bits; local
  /src/external/gpl3/gcc/dist/gcc/
ggc-page.cc 321 size_t high_bits;
597 uintptr_t high_bits = (uintptr_t) p & ~ (uintptr_t) 0xffffffff;
602 if (table->high_bits == high_bits)
631 uintptr_t high_bits = (uintptr_t) p & ~ (uintptr_t) 0xffffffff;
632 while (table->high_bits != high_bits)
656 uintptr_t high_bits = (uintptr_t) p & ~ (uintptr_t) 0xffffffff;
658 if (table->high_bits == high_bits)
320 size_t high_bits; member in struct:page_table_chain
595 uintptr_t high_bits = (uintptr_t) p & ~ (uintptr_t) 0xffffffff; local
629 uintptr_t high_bits = (uintptr_t) p & ~ (uintptr_t) 0xffffffff; local
654 uintptr_t high_bits = (uintptr_t) p & ~ (uintptr_t) 0xffffffff; local
    [all...]
tree-vect-generic.cc 235 tree low_bits, high_bits, a_low, b_low, result_low, signs; local
239 high_bits = build_replicated_int_cst (word_type, width, max & ~(max >> 1));
250 a_low = gimplify_build2 (gsi, BIT_IOR_EXPR, word_type, a, high_bits);
254 signs = gimplify_build2 (gsi, BIT_AND_EXPR, word_type, signs, high_bits);
269 tree low_bits, high_bits, b_low, result_low, signs; local
273 high_bits = build_replicated_int_cst (word_type, width, max & ~(max >> 1));
279 signs = gimplify_build2 (gsi, BIT_AND_EXPR, word_type, signs, high_bits);
280 result_low = gimplify_build2 (gsi, MINUS_EXPR, word_type, high_bits, b_low);
  /src/external/gpl3/gcc.old/dist/gcc/
ggc-page.cc 321 size_t high_bits;
597 uintptr_t high_bits = (uintptr_t) p & ~ (uintptr_t) 0xffffffff;
602 if (table->high_bits == high_bits)
631 uintptr_t high_bits = (uintptr_t) p & ~ (uintptr_t) 0xffffffff;
632 while (table->high_bits != high_bits)
656 uintptr_t high_bits = (uintptr_t) p & ~ (uintptr_t) 0xffffffff;
658 if (table->high_bits == high_bits)
320 size_t high_bits; member in struct:page_table_chain
595 uintptr_t high_bits = (uintptr_t) p & ~ (uintptr_t) 0xffffffff; local
629 uintptr_t high_bits = (uintptr_t) p & ~ (uintptr_t) 0xffffffff; local
654 uintptr_t high_bits = (uintptr_t) p & ~ (uintptr_t) 0xffffffff; local
    [all...]
tree-vect-generic.cc 272 tree low_bits, high_bits, a_low, b_low, result_low, signs; local
276 high_bits = build_replicated_const (word_type, width, max & ~(max >> 1));
287 a_low = gimplify_build2 (gsi, BIT_IOR_EXPR, word_type, a, high_bits);
291 signs = gimplify_build2 (gsi, BIT_AND_EXPR, word_type, signs, high_bits);
306 tree low_bits, high_bits, b_low, result_low, signs; local
310 high_bits = build_replicated_const (word_type, width, max & ~(max >> 1));
316 signs = gimplify_build2 (gsi, BIT_AND_EXPR, word_type, signs, high_bits);
317 result_low = gimplify_build2 (gsi, MINUS_EXPR, word_type, high_bits, b_low);
  /src/external/gpl3/gdb/dist/bfd/
coff-arm.c 1002 unsigned int high_bits;
1008 high_bits = (rel_off >> 11) & 0x000007FF; /* The top 11 bits. */
1011 br_insn = LOW_HI_ORDER | (low_bits << 16) | high_bits;
1013 br_insn = HI_LOW_ORDER | (high_bits << 16) | low_bits;
1001 unsigned int high_bits; local
elfxx-mips.c 10603 bfd_vma high_bits;
10621 high_bits = addend;
10626 high_bits = sign_bits;
10630 bfd_put_32 (input_bfd, high_bits,
10760 bfd_vma high_bits;
10780 high_bits = value;
10785 high_bits = sign_bits;
10789 bfd_put_32 (input_bfd, high_bits,
10569 bfd_vma high_bits; local
10726 bfd_vma high_bits; local
  /src/external/gpl3/gdb.old/dist/bfd/
coff-arm.c 1002 unsigned int high_bits;
1008 high_bits = (rel_off >> 11) & 0x000007FF; /* The top 11 bits. */
1011 br_insn = LOW_HI_ORDER | (low_bits << 16) | high_bits;
1013 br_insn = HI_LOW_ORDER | (high_bits << 16) | low_bits;
1001 unsigned int high_bits; local
elfxx-mips.c 10616 bfd_vma high_bits;
10634 high_bits = addend;
10639 high_bits = sign_bits;
10643 bfd_put_32 (input_bfd, high_bits,
10773 bfd_vma high_bits;
10793 high_bits = value;
10798 high_bits = sign_bits;
10802 bfd_put_32 (input_bfd, high_bits,
10582 bfd_vma high_bits; local
10739 bfd_vma high_bits; local
  /src/external/bsd/jemalloc/dist/src/
jemalloc.c 2482 static const size_t high_bits = SIZE_T_MAX << (sizeof(size_t) * 8 / 2); local
2496 if (likely((high_bits & (dopts->num_items | dopts->item_size)) == 0)) {
  /src/external/gpl3/gcc/dist/gcc/config/sparc/
sparc.cc 2736 unsigned HOST_WIDE_INT high_bits;
2739 high_bits = (~low_bits) & 0xffffffff;
2741 high_bits = low_bits;
2743 emit_insn (gen_safe_HIGH64 (temp, high_bits));
2746 emit_insn (gen_rtx_SET (op0, gen_safe_OR64 (temp, (high_bits & 0x3ff))));
2772 unsigned HOST_WIDE_INT high_bits,
2778 if ((high_bits & 0xfffffc00) != 0)
2780 emit_insn (gen_safe_HIGH64 (temp, high_bits));
2781 if ((high_bits & ~0xfffffc00) != 0)
2783 gen_safe_OR64 (temp, (high_bits & 0x3ff))))
2733 unsigned HOST_WIDE_INT high_bits; local
3019 unsigned HOST_WIDE_INT high_bits, low_bits; local
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/config/sparc/
sparc.cc 2744 unsigned HOST_WIDE_INT high_bits;
2747 high_bits = (~low_bits) & 0xffffffff;
2749 high_bits = low_bits;
2751 emit_insn (gen_safe_HIGH64 (temp, high_bits));
2754 emit_insn (gen_rtx_SET (op0, gen_safe_OR64 (temp, (high_bits & 0x3ff))));
2780 unsigned HOST_WIDE_INT high_bits,
2786 if ((high_bits & 0xfffffc00) != 0)
2788 emit_insn (gen_safe_HIGH64 (temp, high_bits));
2789 if ((high_bits & ~0xfffffc00) != 0)
2791 gen_safe_OR64 (temp, (high_bits & 0x3ff))))
2741 unsigned HOST_WIDE_INT high_bits; local
3027 unsigned HOST_WIDE_INT high_bits, low_bits; local
    [all...]

Completed in 99 milliseconds