HomeSort by relevance Sort by last modified time
    Searched refs:goal (Results 1 - 25 of 39) sorted by null

1 2

  /external/e2fsprogs/lib/ext2fs/
alloc.c 146 * goal. Should put in a smarter one someday....
148 errcode_t ext2fs_new_block(ext2_filsys fs, blk_t goal,
159 if (!goal || (goal >= fs->super->s_blocks_count))
160 goal = fs->super->s_first_data_block;
161 i = goal;
179 } while (i != goal);
187 errcode_t ext2fs_alloc_block(ext2_filsys fs, blk_t goal,
205 retval = (fs->get_alloc_block)(fs, (blk64_t) goal, &new);
216 retval = ext2fs_new_block(fs, goal, 0, &block)
    [all...]
mkjournal.c 201 blk_t goal; member in struct:mkjournal_struct
220 es->goal = *blocknr;
223 retval = ext2fs_new_block(fs, es->goal, 0, &new_blk);
261 *blocknr = es->goal = new_blk;
308 * Set the initial goal block to be roughly at the middle of
332 es.goal = (fs->super->s_blocks_per_group * group) +
res_gdt.c 94 blk_t goal = sb->s_first_data_block + fs->desc_blocks + local
98 retval = ext2fs_alloc_block(fs, goal, 0, &dindir_blk);
ext2fs.h 246 errcode_t (*get_alloc_block)(ext2_filsys fs, blk64_t goal,
565 extern errcode_t ext2fs_new_block(ext2_filsys fs, blk_t goal,
571 extern errcode_t ext2fs_alloc_block(ext2_filsys fs, blk_t goal,
575 blk64_t goal,
578 blk64_t goal,
    [all...]
  /external/valgrind/unittest/
bigtest.cc 97 std::map<StatType, int> goal; member in class:GoalStats
132 CHECK(goal.find(type) == goal.end());
133 goal[type] = value;
139 CHECK(types.size() == goal.size());
142 (*stats)[i] = goal[types[i]];
735 // Parse goal strings
737 const char * goal = goal_list[i]; local
741 && goal[j] != '='
742 && goal[j] != '\0'; j++)
    [all...]
  /external/quake/quake/src/QW/server/
sv_move.c 373 qboolean SV_CloseEnough (edict_t *ent, edict_t *goal, float dist)
379 if (goal->v.absmin[i] > ent->v.absmax[i] + dist)
381 if (goal->v.absmax[i] < ent->v.absmin[i] - dist)
395 edict_t *ent, *goal; local
399 goal = PROG_TO_EDICT(ent->v.goalentity);
409 if ( PROG_TO_EDICT(ent->v.enemy) != sv.edicts && SV_CloseEnough (ent, goal, dist) )
416 SV_NewChaseDir (ent, goal, dist);
  /external/quake/quake/src/WinQuake/
sv_move.cpp 373 qboolean SV_CloseEnough (edict_t *ent, edict_t *goal, float dist)
379 if (goal->u.v.absmin[i] > ent->u.v.absmax[i] + dist)
381 if (goal->u.v.absmax[i] < ent->u.v.absmin[i] - dist)
395 edict_t *ent, *goal; local
402 goal = PROG_TO_EDICT(ent->u.v.goalentity);
416 if ( PROG_TO_EDICT(ent->u.v.enemy) != sv.edicts && SV_CloseEnough (ent, goal, dist) )
424 SV_NewChaseDir (ent, goal, dist);
  /build/core/tasks/
ide.mk 29 $(error Only one ECLIPSE- goal may be specified: $(eclipse_project_goals))
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/
TreeParser.java 201 String goal = nodes[ni-1];
202 Object ancestor = getAncestor(adaptor, tokenNames, t, goal);
222 protected static Object getAncestor(TreeAdaptor adaptor, String[] tokenNames, Object t, String goal) {
225 if ( name.equals(goal) ) return t;
  /build/tools/droiddoc/templates-pdk/assets/
carousel.js 178 function slide(goal, id, go_left, cp) {
183 animation.goal = goal;
188 var motions = Math.abs(animation.goal - animation.origin);
195 var left = (ease(current_frame/animation.frames) * Math.abs(animation.goal - animation.origin)) - cp;
  /build/core/
product_config.mk 84 # it will be treated as a goal, and the eng variant will be used.
88 # Provide "PRODUCT-<prodname>-<goal>" targets, which lets you build
93 # Scrape the product and build names out of the goal,
97 $(error Only one PRODUCT-* goal may be specified; saw "$(product_goals)")
103 $(error Bad PRODUCT-* goal "$(goal_name)")
113 $(error "tests" has been deprecated as a build variant. Use it as a build goal instead.)
126 # Replace the PRODUCT-* goal with the build goal that it refers to.
136 # Define a rule for the PRODUCT-* goal, and make it depend on the
152 $(error Only one APP-* goal may be specified; saw "$(unbundled_goals)")
    [all...]
dumpvar.mk 58 $(error Only one "dumpvar-" goal allowed. Saw "$(MAKECMDGOALS)")
61 # If the goal is of the form "dumpvar-abs-VARNAME", then
pdk_config.mk 12 # 3) fusion is a command line build goal,
13 # PDK_FUSION_PLATFORM_ZIP is needed anyway, then do we need the 'fusion' goal?
15 # 1) pdk is a command line build goal
envsetup.mk 23 # was invoked with a PRODUCT-xxx-yyy goal.
  /external/antlr/antlr-3.4/runtime/Ruby/test/functional/parser/
backtracking.rb 50 * Remember: the goal is to avoid backtrack like the plague
  /ndk/build/core/
build-local.mk 168 # If a goal is DUMP_xxx then we dump a variable xxx instead
178 # We only support a single DUMP_XXX goal at a time for now.
  /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
RecognizerSharedState.as 59 /** The goal of all lexer rules/methods is to create a token object.
  /external/kernel-headers/original/linux/
ext3_fs.h 751 ext3_fsblk_t goal, int *errp);
753 ext3_fsblk_t goal, unsigned long *count, int *errp);
  /external/e2fsprogs/misc/
tune2fs.c 1100 blk_t blk, new_blk, goal; local
1121 goal = ext2fs_group_first_block(fs, group);
1125 goal = new_blk;
1127 retval = ext2fs_new_block(fs, goal, NULL, &new_blk);
    [all...]
  /external/antlr/antlr-3.4/runtime/Python/antlr3/
tree.py     [all...]
  /external/e2fsprogs/debugfs/
debugfs.c 1417 blk_t free_blk, goal, first_free = 0; local
    [all...]
  /external/webkit/Tools/android/flex-2.5.4a/
parse.y 112 goal : initlex sect1 sect1end sect2 initforrule label
  /external/ceres-solver/docs/
bundleadjustment.tex 6 Given a set of measured image feature locations and correspondences, the goal of bundle adjustment is to find 3D point positions and camera parameters that minimize the reprojection error. This optimization problem is usually formulated as a non-linear least squares problem, where the error is the squared $L_2$ norm of the difference between the observed feature location and the projection of the corresponding 3D point on the image plane of the camera. Ceres has extensive support for solving bundle adjustment problems.
  /external/linux-tools-perf/config/
utilities.mak 162 # The goal is to get an absolute path for an executable;
  /ndk/sources/host-tools/nawk-20071023/
FIXES 154 for regular expressions, where the goal is to match specific
    [all...]

Completed in 502 milliseconds

1 2