Home
Sort by
last modified time
|
relevance
|
path
Repository(s)
applications
arkcompiler
base
build
commonlibrary
developtools
device
docs
domains
drivers
foundation
ide
interface
kernel
napi_generator
productdefine
test
third_party
vendor
select all
invert selection
clear
Full Search
Search through all text tokens(words,strings,identifiers,numbers) in index.
Definition
Only finds symbol definitions(where e.g a variable(function,...) is defined).
Symbol
Only finds symbol(e.g. methods classes,function,variables).
File Path
Path of the source file(use "/").If you want just exact path,enclose it in "".Source files end with: .jar/.bz2/.a/.h/.java...
History
History log comments.
Type
Any
Bzip(2)
C
Clojure
C#
C++
ELF
Erlang
Image file
Fortran
Golang
GZIP
Haskell
Jar
Java
Java class
JavaScript
Lisp
Lua
Pascal
Perl
PHP
Plain Text
PL/SQL
Python
Rust
Scala
Shell script
SQL
Tar
Tcl
Troff
UUEncoded
Visual Basic
XML
Zip
Type of analyzer used to filter file types include with selected(e.g. just C sources).
Help
Searched
refs:NBBY
(Results
1 - 23
of
23
) sorted by relevance
/kernel/linux/linux-5.10/drivers/net/wireless/broadcom/brcm80211/include/
H
A
D
brcmu_utils.h
34
#ifndef
NBBY
/* the BSD family defines
NBBY
*/
35
#define
NBBY
8 /* 8 bits per byte */
macro
36
#endif /* #ifndef
NBBY
*/
37
#define setbit(a, i) (((u8 *)a)[(i)/
NBBY
] |= 1<<((i)%
NBBY
))
38
#define clrbit(a, i) (((u8 *)a)[(i)/
NBBY
] &= ~(1<<((i)%
NBBY
)))
39
#define isset(a, i) (((const u8 *)a)[(i)/
NBBY
] & (1<<((i)%
NBBY
)))
[all...]
/kernel/linux/linux-6.6/drivers/net/wireless/broadcom/brcm80211/include/
H
A
D
brcmu_utils.h
34
#ifndef
NBBY
/* the BSD family defines
NBBY
*/
35
#define
NBBY
8 /* 8 bits per byte */
macro
36
#endif /* #ifndef
NBBY
*/
37
#define setbit(a, i) (((u8 *)a)[(i)/
NBBY
] |= 1<<((i)%
NBBY
))
38
#define clrbit(a, i) (((u8 *)a)[(i)/
NBBY
] &= ~(1<<((i)%
NBBY
)))
39
#define isset(a, i) (((const u8 *)a)[(i)/
NBBY
] & (1<<((i)%
NBBY
)))
[all...]
/kernel/linux/linux-5.10/fs/xfs/libxfs/
H
A
D
xfs_attr_sf.h
30
((1 << (
NBBY
*(int)sizeof(uint8_t))) - 1)
H
A
D
xfs_format.h
1502
#define XFS_INODES_PER_CHUNK (
NBBY
* sizeof(xfs_inofree_t))
1508
#define XFS_INOBT_HOLEMASK_BITS (
NBBY
* sizeof(uint16_t))
1510
(XFS_INODES_PER_CHUNK / (
NBBY
* sizeof(uint16_t)))
H
A
D
xfs_defer.c
251
BUILD_BUG_ON(
NBBY
* sizeof(ordered) < XFS_DEFER_OPS_NR_BUFS);
in xfs_defer_trans_roll()
H
A
D
xfs_log_format.h
452
#define NBWORD (
NBBY
* sizeof(unsigned int))
H
A
D
xfs_trans_resv.c
213
rtbmp_bytes = (MAXEXTLEN / mp->m_sb.sb_rextsize) /
NBBY
;
in xfs_rtalloc_log_count()
250
* the realtime bitmap: ((MAXEXTLEN / rtextsize) /
NBBY
) bytes
302
* the realtime bitmap: 2 exts * ((MAXEXTLEN / rtextsize) /
NBBY
) bytes
H
A
D
xfs_ialloc_btree.c
587
ASSERT(nextbit < (sizeof(rec->ir_holemask) *
NBBY
));
in xfs_inobt_irec_to_allocmask()
H
A
D
xfs_sb.c
352
NBBY
* sbp->sb_blocksize);
in xfs_validate_sb_common()
/kernel/linux/linux-6.6/fs/xfs/libxfs/
H
A
D
xfs_attr_sf.h
30
((1 << (
NBBY
*(int)sizeof(uint8_t))) - 1)
H
A
D
xfs_format.h
1415
#define XFS_INODES_PER_CHUNK (
NBBY
* sizeof(xfs_inofree_t))
1421
#define XFS_INOBT_HOLEMASK_BITS (
NBBY
* sizeof(uint16_t))
1423
(XFS_INODES_PER_CHUNK / (
NBBY
* sizeof(uint16_t)))
H
A
D
xfs_defer.c
290
BUILD_BUG_ON(
NBBY
* sizeof(dres->dr_ordered) < XFS_DEFER_OPS_NR_BUFS);
in xfs_defer_save_resources()
H
A
D
xfs_log_format.h
489
#define NBWORD (
NBBY
* sizeof(unsigned int))
H
A
D
xfs_trans_resv.c
223
rtbmp_bytes = (XFS_MAX_BMBT_EXTLEN / mp->m_sb.sb_rextsize) /
NBBY
;
in xfs_rtalloc_block_count()
282
* the realtime bitmap: ((XFS_BMBT_MAX_EXTLEN / rtextsize) /
NBBY
) bytes
366
* 2 exts * ((XFS_BMBT_MAX_EXTLEN / rtextsize) /
NBBY
) bytes
H
A
D
xfs_ialloc_btree.c
658
ASSERT(nextbit < (sizeof(rec->ir_holemask) *
NBBY
));
in xfs_inobt_irec_to_allocmask()
H
A
D
xfs_sb.c
509
NBBY
* sbp->sb_blocksize);
in xfs_validate_sb_common()
/kernel/linux/linux-5.10/fs/xfs/
H
A
D
xfs_linux.h
110
#define
NBBY
8 /* number of bits per byte */
macro
H
A
D
xfs_rtalloc.c
947
nrbmblocks = howmany_64(nrextents,
NBBY
* sbp->sb_blocksize);
in xfs_growfs_rt()
1005
nsbp->sb_rbmblocks *
NBBY
*
in xfs_growfs_rt()
/kernel/linux/linux-6.6/fs/xfs/scrub/
H
A
D
rtsummary.c
166
rtbmp_bytes = howmany_64(mp->m_sb.sb_rextents,
NBBY
);
in xchk_rtsum_compute()
/kernel/linux/linux-6.6/fs/xfs/
H
A
D
xfs_linux.h
113
#define
NBBY
8 /* number of bits per byte */
macro
H
A
D
xfs_rtalloc.c
1000
nrbmblocks = howmany_64(nrextents,
NBBY
* sbp->sb_blocksize);
in xfs_growfs_rt()
1057
nrblocks_step = (bmbno + 1) *
NBBY
* nsbp->sb_blocksize *
in xfs_growfs_rt()
/kernel/linux/linux-5.10/drivers/net/wireless/broadcom/brcm80211/brcmsmac/phy/
H
A
D
phy_hal.h
150
u8 vec[MAXCHANNEL /
NBBY
];
/kernel/linux/linux-6.6/drivers/net/wireless/broadcom/brcm80211/brcmsmac/phy/
H
A
D
phy_hal.h
145
u8 vec[MAXCHANNEL /
NBBY
];
Completed in 39 milliseconds