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

1 2 3 4 5 6 7 891011>>

  /bionic/libc/upstream-netbsd/libc/stdlib/
tdelete.c 43 &(*rootp)->llink : /* follow llink branch */
44 &(*rootp)->rlink; /* follow rlink branch */
tsearch.c 45 &(*rootp)->llink : /* T3: follow left branch */
46 &(*rootp)->rlink; /* T4: follow right branch */
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/goto_16/
Test_goto_16.java 35 * @title branch target is inside instruction
48 * @title branch target shall be inside the method
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/goto_32/
Test_goto_32.java 35 * @title branch target is inside instruction
48 * @title branch target shall be inside the method
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/opc_goto/
Test_opc_goto.java 35 * @title branch target is inside instruction
48 * @title branch target shall be inside the method
  /dalvik/vm/compiler/template/armv5te/
TEMPLATE_INVOKE_METHOD_PREDICTED_CHAIN.S 12 * u4 branch;
19 * - lr : to branch to the chaining cell
  /docs/source.android.com/src/source/
code-lines.jd 43 there may be more than one branch for a given "code line". For instance, when a
44 release is cut, it may or may not become a new branch based on the needs of the moment.
50 typically takes the form of a branch in the tree.
105 branch in git) is considered the sole canonical source code for a given Android platform
106 version. OEMs and other groups building devices should pull only from a release branch.
117 Changes that prove stable will eventually be pulled into a release branch. Note this
138 private branch as necessary.
146 a public release branch, and the new current platform code-line.
  /external/chromium_org/third_party/qcms/
README.chromium 16 Some files only have license headers in the master branch.
18 branch src URL qcms/tree/v4
  /external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/
inttree.h 25 * right branch in searching for intervals but possibly come back
26 * and check the left branch as well.
  /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."
  /external/clang/test/Analysis/diagnostics/
deref-track-symbolic-region.cpp 12 //expected-note@-1{{Taking false branch}}
22 // expected-note@-2{{Taking false branch}}
  /external/llvm/lib/Target/Mips/
MipsRelocations.h 24 // bits of the difference between the branch target and the branch
MipsLongBranch.cpp 10 // This pass expands a branch or jump instruction into a long branch if its
16 // determined accurately, load branch target addresses from the GOT.
19 #define DEBUG_TYPE "mips-long-branch"
39 "skip-mips-long-branch",
41 cl::desc("MIPS: Skip long branch pass."),
45 "force-mips-long-branch",
73 return "Mips Long Branch";
132 // Return if MBB has no branch instructions.
139 // MBB has only one branch instruction if FirstBr is not a branc
    [all...]
  /external/llvm/test/CodeGen/X86/
personality.ll 1 ; RUN: llc < %s -disable-cfi -mtriple=x86_64-apple-darwin9 -disable-cgp-branch-opts | FileCheck %s -check-prefix=X64
2 ; RUN: llc < %s -disable-cfi -mtriple=i386-apple-darwin9 -disable-cgp-branch-opts | FileCheck %s -check-prefix=X32
  /external/nist-sip/java/gov/nist/javax/sip/
UtilsExt.java 46 * generate a branch identifier.
49 * used as a branch identifier.
  /external/oprofile/events/arm/armv6/
events.h 13 "branch instruction executed w/ or w/o program flow change"},
15 "branch mispredicted"},
  /external/oprofile/events/i386/atom/
unit_masks 73 0x00 any Retired branch instructions
74 0x01 pred_not_taken Retired branch instructions that were predicted not-taken
75 0x02 mispred_not_taken Retired branch instructions that were mispredicted not-taken
76 0x04 pred_taken Retired branch instructions that were predicted taken
77 0x08 mispred_taken Retired branch instructions that were mispredicted taken
78 0x0A mispred Retired mispredicted branch instructions (precise event)
79 0x0C taken Retired taken branch instructions
80 0x0F any1 Retired branch instructions
  /external/llvm/lib/Target/ARM/MCTargetDesc/
ARMFixupKinds.h 46 // fixup_arm_condbranch - 24-bit PC relative relocation for conditional branch
50 // branch instructions. (unconditional)
53 // uconditional branch instructions.
56 // branch unconditional branch instructions.
87 // fixup_arm_thumb_cb - Fixup for Thumb branch instructions.
  /external/llvm/lib/Transforms/Utils/
LowerExpectIntrinsic.cpp 35 LikelyBranchWeight("likely-branch-weight", cl::Hidden, cl::init(64),
36 cl::desc("Weight of the branch likely to be taken (default = 64)"));
38 UnlikelyBranchWeight("unlikely-branch-weight", cl::Hidden, cl::init(4),
39 cl::desc("Weight of the branch unlikely to be taken (default = 4)"));
122 // branch 0, in other case more likely is branch 1.
FlattenCFG.cpp 50 /// branch, attempt to use parallel and/or for the branch condition. \returns
66 /// if.then: // has two predecessors, both of them contains conditional branch.
93 /// \ | / BB3 contains unconditional branch.
109 /// BB => BB3 | BB3 contains unconditiona branch and corresponds
119 /// In Case 1, \param BB (BB4) has an unconditional branch (BB3) as
141 // All predecessors should terminate with a branch.
152 // branch among the predecessors.
164 // Condition's unique use should be the branch instruction.
204 // the last conditional branch
    [all...]
  /external/v8/src/mips/
builtins-mips.cc 187 __ Branch(&entry);
192 __ Branch(&loop, lt, scratch1, Operand(scratch2));
297 __ Branch(&entry);
303 __ Branch(&loop, lt, elements_array_storage, Operand(elements_array_end));
329 __ Branch(&argc_one_or_more, ne, a0, Operand(zero_reg));
348 __ Branch(&argc_two_or_more, ne, a0, Operand(1));
352 __ Branch(&not_empty_array, ne, a2, Operand(zero_reg));
355 __ Branch(&empty_array);
359 __ Branch(call_generic_code, eq, a3, Operand(zero_reg));
364 __ Branch(call_generic_code, Ugreater_equal, a2
    [all...]
full-codegen-mips.cc 87 __ Branch(target, eq, at, Operand(zero_reg));
98 __ Branch(target, ne, at, Operand(zero_reg));
166 __ Branch(&ok, eq, t1, Operand(zero_reg));
298 __ Branch(&ok, hs, sp, Operand(t0));
357 // to make sure it is constant. Branch may emit a skip-or-jump sequence
358 // instead of the normal Branch. It seems that the "skip" part of that
359 // sequence is about as long as this Branch would be so it is safe to ignore
406 __ Branch(&return_label_);
427 __ Branch(&ok, ge, a3, Operand(zero_reg));
522 if (false_label_ != fall_through_) __ Branch(false_label_)
    [all...]
  /dalvik/vm/compiler/codegen/mips/
GlobalOptimizations.cpp 23 * branch itself.
33 /* Branch to the next instruction */
41 * Is the branch target the next instruction?
49 * Found real useful stuff between the branch and the target.
51 * method-based JIT the branch might be the last real
108 /* don't propagate across branch/jump and link case
130 /* FIXME - for now don't propagate across any branch/jump. */
248 * the branch delay slot. If the analysis can be done cheaply enough, it may be
308 branch target up into the delay slot and adjust the branch */
    [all...]
  /external/chromium_org/v8/src/mips/
code-stubs-mips.cc 546 __ Branch(&not_special, gt, source_, Operand(1));
625 __ Branch(&done, eq, scratch, Operand(zero_reg));
645 __ Branch(&done, eq, scratch, Operand(zero_reg));
654 __ Branch(&normal_exponent, le, result_reg, Operand(zero_reg));
656 __ Branch(&done);
671 __ Branch(&high_shift_needed, lt, scratch, Operand(32));
673 __ Branch(&high_shift_done);
691 __ Branch(&pos_shift, ge, scratch, Operand(zero_reg));
696 __ Branch(&shift_done);
734 __ Branch(&max_negative_int, eq, the_int_, Operand(0x80000000u))
    [all...]
  /external/chromium_org/native_client_sdk/src/build_tools/
build_projects.py 104 for branch, projects in project_tree.iteritems():
105 dirpath = os.path.join(pepperdir, branch)
111 # Generate master make for this branch of projects
113 os.path.join(pepperdir, branch),
116 if branch.startswith('examples') and not landing_page:
126 if branch.startswith('examples'):
146 def BuildProjectsBranch(pepperdir, branch, deps, clean, config, args=None):
147 make_dir = os.path.join(pepperdir, branch)
197 for branch in build_first + build_second:
198 BuildProjectsBranch(pepperdir, branch, deps, clean, config
    [all...]

Completed in 1674 milliseconds

1 2 3 4 5 6 7 891011>>