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:segs_per_zone
(Results
1 - 6
of
6
) sorted by relevance
/third_party/f2fs-tools/mkfs/
H
A
D
f2fs_format.c
45
#define prev_zone(cur) (c.cur_seg[cur] - c.
segs_per_zone
)
46
#define next_zone(cur) (c.cur_seg[cur] + c.
segs_per_zone
)
47
#define last_zone(cur) ((cur - 1) * c.
segs_per_zone
)
326
set_sb(segment_count, (c.total_segments / c.
segs_per_zone
*
in f2fs_prepare_super_block()
327
c.
segs_per_zone
));
in f2fs_prepare_super_block()
428
diff = total_meta_segments % (c.
segs_per_zone
);
in f2fs_prepare_super_block()
431
(c.
segs_per_zone
- diff));
in f2fs_prepare_super_block()
437
c.
segs_per_zone
* c.blks_per_seg);
in f2fs_prepare_super_block()
470
total_zones = get_sb(segment_count) / (c.
segs_per_zone
) -
in f2fs_prepare_super_block()
/third_party/f2fs-tools/fsck/
H
A
D
resize.c
24
uint32_t
segs_per_zone
= get_sb(segs_per_sec) * get_sb(secs_per_zone);
in get_new_sb()
local
29
zone_size_bytes = segment_size_bytes *
segs_per_zone
;
in get_new_sb()
127
diff = total_meta_segments %
segs_per_zone
;
in get_new_sb()
130
(
segs_per_zone
- diff));
in get_new_sb()
H
A
D
mount.c
867
unsigned int segment_count, segs_per_sec, secs_per_zone,
segs_per_zone
;
in sanity_check_raw_super()
local
913
segs_per_zone
= segs_per_sec * secs_per_zone;
in sanity_check_raw_super()
953
if (segment_count != dev_segs /
segs_per_zone
*
segs_per_zone
) {
in sanity_check_raw_super()
H
A
D
fsck.c
2422
unsigned int
segs_per_zone
= sbi->segs_per_sec * sbi->secs_per_zone;
in last_vblk_off_in_zone()
local
2425
for (s =
segs_per_zone
- 1; s >= 0; s--) {
in last_vblk_off_in_zone()
3017
unsigned int
segs_per_zone
= sbi->segs_per_sec * sbi->secs_per_zone;
in chk_and_fix_wp_with_sit()
local
3037
cs->segno < zone_segno +
segs_per_zone
)
in chk_and_fix_wp_with_sit()
/third_party/f2fs-tools/include/
H
A
D
f2fs_fs.h
474
uint32_t
segs_per_zone
;
member
1619
c.
segs_per_zone
)
/third_party/f2fs-tools/lib/
H
A
D
libf2fs.c
696
c.
segs_per_zone
= 1;
in f2fs_init_configuration()
1271
c.
segs_per_zone
= c.segs_per_sec * c.secs_per_zone;
Completed in 24 milliseconds