Home
last modified time | relevance | path

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

1234567

/external/v8/test/mjsunit/compiler/
Dosr-maze1.js7 function bar(goal) { argument
12 if (count++ == goal) %OptimizeOsr();
16 if (count++ == goal) %OptimizeOsr();
19 if (count++ == goal) %OptimizeOsr();
23 if (count++ == goal) %OptimizeOsr();
28 if (count++ == goal) %OptimizeOsr();
31 if (count++ == goal) %OptimizeOsr();
33 if (count++ == goal) %OptimizeOsr();
38 if (count++ == goal) %OptimizeOsr();
40 if (count++ == goal) %OptimizeOsr();
/external/e2fsprogs/lib/ext2fs/
Dexpanddir.c24 blk64_t goal; member
42 es->goal = *blocknr; in expand_dir_proc()
46 (EXT2FS_B2C(fs, es->goal) == EXT2FS_B2C(fs, es->goal+1))) in expand_dir_proc()
47 new_blk = es->goal+1; in expand_dir_proc()
49 es->goal &= ~EXT2FS_CLUSTER_MASK(fs); in expand_dir_proc()
50 retval = ext2fs_new_block2(fs, es->goal, 0, &new_blk); in expand_dir_proc()
76 es->goal = new_blk; in expand_dir_proc()
110 es.goal = 0; in ext2fs_expand_dir()
Dalloc.c166 errcode_t ext2fs_new_block2(ext2_filsys fs, blk64_t goal, in ext2fs_new_block2() argument
178 if (!goal || (goal >= ext2fs_blocks_count(fs->super))) in ext2fs_new_block2()
179 goal = fs->super->s_first_data_block; in ext2fs_new_block2()
180 i = goal; in ext2fs_new_block2()
183 goal &= ~EXT2FS_CLUSTER_MASK(fs); in ext2fs_new_block2()
201 } while (i != goal); in ext2fs_new_block2()
205 errcode_t ext2fs_new_block(ext2_filsys fs, blk_t goal, in ext2fs_new_block() argument
210 retval = ext2fs_new_block2(fs, goal, map, &val); in ext2fs_new_block()
220 errcode_t ext2fs_alloc_block2(ext2_filsys fs, blk64_t goal, in ext2fs_alloc_block2() argument
236 retval = (fs->get_alloc_block)(fs, goal, &block); in ext2fs_alloc_block2()
[all …]
Dmkjournal.c219 blk64_t goal; member
239 es->goal = *blocknr; in mkjournal_proc()
243 (EXT2FS_B2C(fs, es->goal) == EXT2FS_B2C(fs, es->goal+1))) in mkjournal_proc()
244 new_blk = es->goal+1; in mkjournal_proc()
246 es->goal &= ~EXT2FS_CLUSTER_MASK(fs); in mkjournal_proc()
247 retval = ext2fs_new_block2(fs, es->goal, 0, &new_blk); in mkjournal_proc()
287 *blocknr = es->goal = new_blk; in mkjournal_proc()
362 es.goal = ext2fs_group_first_block2(fs, group); in write_journal_inode()
Dres_gdt.c104 blk_t goal = sb_blk + fs->desc_blocks + in ext2fs_create_resize_inode() local
108 retval = ext2fs_alloc_block(fs, goal, 0, &dindir_blk); in ext2fs_create_resize_inode()
/external/jetty/lib/
Dslf4j-api-1.6.1.pom59 <goal>jar</goal>
60 <goal>test-jar</goal>
73 <goal>run</goal>
Djetty-util-6.1.26.pom34 <goal>run</goal>
47 <goal>run</goal>
66 <goal>manifest</goal>
/external/jetty/
Dpom.xml_saved50 <goal>process</goal>
70 <goal>jar</goal>
96 <goal>parse-version</goal>
109 <goal>attach-version-text</goal>
122 <goal>enforce</goal>
142 <goal>enforce</goal>
178 <goal>check</goal>
229 <goal>check</goal>
574 <goal>enforce</goal>
636 <goal>update-version-text</goal>
[all …]
/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/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/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/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/autotest/client/tests/flail/
Dcontrol12 The goal is to find bugs in software without reading code or
/external/autotest/client/tests/kvm/autotest_control/
Dflail.control13 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
/external/libmicrohttpd/src/testzzuf/
DREADME4 clients and the MHD server. The goal is to expose problems in MHD's
/external/autotest/client/site_tests/ui_SystemTray/
Dcontrol.guest.link20 This test collects system tray images of different devices. The goal is collect
Dcontrol.link20 This test collects system tray images of different devices. The goal is collect

1234567