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

1 2 3

  /build/make/core/
distdir.mk 22 # pairs of goal:distfile
44 $(foreach goal,$(1), \
45 $(eval _all_dist_goal_output_pairs += $$(goal):$$(dst))))
56 $(foreach goal,$(sort $(_all_dist_goals)), \
57 $(eval $$(goal): _dist_$$(goal))) \
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
94 # Scrape the product and build names out of the goal,
98 $(error Only one PRODUCT-* goal may be specified; saw "$(product_goals)")
104 $(error Bad PRODUCT-* goal "$(goal_name)")
114 $(error "tests" has been deprecated as a build variant. Use it as a build goal instead.)
127 # Replace the PRODUCT-* goal with the build goal that it refers to.
143 $(error Only one APP-* goal may be specified; saw "$(unbundled_goals)")
  /build/make/packaging/
distdir.mk 23 $(eval goal := $(call word-colon,1,$(pair))) \
25 $(eval .PHONY: _dist_$$(goal)) \
27 $(eval _dist_$$(goal): $$(DIST_DIR)/$$(output)), \
28 $(eval _dist_$$(goal):)))
  /external/python/google-api-python-client/samples/analytics/
management_v3_reference.py 249 """Prints all the goal info in the Goals collection.
260 for goal in goals_response.get('items', []):
261 print('Goal ID = %s' % goal.get('id'))
262 print('Kind = %s' % goal.get('kind'))
263 print('Self Link = %s' % goal.get('selfLink'))
265 print('Account ID = %s' % goal.get('accountId'))
266 print('Web Property ID = %s' % goal.get('webPropertyId'))
268 goal.get('internalWebPropertyId')))
269 print('Profile ID = %s' % goal.get('profileId')
    [all...]
  /external/e2fsprogs/lib/ext2fs/
expanddir.c 26 blk64_t goal; member in struct:expand_dir_struct
45 es->goal = *blocknr;
49 (EXT2FS_B2C(fs, es->goal) == EXT2FS_B2C(fs, es->goal+1)))
50 new_blk = es->goal+1;
52 es->goal &= ~EXT2FS_CLUSTER_MASK(fs);
53 retval = ext2fs_new_block2(fs, es->goal, 0, &new_blk);
74 es->goal = new_blk;
111 es.goal = ext2fs_find_inode_goal(fs, dir, &inode, 0);
alloc.c 145 * goal. Should put in a smarter one someday....
147 errcode_t ext2fs_new_block3(ext2_filsys fs, blk64_t goal,
153 errcode_t (*gab)(ext2_filsys fs, blk64_t goal, blk64_t *ret);
169 retval = gab2(fs, goal, &b, ctx);
175 retval = gab(fs, goal, &b);
184 if (!goal || (goal >= ext2fs_blocks_count(fs->super)))
185 goal = fs->super->s_first_data_block;
186 goal &= ~EXT2FS_CLUSTER_MASK(fs);
189 goal, ext2fs_blocks_count(fs->super) - 1, &b)
    [all...]
fallocate.c 120 printf("start=%llu len=%llu, goal=%llu\n", range_start, range_len,
128 /* The allocation goal must be as far into a cluster as range_start. */
669 struct ext2_inode *inode, blk64_t goal,
698 if (goal == ~0ULL)
699 goal = ext2fs_find_inode_goal(fs, ino, inode, start);
701 goal, max_blocks - 1, &goal);
702 goal += start;
704 NULL, start, len, goal);
713 goal = left_extent.e_pblk - (left_extent.e_lblk - start)
    [all...]
mkjournal.c 231 * Calculate the initial goal block to be roughly at the middle of the
265 blk_t num_blocks, blk64_t goal, int flags)
289 if (goal == ~0ULL)
290 goal = get_midpoint_journal_block(fs);
307 &inode, goal, 0, num_blocks);
438 blk64_t goal, int flags)
531 num_blocks, goal, flags)))
  /external/apache-commons-math/src/main/java/org/apache/commons/math/optimization/univariate/
AbstractUnivariateRealOptimizer.java 218 public double optimize(UnivariateRealFunction f, GoalType goal,
225 this.optimizationGoal = goal;
250 public double optimize(UnivariateRealFunction f, GoalType goal,
253 return optimize(f, goal, min, max, min + 0.5 * (max - min));
BracketFinder.java 112 * @param goal {@link GoalType Goal type}.
120 GoalType goal,
125 final boolean isMinim = goal == GoalType.MINIMIZE;
  /external/apache-commons-math/src/main/java/org/apache/commons/math/optimization/linear/
AbstractLinearOptimizer.java 53 * Type of optimization goal: either {@link GoalType#MAXIMIZE} or {@link GoalType#MINIMIZE}.
56 protected GoalType goal; field in class:AbstractLinearOptimizer
112 this.goal = goalType;
  /art/test/common/
stack_inspect.cc 71 const ArtMethod* goal,
80 if (goal == stack_visitor->GetMethod()) {
113 ArtMethod* goal = jni::DecodeArtMethod(id); local
115 if (!IsMethodInterpreted(soa.Self(), goal, require_deoptimizable, &is_interpreted)) {
120 goal->GetEntryPointFromQuickCompiledCode());
  /frameworks/av/media/libmediametrics/
MediaAnalyticsItem.cpp 1100 int32_t goal = 0; local
1103 goal += sizeof(uint32_t); // overall length, including the length field
1104 goal += sizeof(uint32_t); // encoding version
1105 goal += sizeof(uint32_t); // # properties
1110 goal += sizeof(uint16_t); // name length
1111 goal += strlen(prop->mName) + 1; // string + null
1112 goal += sizeof(uint8_t); // type
1113 goal += sizeof(uint16_t); // size of value
    [all...]
  /external/syzkaller/prog/
mutation_test.go 162 goal, err := target.Deserialize([]byte(test[1]))
164 t.Fatalf("failed to deserialize goal program: %v", err)
166 want := goal.Serialize()
171 for _, c := range goal.Calls {
178 p1.Mutate(rs, len(goal.Calls), ct, nil)
185 t.Fatalf("failed to achieve goal, original:%s\ngoal:%s", test[0], test[1])
  /external/apache-commons-math/src/main/java/org/apache/commons/math/optimization/general/
AbstractScalarDifferentiableOptimizer.java 54 protected GoalType goal; field in class:AbstractScalarDifferentiableOptimizer
190 goal = goalType;
NonLinearConjugateGradientOptimizer.java 127 if (goal == GoalType.MINIMIZE) {
171 if (goal == GoalType.MINIMIZE) {
  /external/e2fsprogs/misc/
mk_hugefiles.c 64 static blk64_t goal; variable
311 goal, ext2fs_blocks_count(fs->super) - 1, &end);
314 goal = end;
316 retval = ext2fs_find_first_set_block_bitmap2(fs->block_map, goal,
323 if (!num || bend - goal < left)
324 n = bend - goal;
325 pblk = goal;
328 goal += n;
572 goal = get_start_block(fs, num_slack);
573 goal = round_up_align(goal, align, part_offset)
    [all...]
  /build/make/core/tasks/
ide.mk 29 $(error Only one ECLIPSE- goal may be specified: $(eclipse_project_goals))
  /external/antlr/runtime/Java/src/main/java/org/antlr/runtime/tree/
TreeParser.java 209 String goal = nodes[ni-1];
210 Object ancestor = getAncestor(adaptor, tokenNames, t, goal);
230 protected static Object getAncestor(TreeAdaptor adaptor, String[] tokenNames, Object t, String goal) {
233 if ( name.equals(goal) ) return t;
  /build/make/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;
  /external/e2fsprogs/contrib/android/
basefs_allocator.c 71 static errcode_t basefs_block_allocator(ext2_filsys fs, blk64_t goal,
89 retval = ext2fs_new_block2(fs, goal, fs->block_map, ret);
  /external/apache-commons-math/src/main/java/org/apache/commons/math/optimization/direct/
PowellOptimizer.java 133 if (goal == GoalType.MINIMIZE) {
260 bracket.search(f, goal, 0, 1);
261 optimum = optim.optimize(f, goal,
  /external/pdfium/core/fxcrt/
cfx_decimal.cpp 198 inline bool decimal_helper_outofrange(uint64_t a[], uint8_t al, uint8_t goal) {
199 for (int i = goal; i < al; i++) {
208 uint8_t goal,
212 decimal_helper_outofrange(a, al, goal))) {
217 decimal_helper_normalize_any(a, goal);
218 decimal_helper_inc_any(a, goal);
  /external/antlr/runtime/Ruby/test/functional/parser/
backtracking.rb 50 * Remember: the goal is to avoid backtrack like the plague
  /external/vulkan-validation-layers/
GOVERNANCE.md 6 - The goal is for validation layer behavior to enforce the vulkan specification on applications. Questions on specification
50 - The goal is to be responsive to contributors while ensuring acceptance criteria is met and to facilitate their submissions

Completed in 1939 milliseconds

1 2 3