/dalvik/vm/compiler/ |
Loop.h | 30 Opcode loopBranchOpcode; // OP_IF_XXX for the loop back branch 32 LIR *branchToBody; // branch over to the body from entry 33 LIR *branchToPCR; // branch over to the PCR cell
|
/external/libsepol/include/sepol/ |
handle.h | 27 /* Get whether or not needless unused branch of tunables would be preserved */ 30 /* Set whether or not to preserve the needless unused branch of tunables, 31 * 0 is default and discard such branch, 1 preserves them */
|
/external/valgrind/main/callgrind/tests/ |
Makefile.am | 15 simwork-branch.vgtest simwork-branch.stdout.exp simwork-branch.stderr.exp \
|
/packages/apps/UnifiedEmail/src/org/apache/commons/io/input/ |
TeeInputStream.java | 43 private final OutputStream branch;
field in class:TeeInputStream 57 * @param branch output stream that will receive a copy of all bytes read
59 public TeeInputStream(InputStream input, OutputStream branch) {
60 this(input, branch, false);
70 * @param branch output stream that will receive a copy of all bytes read
75 InputStream input, OutputStream branch, boolean closeBranch) {
77 this.branch = branch;
93 branch.close();
108 branch.write(ch); [all...] |
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/compiler/ |
radeon_emulate_branches.c | 60 struct branch_info * branch; local 68 branch = &s->Branches[s->BranchCount++]; 69 memset(branch, 0, sizeof(struct branch_info)); 70 branch->If = inst; 90 struct branch_info * branch; local 99 branch = &s->Branches[s->BranchCount - 1]; 100 branch->Else = inst; 199 struct branch_info * branch; local 210 branch = &s->Branches[s->BranchCount - 1]; 215 allocate_and_insert_proxies(s, &IfProxies, branch->If->Next, branch->Else ? branch->Else : inst) [all...] |
/external/mesa3d/src/gallium/drivers/r300/compiler/ |
radeon_emulate_branches.c | 60 struct branch_info * branch; local 68 branch = &s->Branches[s->BranchCount++]; 69 memset(branch, 0, sizeof(struct branch_info)); 70 branch->If = inst; 90 struct branch_info * branch; local 99 branch = &s->Branches[s->BranchCount - 1]; 100 branch->Else = inst; 199 struct branch_info * branch; local 210 branch = &s->Branches[s->BranchCount - 1]; 215 allocate_and_insert_proxies(s, &IfProxies, branch->If->Next, branch->Else ? branch->Else : inst) [all...] |
/ndk/build/tools/ |
download-toolchain-sources.sh | 27 # the default branch to use 28 BRANCH=master 29 register_var_option "--branch=<name>" BRANCH "Specify release branch" 157 # $2: branch (e.g. 'master') 164 local BRANCH=$2 168 log "Checking out $BRANCH branch of $NAME.git: $@" 169 local REVISION=origin/$BRANCH [all...] |
/external/llvm/docs/ |
BranchWeightMetadata.rst | 2 LLVM Branch Weight Metadata 11 Branch Weight Metadata represents branch weights as its likeliness to be 16 Branch weights might be fetch from the profiling file, or generated based on 29 operarands for the true and the false branch. 42 Branch weights are assigned to every case (including the ``default`` case which 56 Branch weights are assigned to every destination. 69 Other terminator instructions are not allowed to contain Branch Weight Metadata. 76 ``__builtin_expect(long exp, long c)`` instruction provides branch prediction 114 Branch Weight Metatada is not proof against CFG changes. If terminator operands [all...] |
/prebuilts/gcc/darwin-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/ |
predict.def | 1 /* Definitions for the branch prediction routines in the GNU compiler. 68 /* Branch containing goto is probably not taken. */ 71 /* Branch to basic block containing call marked by noreturn attribute. */ 75 /* Branch to basic block containing call marked by cold function attribute. */ 80 DEF_PREDICTOR (PRED_LOOP_BRANCH, "loop branch", HITRATE (86), 99 /* Branch guarding call is probably taken. */ 102 /* Branch causing function to terminate is probably not taken. */ 105 /* Branch containing goto is probably not taken. */ 108 /* Branch ending with return constant is probably not taken. */ 111 /* Branch ending with return negative constant is probably not taken. * [all...] |
/prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/ |
predict.def | 1 /* Definitions for the branch prediction routines in the GNU compiler. 68 /* Branch containing goto is probably not taken. */ 71 /* Branch to basic block containing call marked by noreturn attribute. */ 75 /* Branch to basic block containing call marked by cold function attribute. */ 80 DEF_PREDICTOR (PRED_LOOP_BRANCH, "loop branch", HITRATE (86), 99 /* Branch guarding call is probably taken. */ 102 /* Branch causing function to terminate is probably not taken. */ 105 /* Branch containing goto is probably not taken. */ 108 /* Branch ending with return constant is probably not taken. */ 111 /* Branch ending with return negative constant is probably not taken. * [all...] |
/prebuilts/gcc/linux-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/ |
predict.def | 1 /* Definitions for the branch prediction routines in the GNU compiler. 68 /* Branch containing goto is probably not taken. */ 71 /* Branch to basic block containing call marked by noreturn attribute. */ 75 /* Branch to basic block containing call marked by cold function attribute. */ 80 DEF_PREDICTOR (PRED_LOOP_BRANCH, "loop branch", HITRATE (86), 99 /* Branch guarding call is probably taken. */ 102 /* Branch causing function to terminate is probably not taken. */ 105 /* Branch containing goto is probably not taken. */ 108 /* Branch ending with return constant is probably not taken. */ 111 /* Branch ending with return negative constant is probably not taken. * [all...] |
/prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/ |
predict.def | 1 /* Definitions for the branch prediction routines in the GNU compiler. 68 /* Branch containing goto is probably not taken. */ 71 /* Branch to basic block containing call marked by noreturn attribute. */ 75 /* Branch to basic block containing call marked by cold function attribute. */ 80 DEF_PREDICTOR (PRED_LOOP_BRANCH, "loop branch", HITRATE (86), 99 /* Branch guarding call is probably taken. */ 102 /* Branch causing function to terminate is probably not taken. */ 105 /* Branch containing goto is probably not taken. */ 108 /* Branch ending with return constant is probably not taken. */ 111 /* Branch ending with return negative constant is probably not taken. * [all...] |
/external/chromium_org/third_party/skia/src/core/ |
SkRTree.cpp | 32 , fNodeSize(sizeof(Node) + sizeof(Branch) * maxChildren) 53 Branch newBranch; 68 Branch* newSibling = insert(fRoot.fChild.subtree, &newBranch); 131 SkRTree::Branch* SkRTree::insert(Node* root, Branch* branch, uint16_t level) { 132 Branch* toInsert = branch; 134 int childIndex = this->chooseSubtree(root, branch); 135 toInsert = this->insert(root->child(childIndex)->fChild.subtree, branch, level) [all...] |
/external/skia/src/core/ |
SkRTree.cpp | 32 , fNodeSize(sizeof(Node) + sizeof(Branch) * maxChildren) 53 Branch newBranch; 68 Branch* newSibling = insert(fRoot.fChild.subtree, &newBranch); 131 SkRTree::Branch* SkRTree::insert(Node* root, Branch* branch, uint16_t level) { 132 Branch* toInsert = branch; 134 int childIndex = this->chooseSubtree(root, branch); 135 toInsert = this->insert(root->child(childIndex)->fChild.subtree, branch, level) [all...] |
/external/chromium_org/third_party/mesa/src/docs/ |
repository.html | 122 code while a branch has the latest stable code. 126 The command <code>git-branch</code> will list all available branches. 130 Questions about branch status/activity should be posted to the 137 <li>Setting up to edit the master branch 141 branch, try: 143 git config branch.master.remote origin 144 git config branch.master.merge master 154 working on a separate branch and would rebase your branch prior to 156 But for small changes to the master branch itself [all...] |
/external/mesa3d/docs/ |
repository.html | 122 code while a branch has the latest stable code. 126 The command <code>git-branch</code> will list all available branches. 130 Questions about branch status/activity should be posted to the 137 <li>Setting up to edit the master branch 141 branch, try: 143 git config branch.master.remote origin 144 git config branch.master.merge master 154 working on a separate branch and would rebase your branch prior to 156 But for small changes to the master branch itself [all...] |
/external/chromium_org/third_party/skia/src/animator/ |
SkScript2.h | 187 struct Branch { 188 Branch() { 191 Branch(Op op, int depth, unsigned offset) : fOffset(offset), fOpStackDepth(depth), fOperator(op), 205 unsigned fOffset : 16; // offset in generated stream where branch needs to go 207 Op fOperator : 6; // operand which generated branch 208 mutable Primed fPrimed : 1; // mark when next instruction generates branch 209 Done fDone : 1; // mark when branch is complete 249 void resolveBranch(Branch& ); 254 SkTDStack<Branch> fBranchStack; // logical operators, slot to store forward branch [all...] |
/external/skia/src/animator/ |
SkScript2.h | 187 struct Branch { 188 Branch() { 191 Branch(Op op, int depth, unsigned offset) : fOffset(offset), fOpStackDepth(depth), fOperator(op), 205 unsigned fOffset : 16; // offset in generated stream where branch needs to go 207 Op fOperator : 6; // operand which generated branch 208 mutable Primed fPrimed : 1; // mark when next instruction generates branch 209 Done fDone : 1; // mark when branch is complete 249 void resolveBranch(Branch& ); 254 SkTDStack<Branch> fBranchStack; // logical operators, slot to store forward branch [all...] |
/external/llvm/lib/Target/Mips/ |
MipsInstrInfo.cpp | 65 // Branch Analysis 71 assert(getAnalyzableBrOpc(Opc) && "Not an analyzable branch"); 125 // Int Branch: 3 (opc, reg0, reg1) 127 "# of Mips branch conditions must be <= 3!"); 129 // Two-way Conditional branch. 136 // One way branch. 137 // Unconditional branch. 140 else // Conditional branch. 170 /// specified Branch instruction. 175 "Invalid Mips branch condition!") [all...] |
/external/libvpx/libvpx/vpx_mem/memory_manager/include/ |
cavl_impl.h | 327 ** take greater branch from the nth node in the path, otherwise 328 ** take the less branch. bit 0 gives branch from root, and 330 L_BIT_ARR_DEFN(branch) 353 L_BIT_ARR_1(branch, depth) 356 L_BIT_ARR_0(branch, depth) 374 cmp = L_BIT_ARR_VAL(branch, depth) ? 1 : -1; 395 cmp = L_BIT_ARR_VAL(branch, depth) ? 1 : -1; 417 cmp = L_BIT_ARR_VAL(branch, depth) ? 1 : -1; 517 ** take greater branch from the nth node in the path, otherwis [all...] |
/external/chromium_org/tools/git/ |
for-all-touched-files.py | 8 between the current git branch and the specified branch or commit. 16 %prog [-b BRANCH] [-d] [-x EXTENSIONS|-c] [-t TOKEN] QUOTED_COMMAND 97 parser.add_option('-b', '--branch', default='origin/master', dest='branch', 110 ForAllTouchedFiles(opts.branch, extensions, opts.token, args[0])
|
/external/proguard/src/proguard/optimize/peephole/ |
InstructionSequencesReplacer.java | 50 * @param branchTargetFinder a branch target finder that has been 51 * initialized to indicate branch targets 77 * @param branchTargetFinder a branch target finder that has been 78 * initialized to indicate branch targets 107 * @param branchTargetFinder a branch target finder that has been 108 * initialized to indicate branch targets
|
/frameworks/compile/mclinker/lib/Target/ARM/ |
ARMFixupKinds.h | 43 // fixup_arm_condbranch - 24-bit PC relative relocation for conditional branch 47 // branch instructions. (unconditional) 50 // unconditional branch instructions. 53 // branch unconditional branch instructions. 65 // fixup_arm_thumb_cb - Fixup for Thumb branch instructions.
|
/dalvik/vm/compiler/template/armv5te/ |
TEMPLATE_CMP_LONG.S | 16 * us a constant 5-cycle path plus a branch at the end to the 18 * 2 or 3 cycles + branch if the high word doesn't match, 6 + branch
|
/dalvik/vm/compiler/template/mips/ |
TEMPLATE_INVOKE_METHOD_PREDICTED_CHAIN.S | 12 * u4 branch; 20 * - lr : to branch to the chaining cell 42 beq a3, rIBASE, $chaintgt # branch if predicted chain is valid
|