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:bitmap_t
(Results
1 - 3
of
3
) sorted by relevance
/third_party/exfatprogs/include/
H
A
D
libexfat.h
93
typedef __u8
bitmap_t
;
typedef
95
typedef __u32
bitmap_t
;
typedef
98
#define BITS_PER (sizeof(
bitmap_t
) * 8)
103
(DIV_ROUND_UP(__c_count, BITS_PER) * sizeof(
bitmap_t
))
109
return ((
bitmap_t
*)(bmap))[BIT_ENTRY(cc)] & BIT_MASK(cc);
in exfat_bitmap_get()
116
(((
bitmap_t
*)(bmap))[BIT_ENTRY(cc)] |= BIT_MASK(cc));
in exfat_bitmap_set()
122
(((
bitmap_t
*)(bmap))[BIT_ENTRY(cc)] &= ~BIT_MASK(cc));
in exfat_bitmap_clear()
/third_party/exfatprogs/fsck/
H
A
D
fsck.c
1208
bitmap_t
*disk_b, *alloc_b, *ohead_b;
in write_bitmap()
1215
disk_b = (
bitmap_t
*)exfat->disk_bitmap;
in write_bitmap()
1216
alloc_b = (
bitmap_t
*)exfat->alloc_bitmap;
in write_bitmap()
1217
ohead_b = (
bitmap_t
*)exfat->ohead_bitmap;
in write_bitmap()
1219
for (i = 0; i < bitmap_bytes / sizeof(
bitmap_t
); i++)
in write_bitmap()
1223
while (i < bitmap_bytes / sizeof(
bitmap_t
)) {
in write_bitmap()
1229
byte_offset = ((i * sizeof(
bitmap_t
)) / 512) * 512;
in write_bitmap()
1237
i = (byte_offset + write_bytes) / sizeof(
bitmap_t
);
in write_bitmap()
1379
bitmap_t
*disk_b, *alloc_b, *ohead_b;
in rescue_orphan_clusters()
1421
disk_b = (
bitmap_t
*)exfa
in rescue_orphan_clusters()
[all...]
/third_party/exfatprogs/mkfs/
H
A
D
mkfs.c
317
bitmap = calloc(round_up(finfo.bitmap_byte_len, sizeof(
bitmap_t
)),
in exfat_create_bitmap()
Completed in 4 milliseconds