/libcore/luni/src/main/java/javax/net/ssl/ |
package.html | 9 Sockets Layer (SSL) protocol and the successor Transport Layer
|
/external/lzma/C/ |
Ppmd7.c | 277 #define SUCCESSOR(p) ((CPpmd_Void_Ref)((p)->SuccessorLow | ((UInt32)(p)->SuccessorHigh << 16)))
345 CPpmd_Byte_Ref upBranch = (CPpmd_Byte_Ref)SUCCESSOR(p->FoundState);
354 CPpmd_Void_Ref successor;
local 363 successor = SUCCESSOR(s);
364 if (successor != upBranch)
366 c = CTX(successor);
423 CPpmd_Void_Ref successor, fSuccessor = SUCCESSOR(p->FoundState);
local 470 successor = REF(p->Text); [all...] |
/dalvik/dexgen/src/com/android/dexgen/rop/code/ |
BasicBlockList.java | 221 * Gets the preferred successor for the given block. If the block 222 * only has one successor, then that is the preferred successor. 223 * Otherwise, if the block has a primay successor, then that is 224 * the preferred successor. If the block has no successors, then 228 * @return {@code null-ok;} the preferred successor, if any
|
/dalvik/dx/src/com/android/dx/rop/code/ |
BasicBlockList.java | 220 * Gets the preferred successor for the given block. If the block 221 * only has one successor, then that is the preferred successor. 222 * Otherwise, if the block has a primay successor, then that is 223 * the preferred successor. If the block has no successors, then 227 * @return {@code null-ok;} the preferred successor, if any
|
/dalvik/dx/src/com/android/dx/ssa/ |
SsaConverter.java | 123 * unique successor or unique predecessor.<p> 127 * value to have a primary successor that has no other 227 * successor. 256 * Returns {@code true} if block and successor need a Z-node 259 * successor block has more than one predecessor. 262 * @param succ successor node
|
/external/dexmaker/src/dx/java/com/android/dx/rop/code/ |
BasicBlockList.java | 220 * Gets the preferred successor for the given block. If the block 221 * only has one successor, then that is the preferred successor. 222 * Otherwise, if the block has a primay successor, then that is 223 * the preferred successor. If the block has no successors, then 227 * @return {@code null-ok;} the preferred successor, if any
|
/external/dexmaker/src/dx/java/com/android/dx/ssa/ |
SsaConverter.java | 124 * unique successor or unique predecessor.<p> 128 * value to have a primary successor that has no other 228 * successor. 257 * Returns {@code true} if block and successor need a Z-node 260 * successor block has more than one predecessor. 263 * @param succ successor node
|
/external/llvm/test/Transforms/SimplifyCFG/ |
indirectbr.ll | 53 ; remove it from entry's successor list. 127 ; destination is listed as a successor. 136 ; This needs to have more than one successor for this test, otherwise it gets 137 ; replaced with an unconditional branch to the single successor. 166 ; This needs to have more than one successor for this test, otherwise it gets 167 ; replaced with an unconditional branch to the single successor.
|
/external/llvm/include/llvm/Analysis/ |
CFG.h | 40 /// Search for the specified successor of basic block BB and return its position 42 /// this with a block that is not a successor.
|
BranchProbabilityInfo.h | 56 /// only be one if the source block has only one successor. 72 /// \brief Retrieve the hot successor of a block if one exists. 75 /// which \see isEdgeHot would return true, return that successor block. 120 // weight to just "inherit" the non-zero weight of an adjacent successor.
|
/art/compiler/sea_ir/ir/ |
sea_node.h | 47 void AddSuccessor(Region* successor);
|
sea.h | 221 void AddSuccessor(Region* successor) { 222 DCHECK(successor) << "Tried to add NULL successor to SEA node."; 223 successors_.push_back(successor); 239 std::vector<sea_ir::Region*> successors_; // CFG successor nodes (regions)
|
/bionic/libc/upstream-netbsd/libc/stdlib/ |
tdelete.c | 52 if (r->llink == NULL) { /* D2: Find successor */
|
/dalvik/vm/analysis/ |
VfyBasicBlock.h | 36 * the basic block (after the last instruction has executed). Successor
|
/external/chromium/chrome/browser/resources/sync_internals/ |
sync_node_browser.html | 49 <td>Successor</td>
|
/external/chromium/chrome/browser/sync/syncable/ |
syncable_id.cc | 54 // The successor of a string is given by appending the least
|
/external/chromium_org/chrome/browser/resources/sync_internals/ |
node_browser.html | 49 <td>Successor</td>
|
/external/chromium_org/sync/syncable/ |
syncable_id.cc | 53 // The successor of a string is given by appending the least
|
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/ |
brw_fs_cfg.h | 56 void add_successor(void *mem_ctx, fs_bblock *successor);
|
/external/mesa3d/src/mesa/drivers/dri/i965/ |
brw_fs_cfg.h | 56 void add_successor(void *mem_ctx, fs_bblock *successor);
|
/dalvik/dx/src/com/android/dx/command/dump/ |
DotDumper.java | 148 int successor = successors.get(j); local 150 if (successor != bb.getPrimarySuccessor()) { 151 System.out.print(" n" + Hex.u2(successor) + " ");
|
/external/llvm/include/llvm/CodeGen/ |
MachineBasicBlock.h | 69 /// Predecessors/Successors - Keep track of the predecessor / successor 337 /// getLandingPadSuccessor - If this block has a successor that is a landing 357 /// addSuccessor - Add succ as a successor of this MachineBasicBlock. 366 /// removeSuccessor - Remove successor from the successors list of this 371 /// removeSuccessor - Remove specified successor from the successors list of 377 /// replaceSuccessor - Replace successor OLD with NEW and update weight info. 388 /// in transferSuccessors, and update PHI operands in the successor blocks 396 /// isSuccessor - Return true if the specified MBB is a successor of this 403 /// that MBB need not be a successor at all, for example if this block 441 /// given successor block, and return the newly created block, or nul [all...] |
/external/llvm/lib/Transforms/Scalar/ |
BasicBlockPlacement.cpp | 22 // placing the most frequently executed successor until we run out of blocks. I 129 // Scan for the first unplaced successor. 149 // Now that we picked the maximally executed successor, place it.
|
/external/llvm/lib/CodeGen/ |
MachineBlockPlacement.cpp | 316 /// \brief Select the best successor for a block. 319 /// select the "best" one to be the layout successor. It only considers direct 322 /// very hot successor edges. 324 /// \returns The best successor block found, or null if none are viable. 367 // Make sure that a hot successor doesn't have a globally more important 510 // Look for the best viable successor if there is one to place immediately 514 // If an immediate successor isn't available, look for the best viable 527 "layout successor until the CFG reduces\n"); 532 // Zero out LoopPredecessors for the successor we're about to merge in case 533 // we selected a successor that didn't fit naturally into the CFG [all...] |
MachineSink.cpp | 10 // This pass moves instructions into successor blocks when possible, so that 168 // BreakPHIEdge is true if all the uses are in the successor MBB being sunken 460 // FIXME - If finding successor is compile time expensive then catch results. 469 /// FindSuccToSinkTo - Find a successor to sink this instruction to. 480 // SuccToSinkTo - This is the successor to sink this instruction to, once we 509 // FIXME: This picks a successor to sink into based on having one 510 // successor that dominates all the uses. However, there are cases where 511 // sinking can happen but where the sink point isn't a successor. For 576 /// instruction out of its current block into a successor. 632 // successor. We could be introducing calculations to new code paths [all...] |