HomeSort by: relevance | last modified time | path
    Searched refs:lowbit (Results 1 - 13 of 13) sorted by relevancy

  /src/external/bsd/libarchive/dist/libarchive/
archive_check_magic.c 111 unsigned int lowbit; local
116 while ((lowbit = states & (1 + ~states)) != 0) {
117 states &= ~lowbit; /* Clear the low bit. */
118 strcat(buff, state_name(lowbit));
  /src/external/cddl/osnet/dist/uts/common/sys/
bitmap.h 164 extern int lowbit(ulong_t);
cpuvar.h 512 cpu = (uint_t)(lowbit(set) - 1); \
516 smallest = (uint_t)(lowbit(set) - 1); \
  /src/external/bsd/pcc/dist/pcc/arch/powerpc/
code.c 784 static unsigned long mrst_find_window(struct swents **p, int n, int *state, int lab, int *len, int *lowbit);
785 void mrst_put_entry_and_recurse(int num, struct swents **p, int n, int *state, 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);
840 DPRINTF(("mrst_rec: Wmax=%lu, lowbit=%d, tblsize=%u\n",
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;
    [all...]
  /src/sys/external/bsd/drm2/dist/drm/amd/amdgpu/
amdgpu_sdma_v5_0.c 306 u32 lowbit, highbit; local
309 lowbit = RREG32(sdma_v5_0_get_reg_offset(adev, ring->me, mmSDMA0_GFX_RB_WPTR)) >> 2;
313 ring->me, highbit, lowbit);
316 *wptr |= lowbit;
  /src/external/gpl3/gcc/dist/libgcc/
fp-bit.c 264 int lowbit = (fraction & (((fractype)1 << shift) - 1)) ? 1 : 0;
265 fraction = (fraction >> shift) | lowbit;
  /src/external/gpl3/gcc.old/dist/libgcc/
fp-bit.c 264 int lowbit = (fraction & (((fractype)1 << shift) - 1)) ? 1 : 0;
265 fraction = (fraction >> shift) | lowbit;
  /src/external/gpl3/gdb.old/dist/gdb/
arm-tdep.c 5667 uint32_t lowbit = 1; local
5673 for (; lowbit && (bitmask & lowbit) == 0; lowbit <<= 1)
5676 if (!lowbit)
5679 mask = lowbit * 0xf;
  /src/external/gpl3/gdb/dist/gdb/
arm-tdep.c 5670 uint32_t lowbit = 1; local
5676 for (; lowbit && (bitmask & lowbit) == 0; lowbit <<= 1)
5679 if (!lowbit)
5682 mask = lowbit * 0xf;
  /src/external/gpl3/gcc/dist/gcc/config/s390/
s390.cc 2551 int lowbit = HOST_BITS_PER_WIDE_INT - 1; local
2556 for (start = lowbit; start >= highbit; bitmask <<= 1, start--)
2584 & (~HOST_WIDE_INT_0U << (lowbit - start + 1)));
  /src/external/gpl3/gcc.old/dist/gcc/config/s390/
s390.cc 2404 int lowbit = HOST_BITS_PER_WIDE_INT - 1; local
2409 for (start = lowbit; start >= highbit; bitmask <<= 1, start--)
2437 & (~HOST_WIDE_INT_0U << (lowbit - start + 1)));
  /src/external/gpl3/gcc/dist/gcc/config/arm/
arm.cc 4598 int lowbit;
4616 lowbit = ffs((int) i) - 1;
4621 lowbit &= ~1;
4623 if ((i & ~(((unsigned HOST_WIDE_INT) 0xff) << lowbit)) == 0)
4629 if (lowbit <= 4
4591 int lowbit; local
  /src/external/gpl3/gcc.old/dist/gcc/config/arm/
arm.cc 4490 int lowbit;
4508 lowbit = ffs((int) i) - 1;
4513 lowbit &= ~1;
4515 if ((i & ~(((unsigned HOST_WIDE_INT) 0xff) << lowbit)) == 0)
4521 if (lowbit <= 4
4483 int lowbit; local

Completed in 237 milliseconds