/external/mesa3d/src/gallium/drivers/r300/compiler/ |
r500_fragprog_emit.c | 463 struct branch_info * branch; local 543 rc_error(s->C, "Branch depth exceeds hardware limit"); 549 branch = &s->Branches[s->CurrentBranchDepth++]; 550 branch->If = newip; 551 branch->Else = -1; 552 branch->Endif = -1; 562 rc_error(s->C, "%s: got ELSE outside a branch", __FUNCTION__); 566 branch = &s->Branches[s->CurrentBranchDepth - 1]; 567 branch->Else = newip; 574 rc_error(s->C, "%s: got ELSE outside a branch", __FUNCTION__) [all...] |
/external/chromium/chrome/common/extensions/docs/server/ |
chromeextensionsdocs.py | 68 branch = self.getBranch(url[1]) 69 url = url[0] % branch 95 # returns a tuple of the url and the branch 155 branch = memcache.get(channel.name) 156 if branch is None: 173 # find branch in response 178 branch = match.group(1) 180 if not memcache.add(channel.name, branch, DEFAULT_CACHE_TIME): 182 return branch 264 self.response.out.write('<span style="color:#f00;">Failure:</span> path ' + path + " gave branch " + actual[1].name + "<br/>" [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/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...] |
SkRTree.h | 98 * A branch of the tree, this may contain a pointer to another interior node, or a data value 100 struct Branch { 117 Branch* child(size_t index) { 118 return reinterpret_cast<Branch*>(this + 1) + index; 127 bool operator()(const SkRTree::Branch lhs, const SkRTree::Branch rhs) const { 135 bool operator()(const SkRTree::Branch lhs, const SkRTree::Branch rhs) { 142 bool operator()(const SkRTree::Branch lhs, const SkRTree::Branch rhs) [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...] |
SkRTree.h | 98 * A branch of the tree, this may contain a pointer to another interior node, or a data value 100 struct Branch { 117 Branch* child(size_t index) { 118 return reinterpret_cast<Branch*>(this + 1) + index; 127 bool operator()(const SkRTree::Branch lhs, const SkRTree::Branch rhs) const { 135 bool operator()(const SkRTree::Branch lhs, const SkRTree::Branch rhs) { 142 bool operator()(const SkRTree::Branch lhs, const SkRTree::Branch rhs) [all...] |
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src_rss/org/eclipse/releng/util/rss/ |
messages.properties | 27 RSSFeedAddEntryTask.BranchError=Warning: no branch specified, eg., 3.2.0\! 29 RSSFeedAddEntryTask.BuildURLError=Warning: no buildURL specified, eg., http://server/path/to/project/downloads/drops/branch/buildID/\! 37 RSSFeedAddEntryTask.BranchKeyword=%%branch%%
|
/frameworks/base/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()) {
|
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/ |
FilterGraph.java | 254 // Connect variable (and possibly branch) variable to filter 292 String branchName = "__" + sourceFilter.getName() + "_" + sourcePort + "Branch"; 293 Filter branch = getFilter(branchName); local 294 if (branch == null) { 295 branch = new BranchFilter(mContext, branchName, false); 296 addFilter(branch); 297 sourceFilter.connect(sourcePort, branch, "input"); 300 branch.connect(portName, targetFilter, targetPort);
|
/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
|
/dalvik/vm/mterp/armv5te/ |
OP_PACKED_SWITCH.S | 11 * a potential trace heads regardless of branch direction. 22 bl $func @ r0<- code-unit branch offset
|
OP_AGET_WIDE.S | 22 @ branch prediction (if any) handles conditional forward branches vs.
|
/dalvik/vm/mterp/mips/ |
OP_PACKED_SWITCH.S | 11 * a potential trace heads regardless of branch direction. 23 JAL($func) # a0 <- code-unit branch offset
|
/external/skia/tools/ |
git-skia-verify | 65 PREVIOUS_BRANCH=`git branch --no-color | grep "^*" | awk '{ print $2}'` 78 # we run the test in a detached branch
|
/art/compiler/dex/quick/x86/ |
call_x86.cc | 164 LIR* branch = NewLIR2(kX86Jcc8, 0, kX86CondEq); local 167 branch->target = NewLIR0(kPseudoTargetLabel); 181 LIR* branch = NewLIR2(kX86Jcc8, 0, kX86CondNe); local 184 branch->target = NewLIR0(kPseudoTargetLabel); 246 // Remember branch target - will process later
|
int_x86.cc | 34 LIR* branch = OpCondBranch(c_code, tgt); local 35 // Remember branch target - will process later 37 return branch; 92 LIR* branch = NewLIR2(kX86Jcc8, 0 /* lir operand for Jcc offset */ , local 94 branch->target = target; 95 return branch; 107 LIR* branch = NewLIR2(kX86Jcc8, 0 /* lir operand for Jcc offset */ , cc); local 108 branch->target = target; 109 return branch; 229 LIR* branch = NewLIR2(kX86Jcc8, 0, is_min ? kX86CondG : kX86CondL) local [all...] |
/device/common/ |
generate-blob-lists.sh | 32 # Syntax: device/common/generate-blob-lists.sh -f|--force [<server> <branch>] 34 # If the server and branch paramters are both present, the script will upload 36 # in the specified branch. 118 echo uploading to server $1 branch $2 128 echo uploading to server $1 branch $2
|
/external/llvm/test/MC/MachO/ARM/ |
long-call-branch-island-relocation.s | 23 @ generating an external relocation so the linker can create a branch
|
/external/llvm/utils/git/ |
find-rev | 8 parser.add_option("", "--branch", dest="branch", 9 help="Ref for the branch to search [%default]", 24 p = subprocess.Popen(['git', 'rev-list', opts.branch, '--pretty'],
|
/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...] |
/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/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ |
CoreEngine.h | 415 // The branch node builder does not generate autotransitions. 428 ExplodedNode *generateNode(ProgramStateRef State, bool branch, 431 const CFGBlock *getTargetBlock(bool branch) const { 432 return branch ? DstT : DstF; 435 void markInfeasible(bool branch) { 436 if (branch) 442 bool isFeasible(bool branch) { 443 return branch ? !InFeasibleTrue : !InFeasibleFalse;
|
/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...] |
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src_rss/org/eclipse/releng/generators/rss/ |
RSSFeedAddEntryTask.java | 50 * branch - build's branch, eg., 2.2.0 54 * buildURL - URL of the build being added to the feed - eg., http://servername/path/to/project/branch/buildID/ 94 * JUnitTestURL - URL of the build's JUnit test results - eg., http://servername/path/to/project/branch/buildID/testResults.php 95 * performanceTestURL - URL of the build's performance tests - eg., http://servername/path/to/project/branch/buildID/performance/performance.php 96 * APITestURL - URL of the build's API test results - eg., http://servername/path/to/project/branch/buildID/testResults.php 126 private String branch; field in class:RSSFeedAddEntryTask 172 public void setBranch(String branch) { 173 if (isNullString(branch)) 176 { this.branch = branch; [all...] |