OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:NBBY
(Results
1 - 8
of
8
) sorted by null
/external/chromium_org/third_party/openssl/openssl/apps/
s_apps.h
128
#define
NBBY
8 /* number of bits in a byte */
137
#define NFDBITS (sizeof(fd_mask) *
NBBY
) /* bits per mask (power of 2!)*/
/external/openssl/apps/
s_apps.h
128
#define
NBBY
8 /* number of bits in a byte */
137
#define NFDBITS (sizeof(fd_mask) *
NBBY
) /* bits per mask (power of 2!)*/
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/sys/
param.h
38
#define
NBBY
CHAR_BIT
55
#define setbit(a,i) ((a)[(i)/
NBBY
] |= 1<<((i)%
NBBY
))
56
#define clrbit(a,i) ((a)[(i)/
NBBY
] &= ~(1<<((i)%
NBBY
)))
57
#define isset(a,i) ((a)[(i)/
NBBY
] & (1<<((i)%
NBBY
)))
58
#define isclr(a,i) (((a)[(i)/
NBBY
] & (1<<((i)%
NBBY
))) == 0)
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/sys/
param.h
38
#define
NBBY
CHAR_BIT
55
#define setbit(a,i) ((a)[(i)/
NBBY
] |= 1<<((i)%
NBBY
))
56
#define clrbit(a,i) ((a)[(i)/
NBBY
] &= ~(1<<((i)%
NBBY
)))
57
#define isset(a,i) ((a)[(i)/
NBBY
] & (1<<((i)%
NBBY
)))
58
#define isclr(a,i) (((a)[(i)/
NBBY
] & (1<<((i)%
NBBY
))) == 0)
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/X11/
Xpoll.h
76
#ifndef
NBBY
77
#define
NBBY
8 /* number of bits in a byte */
81
#define NFDBITS (sizeof(fd_mask) *
NBBY
) /* bits per mask */
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/X11/
Xpoll.h
76
#ifndef
NBBY
77
#define
NBBY
8 /* number of bits in a byte */
81
#define NFDBITS (sizeof(fd_mask) *
NBBY
) /* bits per mask */
/external/tcpdump/
tcpdump-stdinc.h
58
#ifndef
NBBY
59
#define
NBBY
8
130
#ifndef
NBBY
131
#define
NBBY
8
/hardware/broadcom/wlan/bcmdhd/dhdutil/include/
bcmutils.h
657
#ifndef
NBBY
/* the BSD family defines
NBBY
*/
658
#define
NBBY
8 /* 8 bits per byte */
659
#endif /* #ifndef
NBBY
*/
666
#define setbit(a, i) (((uint8 *)a)[(i) /
NBBY
] |= 1 << ((i) %
NBBY
))
667
#define clrbit(a, i) (((uint8 *)a)[(i) /
NBBY
] &= ~(1 << ((i) %
NBBY
)))
668
#define isset(a, i) (((const uint8 *)a)[(i) /
NBBY
] & (1 << ((i) %
NBBY
)))
[
all
...]
Completed in 628 milliseconds