HomeSort by relevance Sort by last modified time
    Searched refs:overlaps (Results 1 - 25 of 110) sorted by null

1 2 3 4 5

  /external/fonttools/Tests/varLib/
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):
37 for box, substitutions in overlaps
    [all...]
  /external/libvpx/libvpx/vp8/decoder/
ec_types.h 20 /* The area (pixel area in Q6) the block pointed to by bmi overlaps
31 OVERLAP_NODE overlaps[MAX_OVERLAPS]; member in struct:__anon29800
34 /* Structure used to hold all the overlaps of a macroblock. The overlaps of a
35 * macroblock is further divided into block overlaps.
38 B_OVERLAP overlaps[16]; member in struct:__anon29801
error_concealment.c 44 if (pbi->overlaps != NULL) {
45 vpx_free(pbi->overlaps);
46 pbi->overlaps = NULL;
49 pbi->overlaps =
52 if (pbi->overlaps == NULL) return -1;
58 vpx_free(pbi->overlaps);
59 pbi->overlaps = NULL;
62 /* Inserts a new overlap area value to the list of overlaps of a block */
63 static void assign_overlap(OVERLAP_NODE *overlaps, union b_mode_info *bmi,
67 /* Find and assign to the next empty overlap node in the list of overlaps
    [all...]
onyxd_int.h 109 MB_OVERLAP *overlaps; member in struct:VP8D_COMP
  /external/swiftshader/third_party/LLVM/include/llvm/CodeGen/
MachineLoopRanges.h 55 /// overlaps - Return true if this loop overlaps the given range of machine
57 bool overlaps(SlotIndex Start, SlotIndex Stop);
  /external/tensorflow/tensorflow/python/ops/signal/
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/antlr/runtime/Ruby/lib/antlr3/
util.rb 164 def overlaps?( range )
169 not overlaps?( range )
  /external/antlr/runtime/Ruby/test/functional/token-rewrite/
basic.rb 234 error.to_s.should == %q<operation (replace @ 1..2 : "foo") overlaps with previous operation (replace @ 0..3 : "bar")>
245 error.to_s.should == %q<operation (insert-before @ 4 : "y") overlaps with previous operation (replace @ 2..4 : "x")>
256 error.to_s.should == %q<operation (replace @ 3..5 : "foo") overlaps with previous operation (replace @ 2..4 : "xyz")>
267 error.to_s.should == %q<operation (replace @ 1..3 : "foo") overlaps with previous operation (replace @ 2..4 : "xyz")>
  /external/skia/src/pathops/
SkPathOpsCommon.cpp 303 SkOpCoincidence overlaps(globalState);
306 SkOpCoincidence* pairs = overlaps.isEmpty() ? coincidence : &overlaps;
311 // For each coincident pair that overlaps another, when the receivers (the 1st of the pair)
313 if (!pairs->findOverlaps(&overlaps DEBUG_ITER_PARAMS(SAFETY_COUNT - safetyHatch))) {
320 } while (!overlaps.isEmpty());
SkOpCoincidence.cpp 190 // if there is an existing pair that overlaps the addition, extend it
567 // return true if span overlaps existing and needs to adjust the coincident list
571 SkTDArray<SkCoincidentSpans*>* overlaps) const {
575 overlaps);
577 return this->checkOverlap(check, oppSeg, coinSeg, oppTe, oppTs, coinTe, coinTs, overlaps);
612 *overlaps->append() = check; // partial overlap, extend existing entry
662 SkTDArray<SkCoincidentSpans*> overlaps; local
664 if (!this->checkOverlap(fTop, coinSeg, oppSeg, coinTs, coinTe, oppTs, oppTe, &overlaps)) {
668 coinTe, oppTs, oppTe, &overlaps)) {
671 SkCoincidentSpans* overlap = overlaps.count() ? overlaps[0] : nullptr
    [all...]
  /external/skqp/src/pathops/
SkPathOpsCommon.cpp 303 SkOpCoincidence overlaps(globalState);
306 SkOpCoincidence* pairs = overlaps.isEmpty() ? coincidence : &overlaps;
311 // For each coincident pair that overlaps another, when the receivers (the 1st of the pair)
313 if (!pairs->findOverlaps(&overlaps DEBUG_ITER_PARAMS(SAFETY_COUNT - safetyHatch))) {
320 } while (!overlaps.isEmpty());
SkOpCoincidence.cpp 190 // if there is an existing pair that overlaps the addition, extend it
567 // return true if span overlaps existing and needs to adjust the coincident list
571 SkTDArray<SkCoincidentSpans*>* overlaps) const {
575 overlaps);
577 return this->checkOverlap(check, oppSeg, coinSeg, oppTe, oppTs, coinTe, coinTs, overlaps);
612 *overlaps->append() = check; // partial overlap, extend existing entry
662 SkTDArray<SkCoincidentSpans*> overlaps; local
664 if (!this->checkOverlap(fTop, coinSeg, oppSeg, coinTs, coinTe, oppTs, oppTe, &overlaps)) {
668 coinTe, oppTs, oppTe, &overlaps)) {
671 SkCoincidentSpans* overlap = overlaps.count() ? overlaps[0] : nullptr
    [all...]
  /external/tensorflow/tensorflow/core/kernels/
non_max_suppression_op.cc 53 const Tensor& overlaps,
55 // the shape of 'overlaps' is [num_boxes, num_boxes]
56 OP_REQUIRES(context, overlaps.dims() == 2,
57 errors::InvalidArgument("overlaps must be 2-D",
58 overlaps.shape().DebugString()));
60 *num_boxes = overlaps.dim_size(0);
61 OP_REQUIRES(context, overlaps.dim_size(1) == *num_boxes,
62 errors::InvalidArgument("overlaps must be square",
63 overlaps.shape().DebugString()));
132 typename TTypes<float, 2>::ConstTensor overlaps, int i, int j
637 const Tensor& overlaps = context->input(0); variable
    [all...]
  /external/v8/src/wasm/baseline/
liftoff-register.h 166 bool overlaps(const LiftoffRegister other) const { function in class:v8::internal::wasm::LiftoffRegister
167 if (is_pair()) return low().overlaps(other) || high().overlaps(other);
  /external/swiftshader/third_party/LLVM/lib/CodeGen/
MachineLoopRanges.cpp 70 /// overlaps - Return true if this loop overlaps the given range of machine
72 bool MachineLoopRange::overlaps(SlotIndex Start, SlotIndex Stop) { function in class:MachineLoopRange
  /build/make/tools/releasetools/
test_rangelib.py 42 self.assertTrue(RangeSet("10-19 30-34").overlaps(RangeSet("18-32")))
43 self.assertFalse(RangeSet("10-19 30-34").overlaps(RangeSet("22-28")))
ota_package_parser.py 105 if target_range.overlaps(source_range):
117 if target_range.overlaps(source_range):
  /external/llvm/lib/Target/Hexagon/
HexagonBlockRanges.cpp 30 bool HexagonBlockRanges::IndexRange::overlaps(const IndexRange &A) const { function in class:HexagonBlockRanges::IndexRange
58 assert(end() == A.start() || overlaps(A));
95 if (Merge || Iter->overlaps(*Next)) {
110 if (!A.overlaps(B)) {
149 if (Rg.overlaps(Range)) {
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/Hexagon/
HexagonBlockRanges.cpp 35 bool HexagonBlockRanges::IndexRange::overlaps(const IndexRange &A) const { function in class:HexagonBlockRanges::IndexRange
61 assert(end() == A.start() || overlaps(A));
96 if (Merge || Iter->overlaps(*Next)) {
110 if (!A.overlaps(B)) {
148 if (Rg.overlaps(Range)) {
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/CodeGen/
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 { function in class:llvm::SUnit::SDep
  /external/guava/guava-tests/test/com/google/common/collect/
ImmutableRangeSetTest.java 355 boolean overlaps = false;
358 overlaps = true;
364 assertFalse(overlaps);
367 assertTrue(overlaps);
  /external/llvm/lib/Target/WebAssembly/
WebAssemblyRegColoring.cpp 148 if (!OtherLI->empty() && OtherLI->overlaps(*LI))
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/WebAssembly/
WebAssemblyRegColoring.cpp 150 if (!OtherLI->empty() && OtherLI->overlaps(*LI))
  /external/tensorflow/tensorflow/core/ops/
image_ops.cc 864 .Input("overlaps: float")
872 ShapeHandle overlaps;
873 TF_RETURN_IF_ERROR(c->WithRank(c->input(0), 2, &overlaps));
    [all...]
  /external/llvm/include/llvm/CodeGen/
LiveInterval.h 418 /// overlaps - Return true if the intersection of the two live ranges is
420 bool overlaps(const LiveRange &other) const {
426 /// overlaps - Return true if the two ranges have overlapping segments
431 bool overlaps(const LiveRange &Other, const CoalescerPair &CP,
434 /// overlaps - Return true if the live range overlaps an interval specified
436 bool overlaps(SlotIndex Start, SlotIndex End) const;

Completed in 583 milliseconds

1 2 3 4 5