Searched refs:goal (Results 1 - 22 of 22) sorted by relevance

/external/e2fsprogs/lib/ext2fs/
H A Dalloc.c146 * goal. Should put in a smarter one someday....
148 errcode_t ext2fs_new_block(ext2_filsys fs, blk_t goal, argument
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, argument
205 retval = (fs->get_alloc_block)(fs, (blk64_t) goal, &new);
216 retval = ext2fs_new_block(fs, goal,
263 ext2fs_set_alloc_block_callback(ext2_filsys fs, errcode_t (*func)(ext2_filsys fs, blk64_t goal, blk64_t *ret), errcode_t (**old)(ext2_filsys fs, blk64_t goal, blk64_t *ret)) argument
[all...]
H A Dmkjournal.c201 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) +
H A Dres_gdt.c94 blk_t goal = sb->s_first_data_block + fs->desc_blocks + local
98 retval = ext2fs_alloc_block(fs, goal, 0, &dindir_blk);
H A Dext2fs.h246 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,
/external/valgrind/unittest/
H A Dbigtest.cc97 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[
[all...]
/external/quake/quake/src/QW/server/
H A Dsv_move.c373 qboolean SV_CloseEnough (edict_t *ent, edict_t *goal, float dist) argument
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/
H A Dsv_move.cpp373 qboolean SV_CloseEnough (edict_t *ent, edict_t *goal, float dist) argument
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);
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/
H A DTreeParser.java201 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) { argument
225 if ( name.equals(goal) ) return t;
/external/antlr/antlr-3.4/runtime/Ruby/test/functional/parser/
H A Dbacktracking.rb50 * Remember: the goal is to avoid backtrack like the plague
/external/skia/third_party/glu/libtess/
H A Dalg-outline13 initially project all data into a plane; our goal is to robustly
19 necessarily be back-facing when viewed from some angles, but the goal
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
H A DRecognizerSharedState.as59 /** The goal of all lexer rules/methods is to create a token object.
/external/kernel-headers/original/linux/
H A Dext3_fs.h751 ext3_fsblk_t goal, int *errp);
753 ext3_fsblk_t goal, unsigned long *count, int *errp);
/external/e2fsprogs/misc/
H A Dtune2fs.c1100 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);
/external/antlr/antlr-3.4/runtime/Python/antlr3/
H A Dtree.py2278 goal = nodes[ni-1]
2279 ancestor = cls._getAncestor(adaptor, tokenNames, t, goal)
2300 def _getAncestor(adaptor, tokenNames, t, goal):
2304 if name == goal:
/external/e2fsprogs/debugfs/
H A Ddebugfs.c1417 blk_t free_blk, goal, first_free = 0; local
1423 com_err(argv[0], 0, "Usage: find_free_block [count [goal]]");
1439 goal = strtol(argv[2], &tmp, 0);
1441 com_err(argv[0], 0, "Bad goal - %s", argv[1]);
1446 goal = current_fs->super->s_first_data_block;
1449 free_blk = goal - 1;
/external/webkit/Tools/android/flex-2.5.4a/
H A Dparse.y112 goal : initlex sect1 sect1end sect2 initforrule label
/external/linux-tools-perf/config/
H A Dutilities.mak162 # The goal is to get an absolute path for an executable;
/external/e2fsprogs/e2fsck/
H A Dpass1.c2682 static errcode_t e2fsck_get_alloc_block(ext2_filsys fs, blk64_t goal, argument
2690 retval = ext2fs_new_block(fs, (blk_t) goal,
2705 retval = ext2fs_new_block(fs, (blk_t) goal, 0, &new_block);
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
H A Dstreams.rb362 development goal for this project.
/external/e2fsprogs/resize/
H A Dresize2fs.c1077 static errcode_t resize2fs_get_alloc_block(ext2_filsys fs, blk64_t goal, argument
/external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime/
H A DAntlr.Runtime.pas590 /// The goal of all lexer rules/methods is to create a token object.
/external/antlr/antlr-3.4/lib/
H A Dantlr-3.4-complete.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/antlr/ org/antlr/analysis/ org/antlr/codegen/ org/ ...

Completed in 517 milliseconds