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

  /external/apache-commons-math/src/main/java/org/apache/commons/math/stat/clustering/
Cluster.java 25 * Cluster holding a set of {@link Clusterable} points.
30 public class Cluster<T extends Clusterable<T>> implements Serializable {
35 /** The points contained in this cluster. */
38 /** Center of the cluster. */
42 * Build a cluster centered at a specified point.
43 * @param center the point which is to be the center of this cluster
45 public Cluster(final T center) {
51 * Add a point to this cluster.
59 * Get the points contained in the cluster.
60 * @return points contained in the cluster
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
ScheduleDAGSDNodes.cpp 215 bool Cluster = false;
237 Cluster = true;
242 if (!Cluster)
266 // Cluster loads by adding MVT::Glue outputs and inputs. This also
289 /// ClusterNodes - Cluster certain nodes which should be scheduled together.
301 // Cluster loads from "near" addresses into combined SUnits.
517 // Cluster certain nodes which should be scheduled together.
    [all...]
  /external/eigen/unsupported/Eigen/src/MatrixFunctions/
MatrixFunction.h 137 typedef std::list<Scalar> Cluster;
138 typedef std::list<Cluster> ListOfClusters;
167 DynamicIntVectorType m_eivalToCluster; /**< \brief m_eivalToCluster[i] = j means i-th ei'val is in j-th cluster */
169 DynamicIntVectorType m_blockStart; /**< \brief Row index at which block corresponding to i-th cluster starts */
170 IntVectorType m_permutation; /**< \brief Permutation which groups ei'vals in the same cluster together */
228 * # Any eigenvalue in a certain cluster is at most separation() away
229 * from another eigenvalue in the same cluster.
246 Cluster l;
268 /** \brief Find cluster in #m_clusters containing some value
270 * \returns Iterator to cluster containing \c key, o
325 Index cluster = m_eivalToCluster[i]; local
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/third_party/libmkv/
EbmlIDs.h 60 /* Cluster */
61 Cluster = 0x1F43B675,
  /packages/apps/Gallery2/src/com/android/gallery3d/data/
TimeClustering.java 41 // Disregard a cluster split time of anything over 2 hours.
47 // Try and merge 2 clusters if they are both smaller than min cluster size.
48 // The min cluster size can range from 8 to 15.
52 // Try and split a cluster if it is bigger than max cluster size.
53 // The max cluster size can range from 20 to 50.
57 // Initially put 2 items in the same cluster as long as they are within
58 // 3 cluster frequencies of each other.
66 // Make the cluster split time of a large cluster half that of a regula
    [all...]
  /external/libvpx/libvpx/third_party/libwebm/
mkvmuxer.cpp 1982 Cluster* const cluster = cluster_list_[i]; local
2233 const Cluster* const cluster = cluster_list_[cluster_list_size_ - 1]; local
2302 Cluster* const cluster = cluster_list_[cluster_list_size_ - 1]; local
2361 Cluster* const cluster = cluster_list_[cluster_list_size_ - 1]; local
2422 Cluster* const cluster = cluster_list_[cluster_list_size_ - 1]; local
2464 Cluster* const cluster = cluster_list_[cluster_list_size_ - 1]; local
2797 Cluster*& cluster = cluster_list_[cluster_list_size_]; local
2914 Cluster* const cluster = cluster_list_[i]; local
2960 Cluster* const cluster = cluster_list_[cluster_list_size_ - 1]; local
3012 Cluster* const cluster = cluster_list_[cluster_list_size_ - 1]; local
    [all...]
mkvparser.hpp 66 class Cluster;
79 long Parse(const Cluster*);
82 long long GetTimeCode(const Cluster*) const; // absolute, but not scaled
83 long long GetTime(const Cluster*) const; // absolute, and scaled (ns)
106 short m_timecode; // relative to cluster
121 BlockEntry(Cluster*, long index);
127 const Cluster* GetCluster() const;
135 Cluster* const m_pCluster;
144 SimpleBlock(Cluster*, long index, long long start, long long size);
159 BlockGroup(Cluster*, long index
    [all...]
mkvmuxer.hpp 165 // The position of the Cluster containing the Block.
168 // Number of the Block within the Cluster, starting from 1.
696 // Cluster element
700 class Cluster {
702 Cluster(uint64 timecode, int64 cues_pos);
703 ~Cluster();
705 // |timecode| is the absolute timecode of the cluster. |cues_pos| is the
706 // position for the cluster within the segment that should be written in
717 // timecode: Absolute (not relative to cluster) timestamp of the
734 // abs_timecode: Absolute (not relative to cluster) timestamp of th
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/third_party/libwebm/
mkvmuxer.cpp 2093 Cluster* const cluster = cluster_list_[i]; local
2348 const Cluster* const cluster = cluster_list_[cluster_list_size_-1]; local
2422 Cluster* const cluster = cluster_list_[cluster_list_size_ - 1]; local
2488 Cluster* const cluster = cluster_list_[cluster_list_size_ - 1]; local
2556 Cluster* const cluster = cluster_list_[cluster_list_size_ - 1]; local
2603 Cluster* const cluster = cluster_list_[cluster_list_size_-1]; local
2957 Cluster*& cluster = cluster_list_[cluster_list_size_]; local
3075 Cluster* const cluster = cluster_list_[i]; local
3121 Cluster* const cluster = cluster_list_[cluster_list_size_-1]; local
3178 Cluster* const cluster = cluster_list_[cluster_list_size_-1]; local
    [all...]
mkvmuxer.hpp 166 // The position of the Cluster containing the Block.
169 // Number of the Block within the Cluster, starting from 1.
703 // Cluster element
707 class Cluster {
709 Cluster(uint64 timecode, int64 cues_pos);
710 ~Cluster();
712 // |timecode| is the absolute timecode of the cluster. |cues_pos| is the
713 // position for the cluster within the segment that should be written in
724 // timecode: Absolute (not relative to cluster) timestamp of the
743 // abs_timecode: Absolute (not relative to cluster) timestamp of th
    [all...]
mkvparser.hpp 75 class Cluster;
89 long Parse(const Cluster*);
92 long long GetTimeCode(const Cluster*) const; //absolute, but not scaled
93 long long GetTime(const Cluster*) const; //absolute, and scaled (ns)
117 short m_timecode; //relative to cluster
134 BlockEntry(Cluster*, long index);
140 const Cluster* GetCluster() const;
148 Cluster* const m_pCluster;
160 SimpleBlock(Cluster*, long index, long long start, long long size);
179 Cluster*,
    [all...]
  /external/llvm/include/llvm/CodeGen/
ScheduleDAG.h 70 Cluster ///< Weak DAG edge linking a chain of clustered instrs.
221 /// as "cluster", meaning it is artificial and wants to be adjacent.
223 return getKind() == Order && Contents.OrdKind == Cluster;
MachineScheduler.h 240 /// Record the next node in a scheduled cluster.
747 NoCand, PhysRegCopy, RegExcess, RegCritical, Stall, Cluster, Weak, RegMax,
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libwebm/
mkvparser.hpp 75 class Cluster;
92 long long GetTimeCode(const Cluster*) const; //absolute, but not scaled
93 long long GetTime(const Cluster*) const; //absolute, and scaled (ns)
115 short m_timecode; //relative to cluster
130 BlockEntry(Cluster*, long index);
136 const Cluster* GetCluster() const;
144 Cluster* const m_pCluster;
156 SimpleBlock(Cluster*, long index, long long start, long long size);
175 Cluster*,
612 long long m_pos; //of cluster
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
RegionStore.cpp 216 const ClusterBindings &Cluster = I.getData();
217 for (ClusterBindings::iterator CI = Cluster.begin(), CE = Cluster.end();
248 ClusterBindings Cluster = (ExistingCluster ? *ExistingCluster
251 ClusterBindings NewCluster = CBFactory.add(Cluster, K, V);
263 const ClusterBindings *Cluster = lookup(K.getBaseRegion());
264 if (!Cluster)
266 return Cluster->lookup(K);
276 const ClusterBindings *Cluster = lookup(Base);
277 if (!Cluster)
    [all...]
  /external/libvpx/libwebm/
mkvparser.hpp 66 class Cluster;
79 long Parse(const Cluster*);
82 long long GetTimeCode(const Cluster*) const; // absolute, but not scaled
83 long long GetTime(const Cluster*) const; // absolute, and scaled (ns)
106 short m_timecode; // relative to cluster
121 BlockEntry(Cluster*, long index);
127 const Cluster* GetCluster() const;
135 Cluster* const m_pCluster;
144 SimpleBlock(Cluster*, long index, long long start, long long size);
159 BlockGroup(Cluster*, long index
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
msclus.h 37 typedef class Cluster Cluster;
39 typedef struct Cluster Cluster;
    [all...]
winioctl.h     [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ddk/
ntifs.h     [all...]

Completed in 564 milliseconds