HomeSort by relevance Sort by last modified time
    Searched refs:branch (Results 101 - 125 of 276) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/chromium_org/v8/test/webkit/
dfg-branch-not-fail.js 25 "Check that short-circuiting Branch(LogicalNot(@a)) and then failing speculation does not result in the branch being taken the wrong way."
dfg-cfg-simplify-eliminate-set-local-type-check-then-branch-not-null.js 25 "Tests what happens when CFG simplification leads to the elimination of a set local that had a type check, and then we branch on the variable not being null."
dfg-other-branch.js 25 "This tests that speculating other on a branch does not corrupt state."
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/builderTemplate/
buildAll.bat 52 echo "usage: buildAll [-mapVersionTag HEAD|<branch name>] [-vm <url to java executable to run build>] [-bc <bootclasspath>] [-target <buildall target to execute>] [-buildID <buildID, e.g. 2.1.2>] [-ftp <userid> <password>] I|M"
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/properties/
feedPublish.eclipse.properties 24 branch=HEAD
feedPublish.emf.properties 24 branch=HEAD
feedPublish.uml2.properties 24 branch=HEAD
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/scripts_cvs/searchcvs/www/projectName/
searchcvs.php 21 array("regex" => "/branch: ?(\S+)/", "sql" => "`branch` LIKE '%%%s%%'", "sqlpart" => "having") //is a calculated value, won't work in WHERE
69 /* 1.1.2.x <- 1.1.0.2 = branch tag, likewise, 1.1.4.x <- 1.1.0.4 = branch tag, so dynamically rewrite a.b.c.d to a.b.0.c to find the branch tag */
70 $branch = "IF(`revision` LIKE '%.%.%.%', (SELECT `tagname` FROM `tags` NATURAL JOIN `filetags` WHERE `fid` = `ofid` AND `revision` = CONCAT(SUBSTRING_INDEX(`orev`, '.', 2), '.0.', SUBSTRING_INDEX(SUBSTRING_INDEX(`orev`, '.', -2), '.', 1))), 'HEAD')"; variable
71 $sql = "SELECT SQL_CALC_FOUND_ROWS `cvsname`, `revision`, `date`, `author`, `message`, `keyword_subs`, `bugid`, `revision` AS `orev`, `fid` AS `ofid`, $branch AS `branch`$ec FROM `cvsfiles` NATURAL JOIN `commits` NATURAL LEFT JOIN `bugs` $where GROUP BY `fid`, `revision`, `bugid` $having $order LIMIT $offset, $pagesize";
95 print "<a href=\"" . cvsfile($row["cvsname"]) . "\"><abbr title=\"{$row['cvsname']}\">$file</abbr></a> ({$row['branch']} " . showrev($row['revision'], $row["cvsname"]) . ")";
118 <li><a href="?q=branch%3A+R2_1_+file%3A+.xml">branch: R2_1_ file: .xml</a></li
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/coverage/
cmdline.py 18 branch = optparse.make_option( variable in class:Opts
19 '', '--branch', action='store_true',
20 help="Measure branch coverage in addition to statement coverage."
112 branch=None,
300 Opts.branch,
465 branch = options.branch,
control.py 34 auto_data=False, timid=None, branch=None, config_file=True,
54 If `branch` is true, then branch coverage will be measured in addition
105 branch=branch, parallel=bool_or_none(data_suffix),
133 branch=self.config.branch, warn=self._warn
  /external/oprofile/events/i386/nehalem/
events 15 event:0xc4 counters:0,1,2,3 um:br_inst_retired minimum:500 name:BR_INST_RETIRED : number of branch instructions retired
68 event:0x88 counters:0,1,2,3 um:br_inst_exec minimum:6000 name:BR_INST_EXEC : Counts the number of near branch instructions executed, but not necessarily retired.
69 event:0x89 counters:0,1,2,3 um:br_misp_exec minimum:6000 name:BR_MISP_EXEC : Counts the number of mispredicted conditional near branch instructions executed, but not necessarily retired.
70 event:0xA2 counters:0,1,2,3 um:resource_stalls minimum:6000 name:RESOURCE_STALLS : Counts the number of Allocator resource related stalls. Includes register renaming buffer entries, memory buffer entries. In addition to resource related stalls, this event counts some other events. Includes stalls arising during branch misprediction recovery, such as if retirement of the mispredicted branch is delayed and stalls arising while store buffer is draining from synchronizing operations.
72 event:0xA7 counters:0,1,2,3 um:one minimum:6000 name:BACLEAR_FORCE_IQ : Counts number of times a BACLEAR was forced by the Instruction Queue. The IQ is also responsible for providing conditional branch prediciton direction based on a static scheme and dynamic data provided by the L2 Branch Prediction Unit. If the conditional branch target is not found in the Target Array and the IQ predicts that the branch is taken, then the IQ will force the Branch Address Calculator to issue a BACLEAR. Each BACLEAR asserted by the BAC generates approximately an (…)
    [all...]
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter6/
codegen.ml 73 (* Grab the first block so that we might later add the conditional branch
86 * other is used for the conditional branch. *)
104 (* Return to the start block to add the conditional branch. *)
108 (* Set a unconditional branch at the end of the 'then' block and the
171 (* Insert the conditional branch into the end of loop_end_bb. *)
  /art/compiler/dex/quick/arm/
fp_arm.cc 307 LIR *branch; local
317 branch = NewLIR2(kThumbBCond, 0, kArmCondEq);
324 branch->target = NewLIR0(kPseudoTargetLabel);
  /art/compiler/dex/quick/
gen_common.cc 48 LIR* branch = OpCondBranch(c_code, tgt); local
49 // Remember branch target - will process later
51 return branch;
56 LIR* branch; local
58 branch = OpUnconditionalBranch(tgt);
60 branch = OpCmpImmBranch(c_code, reg, imm_val, tgt);
62 // Remember branch target - will process later
64 return branch;
80 LIR* branch = OpCmpBranch(c_code, reg1, reg2, tgt); local
81 // Remember branch target - will process late
841 LIR* branch = OpCmpImmBranch(kCondNe, TargetReg(kRet0), 0, NULL); local
1767 LIR* branch = OpTestSuspend(NULL); local
    [all...]
  /dalvik/vm/compiler/codegen/arm/
CodegenCommon.cpp 145 * Conservatively assume the branch here will call out a function that in
230 * Set up the accurate resource mask for branch instructions
236 /* Make sure only branch instructions are passed here */
450 ArmLIR *branch,
467 /* Branch to the PC reconstruction code */
468 branch->generic.target = (LIR *) pcrLabel;
471 relaxBranchMasks(branch);
  /dalvik/vm/compiler/template/mips/
TEMPLATE_INVOKE_METHOD_CHAIN.S 20 # 8 bytes skips branch and delay slot
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/style/checkers/
jsonchecker_unittest.py 106 "schedulers": [ { "type": "PlatformSpecificScheduler", "platform": "mac-snowleopard", "branch": "trunk", "treeStableTimer": 45.0,
  /external/chromium_org/v8/tools/
v8-info.sh 62 -m Print all patches that were merged to the specified V8 branch.
  /external/libvpx/libvpx/vpx_mem/memory_manager/include/
cavl_if.h 170 ** take greater branch from the nth node in the path, otherwise
171 ** take the less branch. bit 0 gives branch from root, and
173 L_BIT_ARR_DEFN(branch)
  /external/oprofile/events/mips/sb1/
events 14 event:0x2f counters:1,2,3 um:zero minimum:500 name:BRANCH_MISSPREDICTS :Branch mispredicts
34 # Branch information
35 event:0x2c counters:1,2,3 um:zero minimum:500 name:BRANCH_STAGE4 :Branch survived stage 4
36 event:0x2d counters:1,2,3 um:zero minimum:500 name:BRANCH_REALLY_TAKEN :Conditional branch was really taken
37 event:0x2e counters:1,2,3 um:zero minimum:500 name:BRANCH_PREDICTED_TAKEN :Predicted taken conditional branch
  /external/v8/src/ia32/
macro-assembler-ia32.h 97 Label* branch,
99 InNewSpace(object, scratch, zero, branch, distance);
106 Label* branch,
108 InNewSpace(object, scratch, not_zero, branch, distance);
384 // Check if the map of an object is equal to a specified map and branch to
394 // Check if the map of an object is equal to a specified map and branch to a
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/tools/
upgrade-upstream.sh 116 echo "Creating git repository and 'master' branch."
127 echo "Create 'ndk' branch and apply patches.android/*"
128 run git branch ndk master
181 echo "Updating NDK branch."
  /external/chromium_org/third_party/lcov/bin/
geninfo 40 # 2003-09-18 / Nigel Hinds: capture branch coverage data from GCOV
413 push(@gcov_options, "-b") if ($gcov_caps->{'branch-probabilities'} &&
415 push(@gcov_options, "-c") if ($gcov_caps->{'branch-counts'} &&
545 warn("Note: --initial does not generate branch coverage ".
851 my $gcov_branches; # Branch content of a .gcov file
1235 # Write coverage information for each instrumented branch:
1237 # BRDA:<line number>,<block number>,<branch number>,<taken>
1239 # where 'taken' is the number of times the branch was taken
1240 # or '-' if the block to which the branch belongs was never
1246 my ($line, $block, $branch, $taken)
    [all...]
  /external/chromium_org/chrome/common/extensions/docs/server2/
api_data_source_test.py 52 def GetBranch(self, branch):
53 return TestFileSystem(self._file_system_data[str(branch)])
availability_finder_test.py 36 def GetBranch(self, branch):
37 return MockFileSystem(TestFileSystem(self._file_system_data[str(branch)]))
91 # The test data includes an extra branch where the API does not exist.

Completed in 1099 milliseconds

1 2 3 45 6 7 8 91011>>