HomeSort by relevance Sort by last modified time
    Searched refs:branch (Results 51 - 75 of 350) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/llvm/test/MC/Mips/
mips-diagnostic-fixup.s 8 nop # This instr makes the branch too long to fit into a 18-bit offset
  /external/proguard/src/proguard/optimize/evaluation/
TracedBranchUnit.java 29 * This BranchUnit remembers the branch unit commands that are invoked on it.
46 // Always branch.
47 super.branch(clazz, codeAttribute, offset, branchTarget);
51 // Maybe branch.
  /external/chromium_org/chrome/common/extensions/docs/server2/
branch_utility.py 15 one of 'stable', 'beta', 'dev', or 'master'. |branch| and |version| correspond
17 |branch| and |version| can occasionally be the same for separate channels
22 def __init__(self, channel, branch, version):
24 assert isinstance(branch, basestring), branch
29 self.branch = branch
46 '''Provides methods for working with Chrome channel, branch, and version
54 self._branch_object_store = create_object_store('branch')
79 representing the next most recent Chrome version/branch combination
    [all...]
host_file_system_provider_test.py 21 def _constructor_for_test(self, branch, **optargs):
22 return TestFileSystem(self._canned_data[branch])
  /external/chromium_org/v8/src/compiler/
change-lowering.cc 105 Node* branch = graph()->NewNode(common()->Branch(), val, control); local
107 Node* if_true = graph()->NewNode(common()->IfTrue(), branch);
110 Node* if_false = graph()->NewNode(common()->IfFalse(), branch);
144 Node* branch = graph()->NewNode(common()->Branch(), ovf, control); local
146 Node* if_true = graph()->NewNode(common()->IfTrue(), branch);
150 Node* if_false = graph()->NewNode(common()->IfFalse(), branch);
168 Node* branch = graph()->NewNode(common()->Branch(), tag, control) local
194 Node* branch = graph()->NewNode(common()->Branch(), tag, control); local
217 Node* branch = graph()->NewNode(common()->Branch(), cmp, control); local
    [all...]
  /external/llvm/test/MC/Mips/mips32r6/
valid.s 11 # appropriately for each branch instruction
  /external/llvm/test/MC/Mips/mips64r6/
valid.s 11 # appropriately for each branch instruction
  /external/chromium_org/v8/test/mjsunit/
switch-opt.js 34 function branch(b) { function
48 case branch(b1) + branch(b2):
55 branch(b3);
59 branch(b3);
131 function branch(b) {
145 case branch(b1) + branch(b2):
152 branch(b3);
156 branch(b3)
    [all...]
  /external/chromium_org/third_party/libvpx/source/libvpx/vpx_mem/memory_manager/include/
cavl_impl.h 329 ** take greater branch from the nth node in the path, otherwise
330 ** take the less branch. bit 0 gives branch from root, and
332 L_BIT_ARR_DEFN(branch)
355 L_BIT_ARR_1(branch, depth)
358 L_BIT_ARR_0(branch, depth)
376 cmp = L_BIT_ARR_VAL(branch, depth) ? 1 : -1;
397 cmp = L_BIT_ARR_VAL(branch, depth) ? 1 : -1;
419 cmp = L_BIT_ARR_VAL(branch, depth) ? 1 : -1;
519 ** take greater branch from the nth node in the path, otherwis
    [all...]
  /external/libvpx/libvpx/vpx_mem/memory_manager/include/
cavl_impl.h 329 ** take greater branch from the nth node in the path, otherwise
330 ** take the less branch. bit 0 gives branch from root, and
332 L_BIT_ARR_DEFN(branch)
355 L_BIT_ARR_1(branch, depth)
358 L_BIT_ARR_0(branch, depth)
376 cmp = L_BIT_ARR_VAL(branch, depth) ? 1 : -1;
397 cmp = L_BIT_ARR_VAL(branch, depth) ? 1 : -1;
419 cmp = L_BIT_ARR_VAL(branch, depth) ? 1 : -1;
519 ** take greater branch from the nth node in the path, otherwis
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vpx_mem/memory_manager/include/
cavl_impl.h 329 ** take greater branch from the nth node in the path, otherwise
330 ** take the less branch. bit 0 gives branch from root, and
332 L_BIT_ARR_DEFN(branch)
355 L_BIT_ARR_1(branch, depth)
358 L_BIT_ARR_0(branch, depth)
376 cmp = L_BIT_ARR_VAL(branch, depth) ? 1 : -1;
397 cmp = L_BIT_ARR_VAL(branch, depth) ? 1 : -1;
419 cmp = L_BIT_ARR_VAL(branch, depth) ? 1 : -1;
519 ** take greater branch from the nth node in the path, otherwis
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/compiler/
radeon_dataflow_deadcode.c 109 struct branchinfo * branch; local
114 branch = &s->BranchStack[s->BranchStackSize++];
115 branch->HaveElse = 0;
116 memcpy(&branch->StoreEndif, &s->R, sizeof(s->R));
288 struct branchinfo * branch = &s.BranchStack[s.BranchStackSize-1]; local
292 branch->HaveElse ? &branch->StoreElse : &branch->StoreEndif);
296 if (branch->HaveElse) {
299 memcpy(&branch->StoreElse, &s.R, sizeof(s.R))
    [all...]
r500_fragprog_emit.c 463 struct branch_info * branch; local
543 rc_error(s->C, "Branch depth exceeds hardware limit");
549 branch = &s->Branches[s->CurrentBranchDepth++];
550 branch->If = newip;
551 branch->Else = -1;
552 branch->Endif = -1;
562 rc_error(s->C, "%s: got ELSE outside a branch", __FUNCTION__);
566 branch = &s->Branches[s->CurrentBranchDepth - 1];
567 branch->Else = newip;
574 rc_error(s->C, "%s: got ELSE outside a branch", __FUNCTION__)
    [all...]
  /external/mesa3d/src/gallium/drivers/r300/compiler/
radeon_dataflow_deadcode.c 109 struct branchinfo * branch; local
114 branch = &s->BranchStack[s->BranchStackSize++];
115 branch->HaveElse = 0;
116 memcpy(&branch->StoreEndif, &s->R, sizeof(s->R));
288 struct branchinfo * branch = &s.BranchStack[s.BranchStackSize-1]; local
292 branch->HaveElse ? &branch->StoreElse : &branch->StoreEndif);
296 if (branch->HaveElse) {
299 memcpy(&branch->StoreElse, &s.R, sizeof(s.R))
    [all...]
r500_fragprog_emit.c 463 struct branch_info * branch; local
543 rc_error(s->C, "Branch depth exceeds hardware limit");
549 branch = &s->Branches[s->CurrentBranchDepth++];
550 branch->If = newip;
551 branch->Else = -1;
552 branch->Endif = -1;
562 rc_error(s->C, "%s: got ELSE outside a branch", __FUNCTION__);
566 branch = &s->Branches[s->CurrentBranchDepth - 1];
567 branch->Else = newip;
574 rc_error(s->C, "%s: got ELSE outside a branch", __FUNCTION__)
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/
Utils.java 39 * convert byte arrays to hex strings etc. Generate tags and branch identifiers
164 * generate a branch identifier.
167 * used as a branch identifier.
184 String branch = topmostVia.getBranch(); local
185 return branch != null && branch.endsWith(this.signature);
197 throw new RuntimeException("Duplicate Branch ID");
  /external/chromium_org/tools/
safely-roll-deps.py 115 prnt_subprocess.call(['git', 'branch', '-D', old_branch])
117 parser.error('Please delete the branch %s and move to a different branch'
156 prnt_subprocess.check_output(['git', 'branch', '-D', new_branch])
  /external/nist-sip/java/javax/sip/header/
ViaHeader.java 10 void setBranch(String branch) throws ParseException;
  /external/proguard/src/proguard/evaluation/
BasicBranchUnit.java 28 * This BranchUnit remembers the branch unit commands that are invoked on it.
41 * Resets the flag that tells whether any of the branch unit commands was
50 * Sets the flag that tells whether any of the branch unit commands was
59 * Returns whether any of the branch unit commands was called.
68 * Sets the initial branch targets, which will be updated as the branch
69 * methods of the branch unit are called.
84 public void branch(Clazz clazz, method in class:BasicBranchUnit
89 // Override the branch targets.
102 // Accumulate the branch targets
    [all...]
  /external/chromium_org/v8/tools/push-to-trunk/
git_recipes.py 102 return self.Git("branch", **kwargs)
104 def GitCreateBranch(self, name, branch="", **kwargs):
106 self.Git(MakeArgs(["checkout -b", name, branch]), **kwargs)
110 self.Git(MakeArgs(["branch -D", name]), **kwargs)
121 self.Git(MakeArgs(["branch -r"]), **kwargs).splitlines())
148 # Git fails using "^" at branch roots.
157 raise Exception("Couldn't find curent branch.") # pragma: no cover
161 branch="", reverse=False, **kwargs):
176 args.append(branch)
294 def GitSVNFindGitHash(self, revision, branch="", **kwargs)
    [all...]
  /docs/source.android.com/
Android.mk 29 # Run "make tradefed-docs" in "tradefed" branch before running this target
32 # that contains a sync'ed copy of the "tradefed" branch at the same level as the
33 # live docs branch.
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/coverage/
collector.py 145 def __init__(self, should_trace, timid, branch, warn):
157 If `branch` is true, then branches will be measured. This involves
167 self.branch = branch
203 tracer.arcs = self.branch
296 if self.branch:
315 created with `branch` true.
318 if self.branch:
  /external/llvm/test/MC/ARM/
thumb2-diagnostics.s 67 @ CHECK-ERRORS: error: branch target out of range
68 @ CHECK-ERRORS: error: branch target out of range
69 @ CHECK-ERRORS: error: branch target out of range
70 @ CHECK-ERRORS: error: branch target out of range
71 @ CHECK-ERRORS: error: branch target out of range
72 @ CHECK-ERRORS: error: branch target out of range
  /external/chromium_org/native_client_sdk/src/build_tools/
build_projects.py 145 for branch, projects in project_tree.iteritems():
146 dirpath = os.path.join(pepperdir, branch)
153 # Generate master make for this branch of projects
155 os.path.join(pepperdir, branch),
158 if branch.startswith('examples') and not landing_page:
168 if branch.startswith('examples'):
188 def BuildProjectsBranch(pepperdir, branch, deps, clean, config, args=None):
189 make_dir = os.path.join(pepperdir, branch)
242 for branch in build_first + build_second:
243 BuildProjectsBranch(pepperdir, branch, deps, clean, config
    [all...]
  /system/core/libpixelflinger/codeflinger/
disassem.c 86 * b - branch address
87 * t - thumb branch address (bits 24, 0-23)
309 int branch; local
421 /* b - branch address */
423 branch = ((insn << 2) & 0x03ffffff);
424 if (branch & 0x02000000)
425 branch |= 0xfc000000;
426 di->di_printaddr(loc + 8 + branch);
430 branch = ((insn << 2) & 0x03ffffff) |
432 if (branch & 0x02000000
    [all...]

Completed in 2707 milliseconds

1 23 4 5 6 7 8 91011>>