OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:NBBY
(Results
1 - 5
of
5
) sorted by relevancy
/src/external/ibm-public/postfix/dist/src/global/
record.c
157
#ifndef
NBBY
158
#define
NBBY
8 /* XXX should be in sys_defs.h */
266
if (shift >= (int) (
NBBY
* sizeof(int))) {
/src/sys/sys/
types.h
338
#define
NBBY
8
/src/external/cddl/osnet/dist/uts/common/fs/zfs/
zap_micro.c
101
word >>=
NBBY
;
/src/tools/compat/
compat_defs.h
226
#define __type_min_s(t) ((t)((1ULL << (sizeof(t) *
NBBY
- 1))))
228
#define __type_max_s(t) ((t)~((1ULL << (sizeof(t) *
NBBY
- 1))))
1298
#define setbit(a,i) ((a)[(i)/
NBBY
] |= 1<<((i)%
NBBY
))
1299
#define clrbit(a,i) ((a)[(i)/
NBBY
] &= ~(1<<((i)%
NBBY
)))
1300
#define isset(a,i) ((a)[(i)/
NBBY
] & (1<<((i)%
NBBY
)))
1301
#define isclr(a,i) (((a)[(i)/
NBBY
] & (1<<((i)%
NBBY
))) == 0
[
all
...]
/src/sys/external/isc/atheros_hal/dist/
ah_internal.h
30
#ifndef
NBBY
31
#define
NBBY
8 /* number of bits/byte */
Completed in 59 milliseconds
Indexes created Thu Apr 02 00:23:07 UTC 2026