/external/skia/src/core/ |
D | SkRTree.cpp | 15 std::vector<Branch> branches; in insert() local 16 branches.reserve(N); in insert() 27 branches.push_back(b); in insert() 30 fCount = (int)branches.size(); in insert() 36 n->fChildren[0] = branches[0]; in insert() 38 fRoot.fBounds = branches[0].fBounds; in insert() 41 fRoot = this->bulkLoad(&branches); in insert() 57 int SkRTree::CountNodes(int branches) { in CountNodes() argument 58 if (branches == 1) { in CountNodes() 61 int numBranches = branches / kMaxChildren; in CountNodes() [all …]
|
/external/jacoco/org.jacoco.core/src/org/jacoco/core/internal/analysis/ |
D | LineImpl.java | 48 * Empty line without instructions or branches. 53 final CounterImpl branches) { in getInstance() argument 56 final int bm = branches.getMissedCount(); in getInstance() 57 final int bc = branches.getCoveredCount(); in getInstance() 62 return new Var(instructions, branches); in getInstance() 69 Var(final CounterImpl instructions, final CounterImpl branches) { in Var() argument 70 super(instructions, branches); in Var() 75 final ICounter branches) { in increment() argument 77 this.branches = this.branches.increment(branches); in increment() 93 final ICounter branches) { in increment() argument [all …]
|
D | Instruction.java | 60 private int branches; field in Instruction 76 this.branches = 0; in Instruction() 95 branches++; in addBranch() 117 branches++; in addBranch() 146 * Merges information about covered branches of this instruction with 151 * @return new instance with merged branches 155 result.branches = this.branches; in merge() 162 * Creates a copy of this instruction where all outgoing branches are 167 * new branches to consider 168 * @return new instance with replaced branches [all …]
|
D | SourceNodeImpl.java | 104 * Increments instructions and branches by the given counter values. If a 105 * optional line number is specified the instructions and branches are added 110 * @param branches 111 * branches to add 115 public void increment(final ICounter instructions, final ICounter branches, in increment() argument 118 incrementLine(instructions, branches, line); in increment() 121 branchCounter = branchCounter.increment(branches); in increment() 125 final ICounter branches, final int line) { in incrementLine() argument 130 lines[line - offset] = l.increment(instructions, branches); in incrementLine()
|
D | MethodCoverageImpl.java | 46 public void increment(final ICounter instructions, final ICounter branches, in increment() argument 48 super.increment(instructions, branches, line); in increment() 50 if (branches.getTotalCount() > 1) { in increment() 51 final int c = Math.max(0, branches.getCoveredCount() - 1); in increment() 52 final int m = Math.max(0, branches.getTotalCount() - c - 1); in increment() 59 * branches have been incremented for this method coverage node.
|
/external/llvm/test/tools/llvm-cov/Inputs/ |
D | test_-b_-f.output | 3 No branches 8 No branches 13 No branches 18 No branches 23 No branches 28 No branches 33 Branches executed:100.00% of 4 39 Branches executed:100.00% of 11 45 No branches 50 No branches [all …]
|
/external/jacoco/org.jacoco.report/src/org/jacoco/report/internal/html/page/ |
D | SourceHighlighter.java | 106 final ICounter branches = line.getBranchCounter(); in highlight() local 107 switch (branches.getStatus()) { in highlight() 110 "All %2$d branches missed.", branches); in highlight() 113 "All %2$d branches covered.", branches); in highlight() 116 "%1$d of %2$d branches missed.", branches); in highlight() 124 final ICounter branches) throws IOException { in span() argument 126 final Integer missed = Integer.valueOf(branches.getMissedCount()); in span() 127 final Integer total = Integer.valueOf(branches.getTotalCount()); in span()
|
/external/angle/doc/ |
D | ChoosingANGLEBranch.md | 11 Branches are created automatically in ANGLE to correspond to branches created in 12 Chromium. These branches are named `chromium/####`, where the number is the 13 matching Chromium branch. These branches will be created from the revision which 17 (http://src.chromium.org/viewvc/chrome/branches/2013/src/DEPS?revision=272741) 23 stable Chromium release channel build, as those branches will be deployed with 26 branches will be short-lived. 33 In order to determine which branches are used by Chromium releases, please use 40 ## Updates to release branches 44 fixes for those bugs will be applied to the ANGLE branches for uptake by
|
/external/webrtc/docs/native-code/development/ |
D | index.md | 36 2. Optionally you can specify how new branches should be tracked: 43 3. Alternatively, you can create new local branches like this (recommended): 128 ## Working with Release Branches 130 To see available release branches, run: 145 sync will break on sufficiently old branches. In that case, you can try using 165 For more details, read Chromium's [Working with Branches][chromium-work-branches] and 166 [Working with Release Branches][chromium-work-release-branches] pages. 261 [chromium-work-branches]: https://www.chromium.org/developers/how-tos/get-the-code/working-with-bra… 262 [chromium-work-release-branches]: https://www.chromium.org/developers/how-tos/get-the-code/working-…
|
/external/rust/crates/tokio-macros/src/ |
D | select.rs | 8 let branches = match input.into_iter().next() { in declare_output_enum() localVariable 13 let variants = (0..branches) in declare_output_enum() 19 if branches <= 8 { in declare_output_enum() 21 } else if branches <= 16 { in declare_output_enum() 23 } else if branches <= 32 { in declare_output_enum() 25 } else if branches <= 64 { in declare_output_enum() 28 panic!("up to 64 branches supported"); in declare_output_enum() 36 // Include a `Disabled` variant signifying that all select branches in declare_output_enum()
|
/external/tensorflow/tensorflow/core/api_def/base_api/ |
D | api_def_StatelessCase.pbtxt | 19 name: "branches" 31 output = branches[0](input); 34 output = branches[1](input); 39 output = branches[nbranches-1](input); 44 This should only be used when the none of branches has stateful ops.
|
D | api_def_Case.pbtxt | 18 name: "branches" 30 output = branches[0](input); 33 output = branches[1](input); 38 output = branches[nbranches-1](input);
|
/external/jacoco/org.jacoco.doc/docroot/doc/ |
D | counters.html | 46 <h2>Branches (C1 Coverage)</h2> 51 branches in a method and determines the number of executed or missed branches. 53 the class files. Note that exception handling is not considered as branches 63 <li>No coverage: No branches in the line has been executed (red diamond)</li> 64 <li>Partial coverage: Only a part of the branches in the line have been 66 <li>Full coverage: All branches in the line have been executed (green diamond)</li> 97 on the number of branches (B) and the number of decision points (D): 110 JaCoCo does not consider exception handling as branches try/catch blocks will
|
/external/swiftshader/third_party/SPIRV-Tools/test/tools/opt/ |
D | flags.py | 62 '--eliminate-dead-branches', 86 'eliminate-dead-branches', 142 'eliminate-dead-branches', 161 'eliminate-dead-branches', 174 'eliminate-dead-branches', 182 'eliminate-dead-branches', 200 'eliminate-dead-branches', 209 'eliminate-dead-branches', 216 'eliminate-dead-branches', 248 'eliminate-dead-branches', [all …]
|
/external/deqp-deps/SPIRV-Tools/test/tools/opt/ |
D | flags.py | 62 '--eliminate-dead-branches', 86 'eliminate-dead-branches', 142 'eliminate-dead-branches', 161 'eliminate-dead-branches', 174 'eliminate-dead-branches', 182 'eliminate-dead-branches', 200 'eliminate-dead-branches', 209 'eliminate-dead-branches', 216 'eliminate-dead-branches', 248 'eliminate-dead-branches', [all …]
|
/external/angle/third_party/vulkan-deps/spirv-tools/src/test/tools/opt/ |
D | flags.py | 62 '--eliminate-dead-branches', 86 'eliminate-dead-branches', 142 'eliminate-dead-branches', 161 'eliminate-dead-branches', 174 'eliminate-dead-branches', 182 'eliminate-dead-branches', 200 'eliminate-dead-branches', 209 'eliminate-dead-branches', 216 'eliminate-dead-branches', 248 'eliminate-dead-branches', [all …]
|
/external/tensorflow/tensorflow/compiler/tf2xla/kernels/ |
D | case_op.cc | 31 OP_REQUIRES_OK(ctx, ctx->GetAttr("branches", &unpruned_branches_)); in XlaCaseOp() 82 // We opportunistically prune out branches if the branch index is a in Compile() 85 // trivially unselected branches that cannot be compiled into HLO. in Compile() 86 std::vector<NameAttrList> branches; in Compile() local 88 std::tie(branches, branch_index) = GetPrunedBranchesAndIndex(ctx); in Compile() 90 int num_branches = branches.size(); in Compile() 131 ctx, branches[branch_idx], in Compile() 169 compiler->CompileFunction(options, branches[j], arguments, in Compile() 206 compiler->CompileFunction(options, branches[j], arguments, in Compile() 214 // Check that all branches have identical input shapes. in Compile() [all …]
|
/external/llvm/lib/Target/SystemZ/ |
D | SystemZLongBranch.cpp | 10 // This pass makes sure that all branches are in range. There are several ways 12 // branches are in range and successively replace those that turn out not 15 // branches until no more changes are needed and a fixed point is reached. 21 // An alternative approach is to assume that all branches must be 23 // branches that, even under this pessimistic assumption, turn out to be 35 // On SystemZ, long branches are only needed for functions bigger than 64k, 40 // (1) Work out the address that each block would have if no branches 41 // need relaxing. Exit the pass early if all branches are in range 44 // (2) Work out the address that each block would have if all branches 48 // and relaxing those that need to be relaxed. For backward branches, [all …]
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/SystemZ/ |
D | SystemZLongBranch.cpp | 9 // This pass makes sure that all branches are in range. There are several ways 11 // branches are in range and successively replace those that turn out not 14 // branches until no more changes are needed and a fixed point is reached. 20 // An alternative approach is to assume that all branches must be 22 // branches that, even under this pessimistic assumption, turn out to be 34 // On SystemZ, long branches are only needed for functions bigger than 64k, 39 // (1) Work out the address that each block would have if no branches 40 // need relaxing. Exit the pass early if all branches are in range 43 // (2) Work out the address that each block would have if all branches 47 // and relaxing those that need to be relaxed. For backward branches, [all …]
|
/external/libaom/libaom/av1/encoder/ |
D | cnn.h | 47 // Times when input tensor may be copied to branches given in input_to_branches. 49 // BRANCH_INPUT: copies the input tensor to branches. 50 // BRANCH_OUTPUT: copies the convolved tensor to branches. 61 // Types of combining branches with output of current layer: 86 // layer and store for future use in branches 90 // branches 1 and 2 (where 0 represents the primary 96 // tensor to branches given in input_to_branches. 97 int branches_to_combine; // mask of branches to combine with output of
|
/external/tensorflow/tensorflow/compiler/mlir/tensorflow/transforms/ |
D | resource_op_lifting_cleanup.cc | 133 // if some argument becomes unused in all branches, drop that argument and the 135 void EliminateUnusedResultsForIfCase(Operation *op, ArrayRef<FuncOp> branches) { in EliminateUnusedResultsForIfCase() argument 138 cloned_branches.reserve(branches.size()); in EliminateUnusedResultsForIfCase() 139 for (FuncOp func : branches) { in EliminateUnusedResultsForIfCase() 162 // Check which function arguments are unused in all branches. We can drop in EliminateUnusedResultsForIfCase() 166 for (FuncOp func : branches) { in EliminateUnusedResultsForIfCase() 245 LogicalResult ForwardCommonArgToOutput(Operation *op, ArrayRef<FuncOp> branches, in ForwardCommonArgToOutput() argument 259 for (FuncOp func : branches) { in ForwardCommonArgToOutput() 272 << " is not tied to the same argument across all branches"; in ForwardCommonArgToOutput() 291 ArrayRef<FuncOp> branches, in CanonicalizeFunctionalIfCase() argument [all …]
|
/external/libtextclassifier/abseil-cpp/ |
D | LTS.md | 1 # Long Term Support (LTS) Branches 4 Long Term Support (LTS) branches. An LTS branch allows you to use a known 9 ## LTS Branches 11 The following lists LTS branches and the dates on which they have been released:
|
/external/openscreen/third_party/abseil/src/ |
D | LTS.md | 1 # Long Term Support (LTS) Branches 4 Long Term Support (LTS) branches. An LTS branch allows you to use a known 9 ## LTS Branches 11 The following lists LTS branches and the dates on which they have been released:
|
/external/deqp/external/vulkancts/data/vulkan/amber/graphicsfuzz/ |
D | cov-for-loop-struct-as-iterator.amber | 26 # '--eliminate-dead-branches' 29 # '--eliminate-dead-branches' 32 # '--eliminate-dead-branches' 41 # '--eliminate-dead-branches' 44 # '--eliminate-dead-branches' 45 # '--eliminate-dead-branches' 47 # '--eliminate-dead-branches'
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/ARC/ |
D | ARCBranchFinalize.cpp | 1 //===- ARCBranchFinalize.cpp - ARC conditional branches ---------*- C++ -*-===// 9 // This pass takes existing conditional branches and expands them into longer 10 // range conditional branches. 63 "ARC finalize branches", false, false) 66 "ARC finalize branches", false, false) in INITIALIZE_PASS_DEPENDENCY() 146 std::vector<MachineInstr *> Branches; in runOnMachineFunction() local 164 Branches.push_back(&MI); in runOnMachineFunction()
|