HomeSort by relevance Sort by last modified time
    Searched defs:Intersection (Results 1 - 11 of 11) sorted by null

  /external/vixl/src/aarch64/
operands-aarch64.cc 104 CPURegList CPURegList::Intersection(const CPURegList& list_1,
107 return Intersection(list_1, Intersection(list_2, list_3));
111 CPURegList CPURegList::Intersection(const CPURegList& list_1,
115 return Intersection(Intersection(list_1, list_2),
116 Intersection(list_3, list_4));
  /hardware/qcom/display/msm8909/sdm/libs/utils/
rect.cpp 67 LayerRect Intersection(const LayerRect &rect1, const LayerRect &rect2) {
  /hardware/qcom/display/msm8909w_3100/sdm/libs/utils/
rect.cpp 62 LayerRect Intersection(const LayerRect &rect1, const LayerRect &rect2) {
  /hardware/qcom/display/msm8996/sdm/libs/utils/
rect.cpp 62 LayerRect Intersection(const LayerRect &rect1, const LayerRect &rect2) {
  /hardware/qcom/display/msm8998/sdm/libs/utils/
rect.cpp 62 LayerRect Intersection(const LayerRect &rect1, const LayerRect &rect2) {
  /external/llvm/lib/DebugInfo/PDB/Raw/
MappedBlockStream.cpp 91 Interval Intersection = intersect(CachedExtent, RequestExtent);
94 if (Intersection != RequestExtent)
98 AbsoluteDifference(CachedExtent.first, Intersection.first);
277 auto Intersection = intersect(WriteInterval, CachedInterval);
278 assert(Intersection.first <= Intersection.second);
280 uint32_t Length = Intersection.second - Intersection.first;
282 AbsoluteDifference(WriteInterval.first, Intersection.first);
284 AbsoluteDifference(CachedInterval.first, Intersection.first)
    [all...]
  /bionic/tools/versioner/src/
versioner.cpp 274 static std::vector<T> Intersection(const std::set<T>& a, const std::set<T>& b) {
275 std::vector<T> intersection; local
276 std::set_intersection(a.begin(), a.end(), b.begin(), b.end(), std::back_inserter(intersection));
277 return intersection;
297 auto intersection = Intersection(compilation_types, inline_def_it.second); local
298 if (!intersection.empty()) {
301 fprintf(stderr, " declarations visible in: %s\n", Join(intersection, ", ").c_str());
  /external/llvm/utils/TableGen/
CodeGenRegisters.cpp     [all...]
  /external/llvm/lib/Analysis/
DependenceAnalysis.cpp 408 // Updates X with the intersection
457 // the result of an intersection.
561 llvm_unreachable("shouldn't reach the end of Constraint intersection");
    [all...]
ValueTracking.cpp     [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineCompares.cpp     [all...]

Completed in 224 milliseconds