/external/tensorflow/tensorflow/lite/tools/evaluation/stages/utils/ |
D | image_metrics.cc | 31 float Box2D::Intersection(const Box2D::Interval& a, const Box2D::Interval& b) { in Intersection() function in tflite::evaluation::image::Box2D 37 float Box2D::Intersection(const Box2D& other) const { in Intersection() function in tflite::evaluation::image::Box2D 38 return Intersection(x, other.x) * Intersection(y, other.y); in Intersection() 42 return Area() + other.Area() - Intersection(other); in Union() 48 return Intersection(other) / total; in IoU() 55 const float intersection = Intersection(other); in Overlap()
|
D | image_metrics.h | 40 static float Intersection(const Interval& a, const Interval& b); 42 float Intersection(const Box2D& other) const;
|
/external/llvm/lib/DebugInfo/PDB/Raw/ |
D | MappedBlockStream.cpp | 91 Interval Intersection = intersect(CachedExtent, RequestExtent); in readBytes() local 94 if (Intersection != RequestExtent) in readBytes() 98 AbsoluteDifference(CachedExtent.first, Intersection.first); in readBytes() 277 auto Intersection = intersect(WriteInterval, CachedInterval); in writeBytes() local 278 assert(Intersection.first <= Intersection.second); in writeBytes() 280 uint32_t Length = Intersection.second - Intersection.first; in writeBytes() 282 AbsoluteDifference(WriteInterval.first, Intersection.first); in writeBytes() 284 AbsoluteDifference(CachedInterval.first, Intersection.first); in writeBytes()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/MSF/ |
D | MappedBlockStream.cpp | 135 Interval Intersection = intersect(CachedExtent, RequestExtent); in readBytes() local 138 if (Intersection != RequestExtent) in readBytes() 142 AbsoluteDifference(CachedExtent.first, Intersection.first); in readBytes() 297 auto Intersection = intersect(WriteInterval, CachedInterval); in fixCacheAfterWrite() local 298 assert(Intersection.first <= Intersection.second); in fixCacheAfterWrite() 300 uint32_t Length = Intersection.second - Intersection.first; in fixCacheAfterWrite() 302 AbsoluteDifference(WriteInterval.first, Intersection.first); in fixCacheAfterWrite() 304 AbsoluteDifference(CachedInterval.first, Intersection.first); in fixCacheAfterWrite()
|
/external/llvm-project/llvm/lib/DebugInfo/MSF/ |
D | MappedBlockStream.cpp | 135 Interval Intersection = intersect(CachedExtent, RequestExtent); in readBytes() local 138 if (Intersection != RequestExtent) in readBytes() 142 AbsoluteDifference(CachedExtent.first, Intersection.first); in readBytes() 297 auto Intersection = intersect(WriteInterval, CachedInterval); in fixCacheAfterWrite() local 298 assert(Intersection.first <= Intersection.second); in fixCacheAfterWrite() 300 uint32_t Length = Intersection.second - Intersection.first; in fixCacheAfterWrite() 302 AbsoluteDifference(WriteInterval.first, Intersection.first); in fixCacheAfterWrite() 304 AbsoluteDifference(CachedInterval.first, Intersection.first); in fixCacheAfterWrite()
|
/external/vixl/src/aarch64/ |
D | operands-aarch64.cc | 99 CPURegList CPURegList::Intersection(const CPURegList& list_1, in Intersection() function in vixl::aarch64::CPURegList 102 return Intersection(list_1, Intersection(list_2, list_3)); in Intersection() 106 CPURegList CPURegList::Intersection(const CPURegList& list_1, in Intersection() function in vixl::aarch64::CPURegList 110 return Intersection(Intersection(list_1, list_2), in Intersection() 111 Intersection(list_3, list_4)); in Intersection()
|
/external/llvm/lib/CodeGen/AsmPrinter/ |
D | DwarfExpression.cpp | 145 SmallBitVector Intersection(RegSize, false); in AddMachineRegPiece() local 146 Intersection.set(Offset, Offset + Size); in AddMachineRegPiece() 147 Intersection ^= Coverage; in AddMachineRegPiece() 151 if (Reg >= 0 && Intersection.any()) { in AddMachineRegPiece()
|
/external/vixl/src/aarch32/ |
D | instructions-aarch32.h | 509 static RegisterList Intersection(const RegisterList& list_1, 513 static RegisterList Intersection(const RegisterList& list_1, 516 return Intersection(list_1, Intersection(list_2, list_3)); 518 static RegisterList Intersection(const RegisterList& list_1, 522 return Intersection(Intersection(list_1, list_2), 523 Intersection(list_3, list_4)); 598 static VRegisterList Intersection(const VRegisterList& list_1, in Intersection() function 602 static VRegisterList Intersection(const VRegisterList& list_1, in Intersection() function 605 return Intersection(list_1, Intersection(list_2, list_3)); in Intersection() 607 static VRegisterList Intersection(const VRegisterList& list_1, in Intersection() function [all …]
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Analysis/ |
D | AliasSetTracker.h | 89 AAMDNodes Intersection(AAInfo.intersect(NewAAInfo)); in updateSizeAndAAInfo() 90 if (!Intersection.TBAA || !Intersection.Scope || in updateSizeAndAAInfo() 91 !Intersection.NoAlias) { in updateSizeAndAAInfo() 96 AAInfo = Intersection; in updateSizeAndAAInfo()
|
/external/rust/crates/hashlink/src/ |
D | linked_hash_set.rs | 135 pub fn intersection<'a>(&'a self, other: &'a LinkedHashSet<T, S>) -> Intersection<'a, T, S> { in intersection() 136 Intersection { in intersection() 457 pub struct Intersection<'a, T, S> { struct 581 impl<'a, T, S> Clone for Intersection<'a, T, S> { implementation 583 fn clone(&self) -> Intersection<'a, T, S> { in clone() 584 Intersection { in clone() 591 impl<'a, T, S> Iterator for Intersection<'a, T, S> implementation 619 impl<'a, T, S> fmt::Debug for Intersection<'a, T, S> implementation
|
/external/llvm-project/llvm/unittests/ADT/ |
D | CoalescingBitVectorTest.cpp | 284 void simpleIntersection(UBitVec &Intersection, const UBitVec &LHS, in simpleIntersection() argument 288 Intersection.set(Bit); in simpleIntersection() 291 TEST(CoalescingBitVectorTest, Intersection) { in TEST() argument 362 void simpleIntersectionWithComplement(UBitVec &Intersection, const UBitVec &LHS, in simpleIntersectionWithComplement() argument 366 Intersection.set(Bit); in simpleIntersectionWithComplement()
|
/external/skqp/docs/ |
D | SkIRect_Reference.bmh | 826 #Subtopic Intersection 863 #In Intersection 899 #In Intersection 928 #In Intersection 955 #In Intersection 982 #In Intersection 1012 #In Intersection 1039 #In Intersection 1067 #In Intersection 1088 #In Intersection [all …]
|
D | SkRect_Reference.bmh | 1212 #Subtopic Intersection 1228 #In Intersection 1256 #In Intersection 1283 #In Intersection 1310 #In Intersection 1338 #In Intersection 1364 #In Intersection 1385 #In Intersection 1405 #In Intersection 1424 #In Intersection [all …]
|
/external/fonttools/Lib/fontTools/misc/ |
D | bezierTools.py | 10 Intersection = namedtuple("Intersection", ["pt", "t1", "t2"]) variable 941 Intersection( 951 Intersection( 967 Intersection( 1027 intersections.append(Intersection(pt=pt, t1=t, t2=_line_t_of_pt(*line, pt))) 1141 Intersection(pt=segmentPointAtT(curve1, ts[0]), t1=ts[0], t2=ts[1]) 1191 return [Intersection(pt=i.pt, t1=i.t2, t2=i.t1) for i in intersections]
|
/external/llvm-project/llvm/include/llvm/Analysis/ |
D | AliasSetTracker.h | 93 AAMDNodes Intersection(AAInfo.intersect(NewAAInfo)); in updateSizeAndAAInfo() 94 SizeChanged |= Intersection != AAInfo; in updateSizeAndAAInfo() 95 AAInfo = Intersection; in updateSizeAndAAInfo()
|
/external/rust/crates/hashbrown/src/ |
D | set.rs | 705 pub fn intersection<'a>(&'a self, other: &'a Self) -> Intersection<'a, T, S, A> { in intersection() 711 Intersection { in intersection() 1380 pub struct Intersection<'a, T, S, A: Allocator + Clone = Global> { struct 1599 impl<T, S, A: Allocator + Clone> Clone for Intersection<'_, T, S, A> { implementation 1602 Intersection { in clone() 1609 impl<'a, T, S, A> Iterator for Intersection<'a, T, S, A> implementation 1634 impl<T, S, A> fmt::Debug for Intersection<'_, T, S, A> implementation 1645 impl<T, S, A> FusedIterator for Intersection<'_, T, S, A> implementation 1823 v: Intersection<'a, &'static str, DefaultHashBuilder, A>, in assert_covariance() 1824 ) -> Intersection<'a, &'new str, DefaultHashBuilder, A> { in assert_covariance()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/ |
D | VectorUtils.cpp | 571 SmallVector<Metadata *, 4> Intersection; in intersectAccessGroups() local 575 Intersection.push_back(MD1); in intersectAccessGroups() 581 Intersection.push_back(Item); in intersectAccessGroups() 585 if (Intersection.size() == 0) in intersectAccessGroups() 587 if (Intersection.size() == 1) in intersectAccessGroups() 588 return cast<MDNode>(Intersection.front()); in intersectAccessGroups() 591 return MDNode::get(Ctx, Intersection); in intersectAccessGroups()
|
/external/llvm-project/llvm/lib/Analysis/ |
D | VectorUtils.cpp | 685 SmallVector<Metadata *, 4> Intersection; in intersectAccessGroups() local 689 Intersection.push_back(MD1); in intersectAccessGroups() 695 Intersection.push_back(Item); in intersectAccessGroups() 699 if (Intersection.size() == 0) in intersectAccessGroups() 701 if (Intersection.size() == 1) in intersectAccessGroups() 702 return cast<MDNode>(Intersection.front()); in intersectAccessGroups() 705 return MDNode::get(Ctx, Intersection); in intersectAccessGroups()
|
/external/llvm-project/flang/include/flang/Parser/ |
D | char-set.h | 65 constexpr SetOfChars Intersection(SetOfChars that) const { in Intersection() function
|
/external/protobuf/csharp/src/Google.Protobuf.Test/WellKnownTypes/ |
D | FieldMaskTest.cs | 197 public void Intersection() in Intersection() method in Google.Protobuf.WellKnownTypes.FieldMaskTest 203 FieldMask result = mask1.Intersection(mask2); in Intersection()
|
/external/llvm/utils/TableGen/ |
D | CodeGenRegisters.cpp | 1668 std::set<unsigned> Intersection; in computeRegUnitSets() local 1673 std::inserter(Intersection, Intersection.begin())); in computeRegUnitSets() 1674 if (Intersection.empty()) in computeRegUnitSets() 1881 CodeGenRegister::Vec Intersection; in inferCommonSubClass() local 1884 std::inserter(Intersection, Intersection.begin()), deref<llvm::less>()); in inferCommonSubClass() 1887 if (Intersection.empty()) in inferCommonSubClass() 1897 getOrCreateSubClass(RC1, &Intersection, in inferCommonSubClass()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/ |
D | LoopUtils.cpp | 995 auto *Intersection = (OpValue == nullptr) ? dyn_cast<Instruction>(VL[0]) in propagateIRFlags() local 997 if (!Intersection) in propagateIRFlags() 999 const unsigned Opcode = Intersection->getOpcode(); in propagateIRFlags() 1000 VecOp->copyIRFlags(Intersection); in propagateIRFlags()
|
/external/llvm-project/llvm/utils/TableGen/ |
D | CodeGenRegisters.cpp | 1950 std::set<unsigned> Intersection; in computeRegUnitSets() local 1955 std::inserter(Intersection, Intersection.begin())); in computeRegUnitSets() 1956 if (Intersection.empty()) in computeRegUnitSets() 2161 CodeGenRegister::Vec Intersection; in inferCommonSubClass() local 2164 std::inserter(Intersection, Intersection.begin()), in inferCommonSubClass() 2168 if (Intersection.empty()) in inferCommonSubClass() 2176 getOrCreateSubClass(RC1, &Intersection, in inferCommonSubClass()
|
/external/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/ |
D | FieldMaskPartial.cs | 305 public FieldMask Intersection(FieldMask additionalMask) in Intersection() method in Google.Protobuf.WellKnownTypes.FieldMask
|
/external/llvm-project/flang/include/flang/Common/ |
D | interval.h | 110 constexpr Interval Intersection(const Interval &that) const { in Intersection() function
|