HomeSort by relevance Sort by last modified time
    Searched full:branch (Results 476 - 500 of 2537) sorted by null

<<11121314151617181920>>

  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
sre_constants.py 37 BRANCH = "branch"
106 BRANCH,
  /system/core/libpixelflinger/codeflinger/
disassem.c 86 * b - branch address
87 * t - thumb branch address (bits 24, 0-23)
310 int branch; local
426 /* b - branch address */
428 branch = ((insn << 2) & 0x03ffffff);
429 if (branch & 0x02000000)
430 branch |= 0xfc000000;
431 di->di_printaddr(loc + 8 + branch);
435 branch = ((insn << 2) & 0x03ffffff) |
437 if (branch & 0x02000000
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/GardeningServer/scripts/
builders_unittests.js 110 ["branch", "trunk", "Build"],
126 "branch": "trunk",
128 "branch": "trunk",
140 "branch": "trunk",
160 "branch": "trunk",
162 "branch": "trunk",
174 "branch": "trunk",
369 ["branch", "src", "Build"],
385 "branch": "src",
388 "branch": "src"
    [all...]
  /external/chromium_org/v8/tools/push-to-trunk/
test_scripts.py 44 TEMP_BRANCH: "test-prepare-push-temporary-branch-created-by-script",
122 Check elimination: Learn from if(CompareMap(x)) on true branch.
360 ["branch", " branch1\n* %s" % TEST_CONFIG[TEMP_BRANCH]],
361 ["branch -D %s" % TEST_CONFIG[TEMP_BRANCH], ""],
363 ["branch", ""],
375 ["branch", " branch1\n* %s" % TEST_CONFIG[TEMP_BRANCH]],
387 ["branch", " branch1\n* %s" % TEST_CONFIG[TEMP_BRANCH]],
388 ["branch -D %s" % TEST_CONFIG[TEMP_BRANCH], None],
619 ["branch", " branch1\n* branch2\n"],
621 ["branch", " branch1\n* branch2\n"]
    [all...]
common_includes.py 320 git_result = self.Git("branch").strip()
323 msg = "Branch %s exists, do you want to delete it?" % name
325 if self.Git("branch -D %s" % name) is None:
326 self.Die("Deleting branch '%s' failed." % name)
327 print "Branch %s deleted." % name
329 msg = "Can't continue. Please delete branch %s and try again." % name
360 # Persist current branch.
375 # Get ahold of a safe temporary branch and check it out.
381 # Delete the branch that will be created later if it exists already.
388 self.Git("branch -D %s" % self._config[TEMP_BRANCH]
    [all...]
  /external/chromium_org/third_party/lcov/bin/
genhtml 92 # For branch coverage
119 # Width for branch coverage information in the source code view
142 # Offsets for storing branch coverage data in vectors
149 # Additional offsets used when converting branch coverage data to HTML
154 # Branch data combination types
272 our $br_coverage; # If set, generate branch coverage statistics
409 "branch-coverage" => \$br_coverage,
410 "no-branch-coverage" => \$no_br_coverage,
591 --(no-)branch-coverage Enable (disable) branch coverage displa
    [all...]
lcov 97 # Branch data combination types
    [all...]
  /external/chromium_org/chrome/common/metrics/proto/
perf_data.proto 141 // Contains the type of branch, example: user, kernel, call, return, etc.
216 // Branch source address.
219 // Branch destination address.
222 // Indicates a mispredicted branch.
260 // Branch stack info.
  /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. *)
  /external/llvm/lib/Target/PowerPC/MCTargetDesc/
PPCMCCodeEmitter.cpp 115 // Add a fixup for the branch target.
126 // Add a fixup for the branch target.
138 // Add a fixup for the branch target.
150 // Add a fixup for the branch target.
218 // For special TLS calls, we need two fixups; one for the branch target
  /external/llvm/lib/Target/PowerPC/
PPCHazardRecognizers.cpp 53 // of instructions. The PPC970 can dispatch a peak of 4 non-branch and one
54 // branch instruction per-cycle.
132 /// getHazardType - We return hazard for any non-branch instruction that would
158 // it is not a branch and that it cannot issue if 3 other instructions are
170 // We can only issue a branch as the last instruction in a group.
  /external/llvm/test/MC/MachO/
darwin-x86_64-diff-relocs.s 38 // FIXME: Darwin 'as' comes up with 'SIGNED' here instead of 'BRANCH'.
41 // branch relocation. Fallout from the other delta hack?
49 // branch relocation. Fallout from the other delta hack?
52 // FIXME: Darwin 'as' comes up with 'SIGNED' here instead of 'BRANCH'.
55 // branch relocation. Fallout from the other delta hack?
  /external/llvm/test/Transforms/SimplifyCFG/
preserve-branchweights.ll 113 ;; Then the second switch will be converted to a branch, finally, the first
114 ;; switch and the branch will be merged into a single switch.
157 ;; This test is based on test1 but swapped the targets of the second branch.
196 ; Test basic folding to a conditional branch.
220 ; branch
  /external/oprofile/daemon/
opd_ibs_trans.c 156 /* IBS Branch retired op */
162 /* Test branch-specific event flags */
163 /* IBS mispredicted Branch op */
170 /* IBS taken Branch op */
177 /* IBS mispredicted taken branch op */
  /external/proguard/src/proguard/classfile/attribute/visitor/
StackSizeComputer.java 204 // Evaluate the instructions after a subroutine branch.
218 // Some branch instructions always end the current instruction block.
279 * starting at the given offset and ending at a branch instruction, a return
280 * instruction, or a throw instruction. Branch instructions are handled
358 // Stop evaluating after a branch.
  /external/v8/src/mips/
assembler-mips.h 535 // Takes a branch opcode (cc) and a label (L) and generates
536 // either a backward branch or a forward branch and links it
540 // j(cc, &L); // forward branch to unbound label
542 // j(cc, &L); // backward branch to bound label
548 // Determines if Label is bound and near enough so that branch instruction
552 // Returns the branch offset to the given label from the current code
567 // Read/Modify the code target address in the branch/call instruction at pc.
575 // This sets the branch destination (which gets loaded at the call address).
585 // This sets the branch destination
    [all...]
  /external/valgrind/main/docs/internals/
3_1_BUGSTATUS.txt 3 pending = is scheduled to be fixed (or at least considered) on this branch
4 wontfix = will not fix on this branch
79 TRUNK 31BRANCH BUG# WHAT
110 (TODO: VERIFY 31BRANCH)
140 For 31BRANCH copy in r5591 kludge
  /prebuilts/gcc/darwin-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/
reg-notes.def 60 This is used in branches so that decrement and branch instructions
72 of a branch as long as only one copy of the insn exists. In that
98 taken branch. For calls, it is the probability that this call
107 CONCAT of two integer value. First specifies the branch predictor
109 branch in the same format as REG_BR_PROB note uses. */
  /prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/
reg-notes.def 60 This is used in branches so that decrement and branch instructions
72 of a branch as long as only one copy of the insn exists. In that
98 taken branch. For calls, it is the probability that this call
107 CONCAT of two integer value. First specifies the branch predictor
109 branch in the same format as REG_BR_PROB note uses. */
  /prebuilts/gcc/linux-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/
reg-notes.def 60 This is used in branches so that decrement and branch instructions
72 of a branch as long as only one copy of the insn exists. In that
98 taken branch. For calls, it is the probability that this call
107 CONCAT of two integer value. First specifies the branch predictor
109 branch in the same format as REG_BR_PROB note uses. */
  /prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/
reg-notes.def 60 This is used in branches so that decrement and branch instructions
72 of a branch as long as only one copy of the insn exists. In that
98 taken branch. For calls, it is the probability that this call
107 CONCAT of two integer value. First specifies the branch predictor
109 branch in the same format as REG_BR_PROB note uses. */
  /docs/source.android.com/src/source/
initializing.jd 32 <h1 id="choosing-a-branch">Choosing a Branch</h1>
37 (called "master"), in which case you will simply omit the branch specification
39 <p>Once you have selected a branch, follow the appropriate instructions below to
48 branch, a 64-bit environment is required. Older versions can be
207 including the master branch.</p>
214 <p>Once the proper filesystem is available, building the master branch in a modern
232 <h2 id="master-branch">Master branch</h2>
239 <h2 id="branch-40x-and-all-earlier-branches">Branch 4.0.x and all earlier branches</h2
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/checkout/scm/
scm_unittest.py 422 self.assertNotRegexpMatches(self._run(['git', 'branch']), r'foo')
484 self._run(['git', 'checkout', '-t', '-b', 'my-branch'])
485 self._run(['git', 'checkout', '-t', '-b', 'my-second-branch'])
486 self.assertEqual(self.scm._upstream_branch(), 'my-branch')
505 self._run(['git', 'checkout', '-b', 'dummy-branch', 'trunk~3'])
551 self._run(['git', 'checkout', '-b', 'my-branch', 'trunk~3'])
621 self._run(['git', 'checkout', '-b', 'my-branch', 'trunk~3'])
629 self._run(['git', 'checkout', '-t', '-b', 'my-branch'])
631 self._run(['git', 'checkout', '-t', '-b', 'my-second-branch'])
636 # equivalent to 'git diff my-branch..HEAD, should not include working change
    [all...]
  /external/chromium_org/third_party/lcov/
CHANGES 5 - Disabled branch coverage processing per default to improve processing
13 - Added man page note to further explain branch coverage output
70 branch coverage processing
77 - Improved wording for branch representation tooltip text
78 - Fixed vertical alignment of HTML branch representation
81 - Improved warning message about --initial not generating branch coverage data
116 - Added support for branch coverage measurements
138 - Added support for branch coverage measurements
160 - Added support for branch coverage measurements
321 - Fixed 'branch'-statement parsing for GCC>=3.3 .gcov file
    [all...]
  /external/icu4c/common/unicode/
ucharstrie.h 351 // outbound edge of a branch node.
354 // and the remaining branch length in bits 31..16.
355 // (We could store the remaining branch length minus 1 in bits 30..16 and not use the sign bit,
461 // Handles a branch node for both next(uchar) and next(string).
469 // from a branch.
477 // getNextUChars() when pos is on a branch node.
499 // - Branch node: Branches to other nodes according to the current input unit.
500 // The node unit is the length of the branch (number of units to select from)
518 // 0000..002f: Branch node. If node!=0 then the length is node+1, otherwise
521 // For a branch sub-node with at most this many entries, we drop dow
    [all...]

Completed in 1395 milliseconds

<<11121314151617181920>>