Searched refs:BITS_PER_LONG (Results 201 - 225 of 558) sorted by relevance

1234567891011>>

/linux-master/kernel/module/
H A Dinternal.h28 #define SH_ENTSIZE_TYPE_SHIFT (BITS_PER_LONG - SH_ENTSIZE_TYPE_BITS)
30 #define SH_ENTSIZE_OFFSET_MASK ((1UL << (BITS_PER_LONG - SH_ENTSIZE_TYPE_BITS)) - 1)
/linux-master/kernel/
H A Dprofile.c80 prof_shift = clamp(par, 0, BITS_PER_LONG - 1);
90 prof_shift = clamp(par, 0, BITS_PER_LONG - 1);
/linux-master/fs/ntfs3/
H A Dbitmap.c1509 #if BITS_PER_LONG == 64
1523 int bits_to_set = BITS_PER_LONG - (start % BITS_PER_LONG);
1529 bits_to_set = BITS_PER_LONG;
1543 int bits_to_clear = BITS_PER_LONG - (start % BITS_PER_LONG);
1549 bits_to_clear = BITS_PER_LONG;
1562 unsigned int k, lim = bits / BITS_PER_LONG;
1568 if (bits % BITS_PER_LONG) {
/linux-master/drivers/pinctrl/
H A Dpinctrl-at91-pio4.c309 for_each_set_bit(n, &isr, BITS_PER_LONG)
358 #if ATMEL_PIO_NPINS_PER_BANK != BITS_PER_LONG
360 offset = bank * ATMEL_PIO_NPINS_PER_BANK % BITS_PER_LONG;
414 * On a 64-bit platform, BITS_PER_LONG is 64 so it is necessary to iterate over
417 #if ATMEL_PIO_NPINS_PER_BANK != BITS_PER_LONG
429 #if ATMEL_PIO_NPINS_PER_BANK != BITS_PER_LONG
/linux-master/net/netlabel/
H A Dnetlabel_kapi.c734 if ((off & (BITS_PER_LONG - 1)) != 0)
815 if (((spot & (BITS_PER_LONG - 1)) == 0) &&
816 ((end - spot) > BITS_PER_LONG)) {
821 spot += BITS_PER_LONG;
851 if ((offset & (BITS_PER_LONG - 1)) != 0)
/linux-master/drivers/net/ethernet/sfc/falcon/
H A Dbitfield.h220 #if BITS_PER_LONG == 64
328 #if BITS_PER_LONG == 64
518 #if BITS_PER_LONG == 64
/linux-master/drivers/gpio/
H A Dgpio-mmio.c92 #if BITS_PER_LONG >= 64
102 #endif /* BITS_PER_LONG >= 64 */
445 #if BITS_PER_LONG >= 64
456 #endif /* BITS_PER_LONG >= 64 */
609 if (gc->bgpio_bits > BITS_PER_LONG)
/linux-master/drivers/md/
H A Ddm-zoned-metadata.c2380 if (((bit & (BITS_PER_LONG - 1)) == 0) &&
2381 ((end - bit) >= BITS_PER_LONG)) {
2386 n += BITS_PER_LONG;
2387 bit += BITS_PER_LONG;
2537 if (((bit & (BITS_PER_LONG - 1)) == 0) &&
2538 ((end - bit) >= BITS_PER_LONG)) {
2543 n += BITS_PER_LONG;
2544 bit += BITS_PER_LONG;
2725 if (((bit & (BITS_PER_LONG - 1)) == 0) &&
2726 ((end - bit) >= BITS_PER_LONG)) {
[all...]
/linux-master/fs/btrfs/
H A Dvolumes.h79 #if BITS_PER_LONG==32 && defined(CONFIG_SMP)
216 #if BITS_PER_LONG==32 && defined(CONFIG_SMP)
240 #elif BITS_PER_LONG==32 && defined(CONFIG_PREEMPTION)
H A Dbtrfs_inode.h309 #if BITS_PER_LONG == 32
316 #if BITS_PER_LONG == 32
/linux-master/drivers/crypto/cavium/nitrox/
H A Dnitrox_isr.c74 for_each_set_bit(i, &value, BITS_PER_LONG)
97 for_each_set_bit(i, &value, BITS_PER_LONG)
/linux-master/drivers/infiniband/hw/qib/
H A Dqib_tx.c406 * BITS_PER_LONG is slightly wrong, since it's
410 i = start / BITS_PER_LONG;
416 start) % BITS_PER_LONG, &dma))
/linux-master/drivers/gpu/drm/i915/gt/
H A Dsysfs_engines.c104 GEM_BUG_ON(count > BITS_PER_LONG);
107 for_each_set_bit(n, &caps, show_unknown ? BITS_PER_LONG : count) {
/linux-master/drivers/mtd/chips/
H A Dcfi_util.c107 #if BITS_PER_LONG >= 64
163 #if BITS_PER_LONG >= 64
/linux-master/fs/fuse/
H A Dioctl.c188 #if BITS_PER_LONG == 32
390 #if BITS_PER_LONG == 32
/linux-master/arch/parisc/kernel/
H A Dpci-dma.c256 mask >>= BITS_PER_LONG - pages_needed;
312 mask >>= BITS_PER_LONG - pages_mapped;
/linux-master/fs/fat/
H A Dfat.h263 #if BITS_PER_LONG == 32
267 #if BITS_PER_LONG == 32
/linux-master/include/net/
H A Dudp.h329 #if BITS_PER_LONG == 64
346 #if BITS_PER_LONG == 64
/linux-master/drivers/parisc/
H A Dsba_iommu.c205 __le64 *ptr = &(ioc->pdir_base[pide & (~0U * BITS_PER_LONG)]);
211 rptr, pide & (BITS_PER_LONG - 1), *rptr);
214 while (rcnt < BITS_PER_LONG) {
216 (rcnt == (pide & (BITS_PER_LONG - 1)))
320 #define RESMAP_MASK(n) (~0UL << (BITS_PER_LONG - (n)))
360 if (bits_wanted > (BITS_PER_LONG/2)) {
387 if (bitshiftcnt >= BITS_PER_LONG) {
504 unsigned long m = RESMAP_MASK(bits_not_wanted) >> (pide & (BITS_PER_LONG - 1));
/linux-master/drivers/video/fbdev/core/
H A Dcfbcopyarea.c33 #if BITS_PER_LONG == 32
387 int bits = BITS_PER_LONG, bytes = bits >> 3;
H A Dcfbfillrect.c22 #if BITS_PER_LONG == 32
282 int bits = BITS_PER_LONG, bytes = bits >> 3;
/linux-master/include/linux/
H A Dnetfilter.h38 #if defined(CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS) && BITS_PER_LONG == 64
55 #if defined(CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS) && BITS_PER_LONG == 64
/linux-master/drivers/pci/endpoint/
H A Dpci-epf-core.c170 BITS_PER_LONG);
171 if (vfunc_no >= BITS_PER_LONG) {
/linux-master/kernel/trace/
H A Dtrace_probe.h181 #define DEFAULT_FETCH_TYPE _DEFAULT_FETCH_TYPE(BITS_PER_LONG)
186 #define ADDR_FETCH_TYPE _ADDR_FETCH_TYPE(BITS_PER_LONG)
/linux-master/mm/kasan/
H A Dreport.c434 * 3 + (BITS_PER_LONG / 8) * 2 chars.
438 return 3 + (BITS_PER_LONG / 8) * 2 +
453 char buffer[4 + (BITS_PER_LONG / 8) * 2];

Completed in 230 milliseconds

1234567891011>>