Searched refs:nr (Results 1 - 13 of 13) sorted by relevance

/bionic/libc/kernel/common/asm-generic/bitops/
H A Dnon-atomic.h22 #define BITOP_MASK(nr) (1UL << ((nr) % BITS_PER_LONG))
24 #define BITOP_WORD(nr) ((nr) / BITS_PER_LONG)
H A Dle.h24 #define BITOP_WORD(nr) ((nr) / BITS_PER_LONG)
27 #define generic_test_le_bit(nr, addr) test_bit(nr, addr)
29 #define generic___set_le_bit(nr, addr) __set_bit(nr, addr)
30 #define generic___clear_le_bit(nr, addr) __clear_bit(nr, addr)
31 #define generic_test_and_set_le_bit(nr, addr) test_and_set_bit(nr, add
[all...]
H A Datomic.h22 #define BITOP_MASK(nr) (1UL << ((nr) % BITS_PER_LONG))
24 #define BITOP_WORD(nr) ((nr) / BITS_PER_LONG)
/bionic/libc/kernel/arch-mips/asm/
H A Dioctl.h45 #define _IOC(dir, type, nr, size) (((dir) << _IOC_DIRSHIFT) | ((type) << _IOC_TYPESHIFT) | ((nr) << _IOC_NRSHIFT) | ((size) << _IOC_SIZESHIFT))
49 #define _IO(type, nr) _IOC(_IOC_NONE, (type), (nr), 0)
50 #define _IOR(type, nr, size) _IOC(_IOC_READ, (type), (nr), (_IOC_TYPECHECK(size)))
51 #define _IOW(type, nr, size) _IOC(_IOC_WRITE, (type), (nr), (_IOC_TYPECHECK(size)))
52 #define _IOWR(type, nr, size) _IOC(_IOC_READ|_IOC_WRITE, (type), (nr), (_IOC_TYPECHEC
[all...]
/bionic/libc/kernel/common/asm-generic/
H A Dioctl.h40 #define _IOC(dir,type,nr,size) (((dir) << _IOC_DIRSHIFT) | ((type) << _IOC_TYPESHIFT) | ((nr) << _IOC_NRSHIFT) | ((size) << _IOC_SIZESHIFT))
44 #define _IO(type,nr) _IOC(_IOC_NONE,(type),(nr),0)
45 #define _IOR(type,nr,size) _IOC(_IOC_READ,(type),(nr),(_IOC_TYPECHECK(size)))
46 #define _IOW(type,nr,size) _IOC(_IOC_WRITE,(type),(nr),(_IOC_TYPECHECK(size)))
47 #define _IOWR(type,nr,size) _IOC(_IOC_READ|_IOC_WRITE,(type),(nr),(_IOC_TYPECHEC
[all...]
H A Dtlb.h30 unsigned int nr; member in struct:mmu_gather
/bionic/libc/kernel/arch-arm/asm/arch/
H A Dgpio.h42 #define OMAP_MPUIO(nr) (OMAP_MAX_GPIO_LINES + (nr))
44 #define OMAP_GPIO_IS_MPUIO(nr) ((nr) >= OMAP_MAX_GPIO_LINES)
45 #define OMAP_GPIO_IRQ(nr) (OMAP_GPIO_IS_MPUIO(nr) ? IH_MPUIO_BASE + ((nr) & 0x0f) : IH_GPIO_BASE + (nr))
H A Dboard.h164 #define omap_get_nr_config(tag, type, nr) ((const type *) __omap_get_config((tag), sizeof(type), (nr)))
/bionic/libc/kernel/arch-x86/asm/
H A Dbitops_32.h31 #define test_bit(nr,addr) (__builtin_constant_p(nr) ? constant_test_bit((nr),(addr)) : variable_test_bit((nr),(addr)))
/bionic/libc/kernel/common/linux/
H A Dseccomp.h37 int nr; member in struct:seccomp_data
H A Daudit.h142 #define AUDIT_WORD(nr) ((__u32)((nr)/32))
144 #define AUDIT_BIT(nr) (1 << ((nr) - AUDIT_WORD(nr)*32))
H A Dinterrupt.h107 #define __raise_softirq_irqoff(nr) do { or_softirq_pending(1UL << (nr)); } while (0)
/bionic/libc/kernel/common/linux/sunrpc/
H A Dsched.h161 unsigned char nr; member in struct:rpc_wait_queue

Completed in 197 milliseconds