HomeSort by relevance Sort by last modified time
    Searched defs:branch (Results 1 - 25 of 36) sorted by null

1 2

  /external/bouncycastle/src/main/java/org/bouncycastle/asn1/
ASN1ObjectIdentifier.java 17 * Return an OID that creates a branch under the current one.
19 * @param branchID node numbers for the new branch.
22 public ASN1ObjectIdentifier branch(String branchID) method in class:ASN1ObjectIdentifier
  /packages/apps/Email/emailcommon/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/proguard/src/proguard/evaluation/
BranchUnit.java 36 public void branch(Clazz clazz, method in interface:BranchUnit
44 * conditional branch.
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...]
Processor.java 734 branchUnit.branch(clazz,
829 branchUnit.branch(clazz, codeAttribute, offset, branchTarget);
837 branchUnit.branch(clazz, codeAttribute, offset, branchTarget);
    [all...]
  /packages/apps/Email/emailcommon/src/org/apache/commons/io/output/
TeeOutputStream.java 32 protected OutputStream branch; field in class:TeeOutputStream
37 * @param branch the second OutputStream
39 public TeeOutputStream( OutputStream out, OutputStream branch ) {
41 this.branch = branch;
51 this.branch.write(b);
63 this.branch.write(b, off, len);
73 this.branch.write(b);
82 this.branch.flush();
91 this.branch.close();
    [all...]
  /dalvik/vm/compiler/codegen/arm/
ArchFactory.cpp 34 TGT_LIR *branch = genCmpImmBranch(cUnit, cond, reg, checkValue); local
40 branch->generic.target = (LIR *) exceptionLabel;
48 return genCheckCommon(cUnit, dOffset, branch, pcrLabel);
79 TGT_LIR *branch = opCondBranch(cUnit, cond); local
80 genCheckCommon(cUnit, dOffset, branch, pcrLabel);
  /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.
  /dalvik/vm/compiler/codegen/arm/FP/
Thumb2VFP.cpp 187 ArmLIR *branch; local
197 branch = newLIR2(cUnit, kThumbBCond, 0, kArmCondEq);
206 branch->generic.target = (LIR *)label;
  /frameworks/compile/libbcc/tests/data/src/
flops.c 110 int branch(double d) { function
118 printf("branching: %d %d %d\n", branch(-1.0), branch(0.0), branch(1.0));
  /cts/tools/dasm/src/dasm/
DasmCatchBuilder.java 59 * @param branch
63 String branch) {
66 add(exception, branch);
70 * Adds new exception type and branch label to current "from-to" block
79 * @param branch
82 void add(String exception, String branch) {
90 if (s != null && s.compareToIgnoreCase(branch) != 0)
93 + ") but different branch addresses (" + s
94 + " and " + branch + ")");
95 type_branch.put(type, branch);
196 String branch = uc.type_branch.get(type); local
    [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");
SipProviderImpl.java 304 * User decided to give us his own via header branch. Lets see if it
374 // If the user has set his own branch Id and the
375 // branch id starts with a valid prefix, then take it.
376 // otherwise, generate one. If branch ID checking has
377 // been requested, set the branch ID.
693 * JvB: Via branch should already be OK, dont touch it here? Some
695 * not set already, dont overwrite CANCEL branch here..
699 String branch = via.getBranch(); local
700 if (branch == null || branch.length() == 0)
    [all...]
  /dalvik/vm/compiler/
Loop.cpp 162 * 2) The loop back branch compares the BIV with a constant.
192 /* Find the block that ends with a branch to exit the loop */
206 MIR *branch = loopBackBlock->lastMIRInsn; local
207 Opcode opcode = branch->dalvikInsn.opcode;
209 /* Last instruction is not a conditional branch - bail */
218 if (branch->ssaRep->numUses == 2) {
219 if (branch->ssaRep->uses[0] == loopAnalysis->ssaBIV) {
220 endSSAReg = branch->ssaRep->uses[1];
221 } else if (branch->ssaRep->uses[1] == loopAnalysis->ssaBIV) {
222 endSSAReg = branch->ssaRep->uses[0]
    [all...]
Compiler.h 109 u4 branch; /* Branch to chained destination */ member in struct:PredictedChainingCell
  /dalvik/vm/compiler/codegen/arm/Thumb/
Factory.cpp 895 ArmLIR *branch = newLIR2(cUnit, kThumbBCond, 0, cond); local
896 return branch;
  /dalvik/vm/compiler/codegen/arm/Thumb2/
Gen.cpp 242 ArmLIR *branch; local
261 branch = newLIR2(cUnit, kThumb2Cbz, r2, 0);
283 branch->generic.target = (LIR *)target;
296 ArmLIR *branch; local
317 branch = opNone(cUnit, kOpUncondBr);
343 branch->generic.target = (LIR *)target;
Factory.cpp 1136 ArmLIR *branch; local
    [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 );
  /frameworks/compile/libbcc/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 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/webkit/Source/JavaScriptCore/dfg/
DFGJITCodeGenerator.h 682 BranchRecord& branch = m_branches[i]; local
683 branch.jump.linkTo(m_blockHeads[branch.destination], &m_jit);
    [all...]
  /system/media/mca/filterfw/java/android/filterfw/core/
FilterGraph.java 323 if (mLogVerbose) Log.v(TAG, "Creating branch for " + outputPort + "!");
324 FrameBranch branch = null; local
326 branch = new FrameBranch("branch" + branchId++);
331 branch.initWithAssignmentList("outputs", inputPorts.size());
332 addFilter(branch);
333 outputPort.connectTo(branch.getInputPort("in"));
335 for (OutputPort branchOutPort : ((Filter)branch).getOutputPorts()) {
  /external/llvm/lib/Transforms/Utils/
InlineFunction.cpp 111 // doesn't terminate in an unconditional branch, just fail. More
121 BranchInst *branch = dyn_cast<BranchInst>(&exnBlock->back()); local
122 if (!branch || branch->isConditional()) return 0;
124 BasicBlock *successor = branch->getSuccessor(0);
207 // Redirect the last dominated branch there.
308 /// a simple branch. When there is more than one predecessor, we need to
330 /// [LIBUNWIND] Get or create a target for the branch out of rewritten calls to
397 /// at the end of the given block, as a branch to the inner unwind
419 // Make a branch
    [all...]
  /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...]

Completed in 1726 milliseconds

1 2