Home
last modified time | relevance | path

Searched refs:fds_bits (Results 1 – 10 of 10) sorted by relevance

/u-boot/arch/powerpc/include/asm/
A Dposix_types.h45 #define __FD_SET(d, set) ((set)->fds_bits[__FDELT(d)] |= __FDMASK(d))
46 #define __FD_CLR(d, set) ((set)->fds_bits[__FDELT(d)] &= ~__FDMASK(d))
47 #define __FD_ISSET(d, set) ((set)->fds_bits[__FDELT(d)] & __FDMASK(d))
62 fdsetp->fds_bits[_tmp] |= (1UL<<_rem); in __FD_SET()
70 fdsetp->fds_bits[_tmp] &= ~(1UL<<_rem); in __FD_CLR()
78 return (p->fds_bits[_tmp] & (1UL<<_rem)) != 0; in __FD_ISSET()
88 unsigned int *tmp = (unsigned int *)p->fds_bits; in __FD_ZERO()
/u-boot/arch/m68k/include/asm/
A Dposix_types.h45 #define __FD_SET(d, set) ((set)->fds_bits[__FDELT(d)] |= __FDMASK(d))
46 #define __FD_CLR(d, set) ((set)->fds_bits[__FDELT(d)] &= ~__FDMASK(d))
47 #define __FD_ISSET(d, set) ((set)->fds_bits[__FDELT(d)] & __FDMASK(d))
62 fdsetp->fds_bits[_tmp] |= (1UL<<_rem); in __FD_SET()
70 fdsetp->fds_bits[_tmp] &= ~(1UL<<_rem); in __FD_CLR()
78 return (p->fds_bits[_tmp] & (1UL<<_rem)) != 0; in __FD_ISSET()
88 unsigned int *tmp = (unsigned int *)p->fds_bits; in __FD_ZERO()
/u-boot/arch/xtensa/include/asm/
A Dposix_types.h57 (((fd_set *)fdsetp)->fds_bits[fd >> 5] |= (1<<(fd & 31)))
61 (((fd_set *)fdsetp)->fds_bits[fd >> 5] &= ~(1<<(fd & 31)))
65 ((((fd_set *)fdsetp)->fds_bits[fd >> 5] & (1<<(fd & 31))) != 0)
/u-boot/arch/mips/include/asm/
A Dposix_types.h60 __fdsetp->fds_bits[__tmp] |= (1UL<<__rem); in __FD_SET()
68 __fdsetp->fds_bits[__tmp] &= ~(1UL<<__rem); in __FD_CLR()
76 return (__p->fds_bits[__tmp] & (1UL<<__rem)) != 0; in __FD_ISSET()
86 unsigned long *__tmp = __p->fds_bits; in __FD_ZERO()
/u-boot/arch/sh/include/asm/
A Dposix_types.h57 __fdsetp->fds_bits[__tmp] |= (1UL<<__rem); in __FD_SET()
65 __fdsetp->fds_bits[__tmp] &= ~(1UL<<__rem); in __FD_CLR()
74 return (__p->fds_bits[__tmp] & (1UL<<__rem)) != 0; in __FD_ISSET()
84 unsigned long *__tmp = __p->fds_bits; in __FD_ZERO()
/u-boot/arch/nios2/include/asm/
A Dposix_types.h54 #define __FD_SET(d, set) ((set)->fds_bits[__FDELT(d)] |= __FDMASK(d))
57 #define __FD_CLR(d, set) ((set)->fds_bits[__FDELT(d)] &= ~__FDMASK(d))
60 #define __FD_ISSET(d, set) ((set)->fds_bits[__FDELT(d)] & __FDMASK(d))
/u-boot/arch/microblaze/include/asm/
A Dposix_types.h64 __set_bit (fd, (void *)&((__kernel_fd_set *)fd_set)->fds_bits)
67 __clear_bit (fd, (void *)&((__kernel_fd_set *)fd_set)->fds_bits)
70 __test_bit (fd, (void *)&((__kernel_fd_set *)fd_set)->fds_bits)
/u-boot/arch/arm/include/asm/
A Dposix_types.h71 (((fd_set *)fdsetp)->fds_bits[fd >> 5] |= (1<<(fd & 31)))
75 (((fd_set *)fdsetp)->fds_bits[fd >> 5] &= ~(1<<(fd & 31)))
79 ((((fd_set *)fdsetp)->fds_bits[fd >> 5] & (1<<(fd & 31))) != 0)
/u-boot/arch/riscv/include/asm/
A Dposix_types.h74 (((fd_set *)fdsetp)->fds_bits[fd >> 5] |= (1 << (fd & 31)))
79 (((fd_set *)fdsetp)->fds_bits[fd >> 5] &= ~(1 << (fd & 31)))
84 ((((fd_set *)fdsetp)->fds_bits[fd >> 5] & (1 << (fd & 31))) != 0)
/u-boot/include/linux/
A Dposix_types.h37 unsigned long fds_bits [__FDSET_LONGS]; member

Completed in 20 milliseconds