OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:NBBY
(Results
1 - 3
of
3
) sorted by relevancy
/src/sys/sys/
types.h
331
#define
NBBY
8
/src/tools/compat/
compat_defs.h
222
#define __type_min_s(t) ((t)((1ULL << (sizeof(t) *
NBBY
- 1))))
224
#define __type_max_s(t) ((t)~((1ULL << (sizeof(t) *
NBBY
- 1))))
1285
#define setbit(a,i) ((a)[(i)/
NBBY
] |= 1<<((i)%
NBBY
))
1286
#define clrbit(a,i) ((a)[(i)/
NBBY
] &= ~(1<<((i)%
NBBY
)))
1287
#define isset(a,i) ((a)[(i)/
NBBY
] & (1<<((i)%
NBBY
)))
1288
#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 13 milliseconds
Indexes created Sat Sep 20 22:09:52 GMT 2025