Home
last modified time | relevance | path

Searched refs:lowbit (Results 1 – 8 of 8) sorted by relevance

/netbsd/src/external/bsd/libarchive/dist/libarchive/
Darchive_check_magic.c104 unsigned int lowbit; in write_all_states() local
109 while ((lowbit = states & (1 + ~states)) != 0) { in write_all_states()
110 states &= ~lowbit; /* Clear the low bit. */ in write_all_states()
111 strcat(buff, state_name(lowbit)); in write_all_states()
/netbsd/src/external/bsd/pcc/dist/pcc/arch/powerpc/
Dcode.c784 …signed long mrst_find_window(struct swents **p, int n, int *state, int lab, int *len, int *lowbit);
785 …te, int tbllabel, int lab, unsigned long j, unsigned long tblsize, unsigned long Wmax, int lowbit);
825 int len, lowbit;
836 Wmax = mrst_find_window(p, n, state, lab, &len, &lowbit);
841 Wmax, lowbit, tblsize));
866 r = buildtree(RS, r, bcon(lowbit));
903 0, tblsize, Wmax, lowbit);
916 unsigned long j, unsigned long tblsize, unsigned long Wmax, int lowbit)
927 unsigned int val = (p[i]->sval & Wmax) >> lowbit;
949 j+1, tblsize, Wmax, lowbit);
[all …]
/netbsd/src/external/cddl/osnet/dist/uts/common/sys/
Dbitmap.h164 extern int lowbit(ulong_t);
Dcpuvar.h512 cpu = (uint_t)(lowbit(set) - 1); \
516 smallest = (uint_t)(lowbit(set) - 1); \
/netbsd/src/external/gpl3/gcc/dist/libgcc/
Dfp-bit.c264 int lowbit = (fraction & (((fractype)1 << shift) - 1)) ? 1 : 0;
265 fraction = (fraction >> shift) | lowbit;
/netbsd/src/external/gpl3/gdb/dist/gdb/
Darm-tdep.c5670 uint32_t lowbit = 1; in insn_references_pc() local
5676 for (; lowbit && (bitmask & lowbit) == 0; lowbit <<= 1) in insn_references_pc()
5679 if (!lowbit) in insn_references_pc()
5682 mask = lowbit * 0xf; in insn_references_pc()
/netbsd/src/external/gpl3/gcc/dist/gcc/config/s390/
Ds390.cc2429 int lowbit = HOST_BITS_PER_WIDE_INT - 1; in s390_contiguous_bitmask_nowrap_p() local
2434 for (start = lowbit; start >= highbit; bitmask <<= 1, start--) in s390_contiguous_bitmask_nowrap_p()
2462 & (~HOST_WIDE_INT_0U << (lowbit - start + 1))); in s390_contiguous_bitmask_nowrap_p()
/netbsd/src/external/gpl3/gcc/dist/gcc/config/arm/
Darm.cc4483 int lowbit; in const_ok_for_arm() local
4501 lowbit = ffs((int) i) - 1; in const_ok_for_arm()
4506 lowbit &= ~1; in const_ok_for_arm()
4508 if ((i & ~(((unsigned HOST_WIDE_INT) 0xff) << lowbit)) == 0) in const_ok_for_arm()
4514 if (lowbit <= 4 in const_ok_for_arm()