Home
last modified time | relevance | path

Searched refs:goal (Results 1 – 25 of 163) sorted by relevance

1234567

/external/e2fsprogs/lib/ext2fs/
Dalloc.c147 errcode_t ext2fs_new_block3(ext2_filsys fs, blk64_t goal, in ext2fs_new_block3() argument
153 errcode_t (*gab)(ext2_filsys fs, blk64_t goal, blk64_t *ret); in ext2fs_new_block3()
169 retval = gab2(fs, goal, &b, ctx); in ext2fs_new_block3()
175 retval = gab(fs, goal, &b); in ext2fs_new_block3()
184 if (!goal || (goal >= ext2fs_blocks_count(fs->super))) in ext2fs_new_block3()
185 goal = fs->super->s_first_data_block; in ext2fs_new_block3()
186 goal &= ~EXT2FS_CLUSTER_MASK(fs); in ext2fs_new_block3()
189 goal, ext2fs_blocks_count(fs->super) - 1, &b); in ext2fs_new_block3()
190 if ((retval == ENOENT) && (goal != fs->super->s_first_data_block)) in ext2fs_new_block3()
192 fs->super->s_first_data_block, goal - 1, &b); in ext2fs_new_block3()
[all …]
Dexpanddir.c26 blk64_t goal; member
45 es->goal = *blocknr; in expand_dir_proc()
49 (EXT2FS_B2C(fs, es->goal) == EXT2FS_B2C(fs, es->goal+1))) in expand_dir_proc()
50 new_blk = es->goal+1; in expand_dir_proc()
52 es->goal &= ~EXT2FS_CLUSTER_MASK(fs); in expand_dir_proc()
53 retval = ext2fs_new_block2(fs, es->goal, 0, &new_blk); in expand_dir_proc()
74 es->goal = new_blk; in expand_dir_proc()
111 es.goal = ext2fs_find_inode_goal(fs, dir, &inode, 0); in ext2fs_expand_dir()
Dfallocate.c669 struct ext2_inode *inode, blk64_t goal, in extent_fallocate() argument
698 if (goal == ~0ULL) in extent_fallocate()
699 goal = ext2fs_find_inode_goal(fs, ino, inode, start); in extent_fallocate()
701 goal, max_blocks - 1, &goal); in extent_fallocate()
702 goal += start; in extent_fallocate()
704 NULL, start, len, goal); in extent_fallocate()
713 goal = left_extent.e_pblk - (left_extent.e_lblk - start); in extent_fallocate()
716 left_extent.e_lblk - start, goal); in extent_fallocate()
728 goal = left_extent.e_pblk + (range_start - left_extent.e_lblk); in extent_fallocate()
754 goal = right_extent.e_pblk - in extent_fallocate()
[all …]
Dmkjournal.c265 blk_t num_blocks, blk64_t goal, int flags) in write_journal_inode() argument
289 if (goal == ~0ULL) in write_journal_inode()
290 goal = get_midpoint_journal_block(fs); in write_journal_inode()
307 &inode, goal, 0, num_blocks); in write_journal_inode()
436 blk64_t goal, int flags) in ext2fs_add_journal_inode2() argument
529 num_blocks, goal, flags))) in ext2fs_add_journal_inode2()
Dext2fs.h266 errcode_t (*get_alloc_block)(ext2_filsys fs, blk64_t goal,
268 errcode_t (*get_alloc_block2)(ext2_filsys fs, blk64_t goal,
294 errcode_t (*new_range)(ext2_filsys fs, int flags, blk64_t goal,
675 extern errcode_t ext2fs_new_block(ext2_filsys fs, blk_t goal,
677 extern errcode_t ext2fs_new_block2(ext2_filsys fs, blk64_t goal,
679 extern errcode_t ext2fs_new_block3(ext2_filsys fs, blk64_t goal,
690 extern errcode_t ext2fs_alloc_block(ext2_filsys fs, blk_t goal,
692 extern errcode_t ext2fs_alloc_block2(ext2_filsys fs, blk64_t goal,
694 extern errcode_t ext2fs_alloc_block3(ext2_filsys fs, blk64_t goal,
700 blk64_t goal,
[all …]
Dres_gdt.c117 blk_t goal = sb_blk + fs->desc_blocks + in ext2fs_create_resize_inode() local
121 retval = ext2fs_alloc_block(fs, goal, 0, &dindir_blk); in ext2fs_create_resize_inode()
/external/apache-commons-math/src/main/java/org/apache/commons/math/optimization/univariate/
DAbstractUnivariateRealOptimizer.java218 public double optimize(UnivariateRealFunction f, GoalType goal, in optimize() argument
225 this.optimizationGoal = goal; in optimize()
250 public double optimize(UnivariateRealFunction f, GoalType goal, in optimize() argument
253 return optimize(f, goal, min, max, min + 0.5 * (max - min)); in optimize()
DBracketFinder.java120 GoalType goal, in search() argument
125 final boolean isMinim = goal == GoalType.MINIMIZE; in search()
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/
DTreeParser.java201 String goal = nodes[ni-1]; in inContext()
202 Object ancestor = getAncestor(adaptor, tokenNames, t, goal); in inContext()
222 …tected static Object getAncestor(TreeAdaptor adaptor, String[] tokenNames, Object t, String goal) { in getAncestor() argument
225 if ( name.equals(goal) ) return t; in getAncestor()
/external/apache-commons-math/src/main/java/org/apache/commons/math/optimization/linear/
DAbstractLinearOptimizer.java56 protected GoalType goal; field in AbstractLinearOptimizer
112 this.goal = goalType; in optimize()
/external/okhttp/okhttp-hpacktests/
DREADME.md14 * Add maven goal to avoid manual call to git submodule init.
16 * Add maven goal to generate stories and a pull request to hpack-test-case
/external/e2fsprogs/misc/
Dmk_hugefiles.c59 static blk64_t goal; variable
287 *ino, &inode, goal, 0, num); in mk_hugefile()
482 goal = get_start_block(fs, num_slack); in mk_hugefiles()
483 goal = round_up_align(goal, align, part_offset); in mk_hugefiles()
498 num_blocks = ext2fs_blocks_count(fs->super) - goal; in mk_hugefiles()
Dmke2fs.c371 blk64_t goal = 0; in packed_allocate_tables() local
374 retval = ext2fs_new_block2(fs, goal, NULL, &goal); in packed_allocate_tables()
377 ext2fs_block_alloc_stats2(fs, goal, +1); in packed_allocate_tables()
378 ext2fs_block_bitmap_loc_set(fs, i, goal); in packed_allocate_tables()
381 retval = ext2fs_new_block2(fs, goal, NULL, &goal); in packed_allocate_tables()
384 ext2fs_block_alloc_stats2(fs, goal, +1); in packed_allocate_tables()
385 ext2fs_inode_bitmap_loc_set(fs, i, goal); in packed_allocate_tables()
389 retval = ext2fs_get_free_blocks2(fs, goal, end, in packed_allocate_tables()
391 fs->block_map, &goal); in packed_allocate_tables()
394 ext2fs_block_alloc_stats_range(fs, goal, in packed_allocate_tables()
[all …]
/external/libconstrainedcrypto/
DREADME4 This is *NOT* a general purpose crypto library. Our goal is to standardize on
16 libmincrypt) due to historic reasons, the goal is to clean these up and switch
/external/antlr/antlr-3.4/antlr3-maven-plugin/src/site/apt/examples/
Dsimple.apt15 <goal>antlr</goal>
Dlibraries.apt37 <goal>antlr</goal>
/external/apache-commons-math/src/main/java/org/apache/commons/math/optimization/direct/
DPowellOptimizer.java133 if (goal == GoalType.MINIMIZE) { in doOptimize()
260 bracket.search(f, goal, 0, 1); in search()
261 optimum = optim.optimize(f, goal, in search()
/external/apache-commons-math/src/main/java/org/apache/commons/math/optimization/general/
DAbstractScalarDifferentiableOptimizer.java54 protected GoalType goal; field in AbstractScalarDifferentiableOptimizer
190 goal = goalType; in optimize()
DNonLinearConjugateGradientOptimizer.java127 if (goal == GoalType.MINIMIZE) { in doOptimize()
171 if (goal == GoalType.MINIMIZE) { in doOptimize()
/external/ltp/
DREADME6 project goal is to deliver tests to the open source community that validate the
10 and related features. Our goal is to improve the Linux kernel and system
/external/e2fsprogs/contrib/android/
Dbasefs_allocator.c71 static errcode_t basefs_block_allocator(ext2_filsys fs, blk64_t goal, in basefs_block_allocator() argument
89 retval = ext2fs_new_block2(fs, goal, fs->block_map, ret); in basefs_block_allocator()
/external/swiftshader/
DREADME.google7 Direct3D 9 graphics APIs12. Its goal is to provide hardware independence for
/external/autotest/client/tests/flail/
Dcontrol12 The goal is to find bugs in software without reading code or
/external/zxing/core/
DREADME.google11 barcode reader library implemented in Java. Our goal is to support decoding of
/external/autotest/client/tests/fsfuzzer/
Dcontrol11 Fuzzing is slang for fault injection via random inputs. The goal is to

1234567