HomeSort by relevance Sort by last modified time
    Searched refs:branch (Results 26 - 50 of 82) sorted by null

12 3 4

  /dalvik/vm/mterp/armv5te/
OP_GOTO.S 4 * Unconditional branch, 8-bit offset.
6 * The branch distance is a signed code-unit offset, which we need to
13 bmi common_backwardBranch @ backward branch, do periodic checks
OP_GOTO_16.S 4 * Unconditional branch, 16-bit offset.
6 * The branch distance is a signed code-unit offset, which we need to
12 bmi common_backwardBranch @ backward branch, do periodic checks
OP_GOTO_32.S 4 * Unconditional branch, 32-bit offset.
6 * The branch distance is a signed code-unit offset, which we need to
9 * Unlike most opcodes, this one is allowed to branch to itself, so
10 * our "backward branch" test must be "<=0" instead of "<0". The ORRS
20 ble common_backwardBranch @ backward branch, do periodic checks
OP_AGET_WIDE.S 22 @ branch prediction (if any) handles conditional forward branches vs.
OP_APUT_WIDE.S 23 @ branch prediction (if any) handles conditional forward branches vs.
OP_CMP_LONG.S 20 * us a constant 5-cycle path plus a branch at the end to the
22 * 2 or 3 cycles + branch if the high word doesn't match, 6 + branch
45 @ Want to cond code the next mov so we can avoid branch, but don't see it;
  /system/core/libacc/tests/
disassem.cpp 84 * b - branch address
85 * t - thumb branch address (bits 24, 0-23)
306 int branch; local
410 /* b - branch address */
412 branch = ((insn << 2) & 0x03ffffff);
413 if (branch & 0x02000000)
414 branch |= 0xfc000000;
415 di->di_printaddr(loc + 8 + branch);
419 branch = ((insn << 2) & 0x03ffffff) |
421 if (branch & 0x02000000
    [all...]
  /system/core/libpixelflinger/codeflinger/
disassem.c 84 * b - branch address
85 * t - thumb branch address (bits 24, 0-23)
307 int branch; local
415 /* b - branch address */
417 branch = ((insn << 2) & 0x03ffffff);
418 if (branch & 0x02000000)
419 branch |= 0xfc000000;
420 di->di_printaddr(loc + 8 + branch);
424 branch = ((insn << 2) & 0x03ffffff) |
426 if (branch & 0x02000000
    [all...]
  /build/core/combo/arch/arm/
armv4t.mk 7 # code in assembler source since the bx (branch and exchange) instruction is
  /dalvik/vm/compiler/
Loop.c 159 * 2) The loop back branch compares the BIV with a constant
187 MIR *branch = loopBranch->lastMIRInsn; local
188 OpCode opCode = branch->dalvikInsn.opCode;
194 if (branch->ssaRep->numUses == 0 || branch->ssaRep->numDefs != 0) {
202 if (branch->ssaRep->uses[0] != loopAnalysis->ssaBIV) {
221 int endReg = dvmConvertSSARegToDalvik(cUnit, branch->ssaRep->uses[1]);
223 !dvmIsBitSet(cUnit->isConstantV, branch->ssaRep->uses[1])) {
238 branch->ssaRep->uses[1]);
Compiler.h 115 u4 branch; /* Branch to chained destination */ member in struct:PredictedChainingCell
153 kSVSBackwardBranch = 8, // Exiting compiled code with backward branch trace
160 kJitHintTaken = 1, // Last inst in run was taken branch
161 kJitHintNotTaken = 2, // Last inst in run was not taken branch
162 kJitHintNoBias = 3, // Last inst in run was unbiased branch
  /external/nist-sip/java/gov/nist/javax/sip/header/
Via.java 63 /** The branch parameter is included by every forking proxy.
65 public static final String BRANCH = ParameterNames.BRANCH;
507 * Gets the branch paramater of the ViaHeader. Returns null if branch
510 * @return the string branch value of ViaHeader
513 return getParameter(ParameterNames.BRANCH);
517 * Sets the branch parameter of the ViaHeader to the newly supplied
518 * branch value.
520 * @param branch - the new string branch parmameter of the ViaHeader
    [all...]
  /system/core/libacc/tests/data/
flops.c 110 int branch(double d) { function
118 printf("branching: %d %d %d\n", branch(-1.0), branch(0.0), branch(1.0));
  /dalvik/vm/mterp/armv4t/
OP_AGET_WIDE.S 22 @ branch prediction (if any) handles conditional forward branches vs.
OP_APUT_WIDE.S 21 @ branch prediction (if any) handles conditional forward branches vs.
  /external/libvpx/vp8/decoder/
detokenize.c 140 #define DECODE_AND_BRANCH_IF_ZERO(probability,branch) \
149 goto branch; \
156 #define DECODE_AND_LOOP_IF_ZERO(probability,branch) \
169 goto branch; \
  /external/webkit/WebKitTools/Scripts/
commit-log-editor 227 my $branch = gitBranch();
228 chomp(my $webkitGenerateCommitMessage = `git config --bool branch.$branch.webkitGenerateCommitMessage`);
  /external/bluetooth/glib/glib/
gslice.c     [all...]
  /external/nist-sip/java/gov/nist/javax/sip/message/
SIPResponse.java 620 * Sets the Via branch for CANCEL or ACK requests
627 String branch; local
630 branch = getTopmostVia().getBranch(); // non-2xx ACK uses same branch
632 branch = Utils.getInstance().generateBranchId(); // 2xx ACK gets new branch
635 branch = getTopmostVia().getBranch(); // CANCEL uses same branch
639 via.setBranch( branch );
  /external/nist-sip/java/gov/nist/javax/sip/stack/
SIPTransaction.java 212 // Transaction branch ID
213 private String branch; field in class:SIPTransaction
263 return this.branch;
376 // Branch value of topmost Via header
403 // If the message has an explicit branch value set,
408 sipStack.getStackLogger().logDebug("Setting Branch id : " + newBranch);
410 // Override the default branch with the one
416 sipStack.getStackLogger().logDebug("Branch id is null - compute TID!"
480 * Sets the Via header branch parameter used to identify this transaction.
483 * New string used as the branch for this transaction
    [all...]
  /dalvik/vm/compiler/codegen/arm/Thumb2/
Gen.c 197 ArmLIR *branch; local
217 branch = newLIR2(cUnit, kThumb2Cbz, r2, 0);
243 branch->generic.target = (LIR *)target;
256 ArmLIR *branch; local
278 branch = opNone(cUnit, kOpUncondBr);
303 branch->generic.target = (LIR *)target;
  /dalvik/vm/compiler/codegen/arm/FP/
Thumb2VFP.c 185 ArmLIR *branch; local
195 branch = newLIR2(cUnit, kThumbBCond, 0, kArmCondEq);
204 branch->generic.target = (LIR *)label;
  /external/skia/src/animator/
SkScriptTokenizer.cpp 119 Branch branch(kUnassigned, 0, 0);
120 fBranchStack.push(branch);
134 Branch& branch = fBranchStack.index(index); local
135 if (branch.fPrimed == Branch::kIsPrimed)
136 resolveBranch(branch);
139 while (fBranchStack.top().fDone == Branch::kIsDone)
691 Branch& branch = fBranchStack.index(branchIndex++) local
946 Branch& branch = fBranchStack.index(branchIndex++); local
1013 Branch& branch = fBranchStack.top(); local
    [all...]
  /external/libvpx/vpx_mem/memory_manager/include/
cavl_if.h 173 ** take greater branch from the nth node in the path, otherwise
174 ** take the less branch. bit 0 gives branch from root, and
176 L_BIT_ARR_DEFN(branch)
  /dalvik/vm/compiler/codegen/arm/
CodegenCommon.c 365 ArmLIR *branch,
381 /* Branch to the PC reconstruction code */
382 branch->generic.target = (LIR *) pcrLabel;

Completed in 381 milliseconds

12 3 4