/external/fonttools/Tests/varLib/ |
D | featureVars_test.py | 15 overlaps = overlayFeatureVariations(conds) 16 assert len(overlaps) == 2 * n - 1, overlaps 17 return conds, overlaps 26 overlaps = overlayFeatureVariations(conds) 27 assert len(overlaps) == n * (n + 1) // 2, overlaps 28 return conds, overlaps 36 def _match_condition(location, overlaps): argument 37 for box, substitutions in overlaps: 52 overlaps = overlayFeatureVariations(conds) 53 subst = _match_condition({'abcd': 0}, overlaps) [all …]
|
/external/libvpx/libvpx/vp8/decoder/ |
D | error_concealment.c | 44 if (pbi->overlaps != NULL) { in vp8_alloc_overlap_lists() 45 vpx_free(pbi->overlaps); in vp8_alloc_overlap_lists() 46 pbi->overlaps = NULL; in vp8_alloc_overlap_lists() 49 pbi->overlaps = in vp8_alloc_overlap_lists() 52 if (pbi->overlaps == NULL) return -1; in vp8_alloc_overlap_lists() 58 vpx_free(pbi->overlaps); in vp8_de_alloc_overlap_lists() 59 pbi->overlaps = NULL; in vp8_de_alloc_overlap_lists() 63 static void assign_overlap(OVERLAP_NODE *overlaps, union b_mode_info *bmi, in assign_overlap() argument 70 if (overlaps[i].bmi == NULL) { in assign_overlap() 71 overlaps[i].bmi = bmi; in assign_overlap() [all …]
|
D | ec_types.h | 31 OVERLAP_NODE overlaps[MAX_OVERLAPS]; member 38 B_OVERLAP overlaps[16]; member
|
D | onyxd_int.h | 109 MB_OVERLAP *overlaps; member
|
/external/tensorflow/tensorflow/python/ops/signal/ |
D | spectral_ops.py | 145 overlaps = -(-frame_length // frame_step) # Ceiling division. 146 denom = array_ops.pad(denom, [(0, overlaps * frame_step - frame_length)]) 147 denom = array_ops.reshape(denom, [overlaps, frame_step]) 149 denom = array_ops.tile(denom, [overlaps, 1]) 150 denom = array_ops.reshape(denom, [overlaps * frame_step])
|
/external/tensorflow/tensorflow/core/kernels/ |
D | non_max_suppression_op.cc | 53 const Tensor& overlaps, in ParseAndCheckOverlapSizes() argument 56 OP_REQUIRES(context, overlaps.dims() == 2, in ParseAndCheckOverlapSizes() 58 overlaps.shape().DebugString())); in ParseAndCheckOverlapSizes() 60 *num_boxes = overlaps.dim_size(0); in ParseAndCheckOverlapSizes() 61 OP_REQUIRES(context, overlaps.dim_size(1) == *num_boxes, in ParseAndCheckOverlapSizes() 63 overlaps.shape().DebugString())); in ParseAndCheckOverlapSizes() 132 typename TTypes<float, 2>::ConstTensor overlaps, int i, int j, in OverlapsGreaterThanThreshold() argument 134 return overlaps(i, j) > overlap_threshold; in OverlapsGreaterThanThreshold() 147 const Tensor& overlaps, float threshold) { in CreateOverlapsSuppressCheckFn() argument 149 overlaps.tensor<float, 2>(); in CreateOverlapsSuppressCheckFn() [all …]
|
/external/skia/src/pathops/ |
D | SkPathOpsCommon.cpp | 303 SkOpCoincidence overlaps(globalState); in HandleCoincidence() local 306 SkOpCoincidence* pairs = overlaps.isEmpty() ? coincidence : &overlaps; in HandleCoincidence() 313 if (!pairs->findOverlaps(&overlaps DEBUG_ITER_PARAMS(SAFETY_COUNT - safetyHatch))) { in HandleCoincidence() 320 } while (!overlaps.isEmpty()); in HandleCoincidence()
|
D | SkOpCoincidence.cpp | 571 SkTDArray<SkCoincidentSpans*>* overlaps) const { in checkOverlap() 575 overlaps); in checkOverlap() 577 return this->checkOverlap(check, oppSeg, coinSeg, oppTe, oppTs, coinTe, coinTs, overlaps); in checkOverlap() 612 *overlaps->append() = check; // partial overlap, extend existing entry in checkOverlap() 662 SkTDArray<SkCoincidentSpans*> overlaps; in addOrOverlap() local 664 if (!this->checkOverlap(fTop, coinSeg, oppSeg, coinTs, coinTe, oppTs, oppTe, &overlaps)) { in addOrOverlap() 668 coinTe, oppTs, oppTe, &overlaps)) { in addOrOverlap() 671 SkCoincidentSpans* overlap = overlaps.count() ? overlaps[0] : nullptr; in addOrOverlap() 672 for (int index = 1; index < overlaps.count(); ++index) { // combine overlaps before continuing in addOrOverlap() 673 SkCoincidentSpans* test = overlaps[index]; in addOrOverlap() [all …]
|
/external/skqp/src/pathops/ |
D | SkPathOpsCommon.cpp | 303 SkOpCoincidence overlaps(globalState); in HandleCoincidence() local 306 SkOpCoincidence* pairs = overlaps.isEmpty() ? coincidence : &overlaps; in HandleCoincidence() 313 if (!pairs->findOverlaps(&overlaps DEBUG_ITER_PARAMS(SAFETY_COUNT - safetyHatch))) { in HandleCoincidence() 320 } while (!overlaps.isEmpty()); in HandleCoincidence()
|
D | SkOpCoincidence.cpp | 571 SkTDArray<SkCoincidentSpans*>* overlaps) const { in checkOverlap() 575 overlaps); in checkOverlap() 577 return this->checkOverlap(check, oppSeg, coinSeg, oppTe, oppTs, coinTe, coinTs, overlaps); in checkOverlap() 612 *overlaps->append() = check; // partial overlap, extend existing entry in checkOverlap() 662 SkTDArray<SkCoincidentSpans*> overlaps; in addOrOverlap() local 664 if (!this->checkOverlap(fTop, coinSeg, oppSeg, coinTs, coinTe, oppTs, oppTe, &overlaps)) { in addOrOverlap() 668 coinTe, oppTs, oppTe, &overlaps)) { in addOrOverlap() 671 SkCoincidentSpans* overlap = overlaps.count() ? overlaps[0] : nullptr; in addOrOverlap() 672 for (int index = 1; index < overlaps.count(); ++index) { // combine overlaps before continuing in addOrOverlap() 673 SkCoincidentSpans* test = overlaps[index]; in addOrOverlap() [all …]
|
/external/tensorflow/tensorflow/core/api_def/base_api/ |
D | api_def_NonMaxSuppressionWithOverlaps.pbtxt | 4 name: "overlaps" 47 pruning away boxes that have high overlaps 59 overlaps, scores, max_output_size, overlap_threshold, score_threshold)
|
/external/llvm/lib/Target/Hexagon/ |
D | HexagonBlockRanges.cpp | 30 bool HexagonBlockRanges::IndexRange::overlaps(const IndexRange &A) const { in overlaps() function in HexagonBlockRanges::IndexRange 58 assert(end() == A.start() || overlaps(A)); in merge() 95 if (Merge || Iter->overlaps(*Next)) { in unionize() 110 if (!A.overlaps(B)) { in addsub() 149 if (Rg.overlaps(Range)) { in subtract()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/Hexagon/ |
D | HexagonBlockRanges.cpp | 35 bool HexagonBlockRanges::IndexRange::overlaps(const IndexRange &A) const { in overlaps() function in HexagonBlockRanges::IndexRange 61 assert(end() == A.start() || overlaps(A)); in merge() 96 if (Merge || Iter->overlaps(*Next)) { in unionize() 110 if (!A.overlaps(B)) { in addsub() 148 if (Rg.overlaps(Range)) { in subtract()
|
/external/v8/src/wasm/baseline/ |
D | liftoff-register.h | 166 bool overlaps(const LiftoffRegister other) const { in overlaps() function 167 if (is_pair()) return low().overlaps(other) || high().overlaps(other); in overlaps()
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/AArch64/ |
D | machine-dead-copy.mir | 70 # Don't try to erase any COPY which overlaps itself. 85 # Don't try to analyze any COPY which overlaps itself.
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/tools/llvm-objdump/X86/ |
D | malformed-machos.test | 14 …r malformed object (section contents at offset 4128 with a size of 176, overlaps section contents … 20 …or malformed object (section contents at offset 4320 with a size of 80, overlaps section contents … 41 …rmed object (section relocation entries at offset 0 with a size of 512, overlaps Mach-O headers at…
|
/external/guava/guava-tests/test/com/google/common/collect/ |
D | ImmutableRangeSetTest.java | 355 boolean overlaps = false; in testExhaustive() 358 overlaps = true; in testExhaustive() 364 assertFalse(overlaps); in testExhaustive() 367 assertTrue(overlaps); in testExhaustive()
|
/external/tensorflow/tensorflow/core/ops/ |
D | image_ops.cc | 872 ShapeHandle overlaps; in __anonc970e8b61902() local 873 TF_RETURN_IF_ERROR(c->WithRank(c->input(0), 2, &overlaps)); in __anonc970e8b61902() 886 c->Merge(c->Dim(overlaps, 0), c->Dim(scores, 0), &unused)); in __anonc970e8b61902() 889 c->Merge(c->Dim(overlaps, 0), c->Dim(overlaps, 1), &unused)); in __anonc970e8b61902()
|
/external/swiftshader/third_party/LLVM/include/llvm/CodeGen/ |
D | MachineLoopRanges.h | 57 bool overlaps(SlotIndex Start, SlotIndex Stop);
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/Object/ |
D | macho-invalid.test | 441 …ncated or malformed object (symbol table at offset 8 with a size of 12, overlaps Mach-O headers at… 444 …cated or malformed object (string table at offset 60 with a size of 16, overlaps symbol table at o… 447 …ated or malformed object (symbol table at offset 208 with a size of 12, overlaps section contents … 450 …rmed object (section relocation entries at offset 204 with a size of 8, overlaps section contents … 453 … or malformed object (table of contents at offset 292 with a size of 8, overlaps section relocatio… 456 …ated or malformed object (module table at offset 300 with a size of 52, overlaps table of contents… 459 …ed or malformed object (reference table at offset 352 with a size of 4, overlaps module table at o… 462 …ted or malformed object (indirect table at offset 364 with a size of 4, overlaps section contents … 465 …ormed object (external relocation table at offset 424 with a size of 8, overlaps reference table a… 468 …alformed object (local relocation table at offset 432 with a size of 8, overlaps external relocati… [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/CodeGen/ |
D | ScheduleDAG.h | 130 bool overlaps(const SDep &Other) const; 133 return overlaps(Other) && Latency == Other.Latency; 475 inline bool SDep::overlaps(const SDep &Other) const {
|
/external/llvm/include/llvm/CodeGen/ |
D | ScheduleDAG.h | 125 bool overlaps(const SDep &Other) const; 128 return overlaps(Other) && Latency == Other.Latency; 488 inline bool SDep::overlaps(const SDep &Other) const {
|
D | LiveInterval.h | 420 bool overlaps(const LiveRange &other) const { in overlaps() function 431 bool overlaps(const LiveRange &Other, const CoalescerPair &CP, 436 bool overlaps(SlotIndex Start, SlotIndex End) const;
|
/external/fonttools/Tests/feaLib/data/ |
D | lookupflag.fea | 55 # @FRENCH_MARKS overlaps with @TOP_MARKS.
|
/external/swiftshader/third_party/LLVM/lib/CodeGen/ |
D | MachineLoopRanges.cpp | 72 bool MachineLoopRange::overlaps(SlotIndex Start, SlotIndex Stop) { in overlaps() function in MachineLoopRange
|